From 5157cf3bccb3ba4fb6e810074de5de980475e8e7 Mon Sep 17 00:00:00 2001 From: hl-valdemar Date: Tue, 14 Jul 2026 19:22:20 +0200 Subject: [PATCH] rename intrinsics --- LANGUAGE.md | 48 +- README.md | 4 +- TODO.md | 29 +- compiler/ast/ast.odin | 1 + compiler/checker/checker.odin | 71 +- compiler/checker/comptime.odin | 10 +- compiler/parser/parser.odin | 28 +- compiler_tests.odin | 370 +- .../programs/compound_assignment/main.bro | 4 +- .../programs/mem_allocator/typed_alloc.bro | 6 +- examples/programs/type_factory/main.bro | 2 +- languages/brolang/highlights.scm | 1 + std/arraylist/arraylist.bro | 6 +- std/io/io.bro | 4 +- std/mem/mem.bro | 32 +- testbed/lexer/std/arraylist/arraylist.bro | 6 +- testbed/lexer/std/io/io.bro | 4 +- testbed/lexer/std/mem/mem.bro | 32 +- testbed/mem_alloc/std/mem/mem.bro | 20 +- tree-sitter-brolang/grammar.js | 7 + tree-sitter-brolang/queries/highlights.scm | 1 + tree-sitter-brolang/src/grammar.json | 37 + tree-sitter-brolang/src/node-types.json | 40 + tree-sitter-brolang/src/parser.c | 213260 ++++++++------- tree-sitter-brolang/test/corpus/syntax.txt | 28 + .../test/highlight/intrinsics.bro | 7 + 26 files changed, 107640 insertions(+), 106418 deletions(-) create mode 100644 tree-sitter-brolang/test/highlight/intrinsics.bro diff --git a/LANGUAGE.md b/LANGUAGE.md index cb3afa3..a15ddcb 100644 --- a/LANGUAGE.md +++ b/LANGUAGE.md @@ -25,11 +25,11 @@ roadmap and milestone history. - 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 - 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 `min_value(T)` and `max_value(T)` bounds for concrete native and C integer scalar types +- 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` - pointer mutability via `mut`, optional pointers as nullable pointers, pointer arithmetic for many-item pointers, postfix dereference `^`, and trapping optional unwrap `?` - pointer-to-array `.len`, indexing, slicing, `.ptr` on slices and pointers-to-arrays, implicit address-taking for array-variable slices, and pointer/slice sentinel weakening -- `ptr_cast(T, ptr)` as a first-pass pointer-child retype that preserves optionality, pointer kind, mutability, and sentinel shape +- `ptrcast!(T, ptr)` as a first-pass pointer-child retype that preserves optionality, pointer kind, mutability, and sentinel shape - UTF-8 string literals as immutable pointers to static zero-terminated byte arrays, plus raw backtick multiline strings - narrow immutable zero-terminated byte pointer/slice conversion to `*c_char` / `?*c_char` without general `u8`/`c_char` interchange - optionals with `none`, `orelse`, postfix `?`, conditional unwraps, guarded unwraps, and left-to-right short-circuiting multi-unwraps @@ -98,47 +98,51 @@ fields. `_` is not a keyword member name. #### division +Compiler intrinsics use direct unqualified `name!(...)` syntax. The `!` marks the call as an +intrinsic; it is not part of the identifier. Bare and qualified calls without `!` resolve as +ordinary user functions, while qualified bang calls are rejected. + `/` and `/=` accept only floating-point operands. Integer division must state its rounding and -remainder convention with one of these unqualified builtins: +remainder convention with one of these intrinsics: | Builtin | Result | | --- | --- | -| `div_trunc(a, b)` | quotient rounded toward zero | -| `div_floor(a, b)` | quotient rounded toward negative infinity | -| `div_exact(a, b)` | truncated quotient; traps unless it divides exactly | -| `div_ceil(a, b)` | quotient rounded toward positive infinity | -| `rem(a, b)` | remainder paired with `div_trunc`; sign follows `a` | -| `mod(a, b)` | modulus paired with `div_floor`; sign follows `b` | +| `divtrunc!(a, b)` | quotient rounded toward zero | +| `divfloor!(a, b)` | quotient rounded toward negative infinity | +| `divexact!(a, b)` | truncated quotient; traps unless it divides exactly | +| `divceil!(a, b)` | quotient rounded toward positive infinity | +| `rem!(a, b)` | remainder paired with `divtrunc!`; sign follows `a` | +| `mod!(a, b)` | modulus paired with `divfloor!`; sign follows `b` | The operands may be compatible concrete integer or float scalars. Existing literal coercion and numeric widening rules apply, the result has the common operand type, and float quotients are integral-valued floats. These identities hold when representable: ```bro -div_trunc(a, b) * b + rem(a, b) == a -div_floor(a, b) * b + mod(a, b) == a +divtrunc!(a, b) * b + rem!(a, b) == a +divfloor!(a, b) * b + mod!(a, b) == a ``` Negative operands distinguish the operations: ```bro -div_trunc(-5, 3) == -1 -div_floor(-5, 3) == -2 -div_ceil(-5, 3) == -1 -rem(-5, 3) == -2 -mod(-5, 3) == 1 -mod(5, -3) == -1 +divtrunc!(-5, 3) == -1 +divfloor!(-5, 3) == -2 +divceil!(-5, 3) == -1 +rem!(-5, 3) == -2 +mod!(-5, 3) == 1 +mod!(5, -3) == -1 ``` All six builtins diagnose a zero denominator at comptime and trap at runtime, including float -zero. Quotient operations also trap for signed `min_value(T), -1`; `rem` and `mod` return zero for -that pair. `div_exact` traps when `div_trunc(a, b) * b == a` is false in the operand type, so float +zero. Quotient operations also trap for signed `minval!(T), -1`; `rem!` and `mod!` return zero for +that pair. `divexact!` traps when `divtrunc!(a, b) * b == a` is false in the operand type, so float exactness follows floating-point equality. Other float NaN and infinity behavior follows the underlying IEEE operations. Ordinary float `/` remains unchecked and therefore preserves IEEE infinity/NaN behavior. -The six spellings are reserved only as direct unqualified calls. A qualified call such as -`math.div_floor(a, b)` resolves to an ordinary package function. +Only the six bang calls are intrinsic. Bare calls such as `divfloor(a, b)` and qualified calls such +as `math.divfloor(a, b)` resolve to ordinary functions. ### functions, C interop, and linking @@ -188,7 +192,7 @@ The six spellings are reserved only as direct unqualified calls. A qualified cal - non-plain C record layouts such as bitfields, packed records, flexible arrays, qualified fields, and C variadic record arguments - arenas, pools, build-mode heap policy, and escaping-allocation diagnostics - recursive type factories, type reflection, and type-producing unions/enums -- broader Zig-style pointer/result casts beyond V1 `ptr_cast(T, ptr)` +- broader Zig-style pointer/result casts beyond V1 `ptrcast!(T, ptr)` - sum-type ABI/layout polish, including dynamic tag-width shrinking, all-void channel collapse, and cross-module global-id determinism - backed/C enum composition and must-consume fallible linting - result-to-argument type-demand propagation through function call boundaries diff --git a/README.md b/README.md index 6387aee..e39d3e0 100644 --- a/README.md +++ b/README.md @@ -183,7 +183,7 @@ Current prototype features: - `#` comments - Immutable `::` bindings, typed mutable `=` locals/globals, and `_` sinks - Exact-width signed/unsigned integers, `f32`, `f64`, `isize`, `usize`, and loose integer-constrained `int` -- Target-dependent atomic `c_*` primitive types, `c_func`, complete `c_struct`, `opaque`, `anyopaque`, and V1 `ptr_cast(T, ptr)` +- Target-dependent atomic `c_*` primitive types, `c_func`, complete `c_struct`, `opaque`, `anyopaque`, and V1 `ptrcast!(T, ptr)` - 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 @@ -203,7 +203,7 @@ Current prototype features: - Bodyless manual and imported C variadic declarations with default argument promotions - Ordered linking of additional C sources, objects, archives, and libraries - Checked signed addition and unary negation -- Float-only `/` plus explicit `div_trunc`, `div_floor`, `div_exact`, `div_ceil`, `rem`, and `mod` scalar builtins +- Float-only `/` plus explicit `divtrunc!`, `divfloor!`, `divexact!`, `divceil!`, `rem!`, and `mod!` scalar intrinsics - Static, eager runtime, mutable runtime, and deferred problematic globals - Runtime diagnostics followed by `llvm.trap` diff --git a/TODO.md b/TODO.md index f1530c8..073eb15 100644 --- a/TODO.md +++ b/TODO.md @@ -173,7 +173,7 @@ - `Name :: opaque` is the incomplete nominal record spelling; bodyless `c_struct` is invalid - `anyopaque` is the erased object type used behind pointers for C `void*` and allocator contexts - C `void` function results remain `void`; C `void*` / `const void*` import and render as `?*mut anyopaque` / `?*anyopaque` - - `ptr_cast(T, ptr)` preserves pointer shape and only changes the child type in v1 + - `ptrcast!(T, ptr)` preserves pointer shape and only changes the child type in v1 - future direction: generalize toward Zig-style arbitrary pointer-result casts once casts have a broader result-type story 12. `undefined` as inspired by zig (implemented): @@ -464,7 +464,7 @@ active/field `integer`) is sufficient. **no HIR/IR/lowering change** (like 18/19/20); the delta is parser + types layout + one checker validation + three LLVM emit sites - runtime layout `{tag, payload-carrier}`: tag at offset 0, payload carrier at - `payload_offset = round_up(sizeof(tag), payload_align)` (`types.union_payload_offset`, shared by + `payload_offset = round_up(sizeof!(tag), payload_align)` (`types.union_payload_offset`, shared by `size` and the emitter). field access uses byte-offset GEPs, so offsets stay self-consistent - construction `T{ variant = value }` reuses the union-literal path and additionally stores the derived tag; payload read `x.variant` reuses field access, reading at the payload offset @@ -794,19 +794,19 @@ 32. explicit division family (implemented) - `/` and `/=` are float-only; every integer use is rejected with guidance toward explicit division, including literals, comptime execution, array counts, and compound assignment - - direct unqualified calls reserve `div_trunc`, `div_floor`, `div_exact`, `div_ceil`, `rem`, and - `mod`; qualified names remain ordinary package functions + - direct bang calls use `divtrunc!`, `divfloor!`, `divexact!`, `divceil!`, `rem!`, and `mod!`; + bare and qualified names remain ordinary functions - the builtins accept compatible concrete integer or float scalars, reuse existing literal and widening rules, and return the common operand type (integral-valued floats for quotients) - all builtins diagnose zero denominators at comptime and trap at runtime; quotient operations - also trap on signed `min_value(T) / -1`, while `rem` and `mod` return zero for that pair - - `div_exact` checks the reconstructed dividend in the operand type; `rem` pairs with truncation - and follows the numerator sign, while `mod` pairs with floor and follows the denominator sign + also trap on signed `minval!(T) / -1`, while `rem!` and `mod!` return zero for that pair + - `divexact!` checks the reconstructed dividend in the operand type; `rem!` pairs with truncation + and follows the numerator sign, while `mod!` pairs with floor and follows the denominator sign - HIR/IR use compact semantic enum tags; integer floor, ceil, and exact lowering reconstructs the remainder from one quotient so each produces only one hardware-division candidate - float lowering uses the typed LLVM trunc/floor/ceil intrinsics, `frem`, and ordered equality; ordinary float `/` remains the unchecked IEEE infinity/NaN escape hatch - - migrated `std/mem`, `std/arraylist`, and the compound-assignment example to `div_trunc` + - migrated `std/mem`, `std/arraylist`, and the compound-assignment example to `divtrunc!` 33. explicit I/O provider (implemented) - `main` may take one canonical `@std/io Io`; parameterless entry points remain valid @@ -834,7 +834,8 @@ - add `debug.print` function making use of `std/io` to print values to the console - this may either require native variadic arguments or a tuple value to like zig's approach (consider pros and cons) -38. consider renaming `ptr_cast` to `ptrcast` +38. place every intrinsic behind direct unqualified `name!(...)` syntax, freeing the bare names for + user functions (implemented) ## A word on unchecked casts @@ -844,7 +845,7 @@ For casts that bypass safety checks, Honey provides builtin functions: | -- | -- | -- | | `truncate(x, T)` | Keep low bits, discard rest | Never | | `bitcast(x, T)` | Reinterpret bits, no cast | Sizes don't match (compile error) | -| `ptrcast(p, T)` | Change pointer type | Gaining mutability (compile error) | +| `ptrcast!(p, T)` | Change pointer type | Gaining mutability (compile error) | ```honey # truncation @@ -859,10 +860,10 @@ bits := bitcast(f, u32) # IEEE 754 representation # pointer casts (element type, many ↔ single, pointer ↔ usize) buf: *u8 = get_buffer() -ints := ptrcast(buf, *u32) # element type change -single := ptrcast(buf, @u8) # many → single (restricting) -addr := ptrcast(buf, usize) # pointer to integer -ptr := ptrcast(addr, @u8) # integer to pointer +ints := ptrcast!(buf, *u32) # element type change +single := ptrcast!(buf, @u8) # many → single (restricting) +addr := ptrcast!(buf, usize) # pointer to integer +ptr := ptrcast!(addr, @u8) # integer to pointer ``` ## A word on multi-unwrap diff --git a/compiler/ast/ast.odin b/compiler/ast/ast.odin index 5e089fd..0c753d4 100644 --- a/compiler/ast/ast.odin +++ b/compiler/ast/ast.odin @@ -120,6 +120,7 @@ Expr :: struct { body: []Stmt_Id, diagnostic: source.Diagnostic_Id, parenthesized: bool, + intrinsic: bool, kind: Expr_Kind, } diff --git a/compiler/checker/checker.odin b/compiler/checker/checker.odin index 557f58b..5a3f9a3 100644 --- a/compiler/checker/checker.odin +++ b/compiler/checker/checker.odin @@ -401,10 +401,11 @@ type_label :: proc(checker: ^Checker, value: types.Type) -> string { return strings.to_string(builder) } -is_ptr_cast_call :: proc(checker: ^Checker, expr: ast.Expr) -> bool { - return expr.left == ast.INVALID_EXPR && +is_ptrcast_call :: proc(checker: ^Checker, expr: ast.Expr) -> bool { + return expr.intrinsic && + expr.left == ast.INVALID_EXPR && !symbol.is_valid(expr.qualifier) && - symbol_text(checker, expr.name) == "ptr_cast" + symbol_text(checker, expr.name) == "ptrcast" } Type_Builtin :: enum u8 { @@ -426,14 +427,14 @@ Division_Builtin :: enum u8 { } division_builtin_call :: proc(checker: ^Checker, expr: ast.Expr) -> Division_Builtin { - if expr.kind != .Call || expr.left != ast.INVALID_EXPR || symbol.is_valid(expr.qualifier) { + if !expr.intrinsic || expr.kind != .Call || expr.left != ast.INVALID_EXPR || symbol.is_valid(expr.qualifier) { return .None } switch symbol_text(checker, expr.name) { - case "div_trunc": return .Trunc - case "div_floor": return .Floor - case "div_exact": return .Exact - case "div_ceil": return .Ceil + case "divtrunc": return .Trunc + case "divfloor": return .Floor + case "divexact": return .Exact + case "divceil": return .Ceil case "rem": return .Rem case "mod": return .Mod } @@ -441,26 +442,26 @@ division_builtin_call :: proc(checker: ^Checker, expr: ast.Expr) -> Division_Bui } type_builtin_call :: proc(checker: ^Checker, expr: ast.Expr) -> Type_Builtin { - if expr.kind != .Call || expr.left != ast.INVALID_EXPR || symbol.is_valid(expr.qualifier) { + if !expr.intrinsic || expr.kind != .Call || expr.left != ast.INVALID_EXPR || symbol.is_valid(expr.qualifier) { return .None } name := symbol_text(checker, expr.name) - if name == "size_of" { + if name == "sizeof" { return .Size_Of } - if name == "align_of" { + if name == "alignof" { return .Align_Of } - if name == "min_value" { + if name == "minval" { return .Min_Value } - if name == "max_value" { + if name == "maxval" { return .Max_Value } return .None } -valid_ptr_cast_child :: proc(checker: ^Checker, value: types.Type) -> bool { +valid_ptrcast_child :: proc(checker: ^Checker, value: types.Type) -> bool { return types.is_valid(value) && !types.is_void(value) && !types.is_anyopaque(value) && @@ -501,7 +502,7 @@ build_type_builtin :: proc( file: ast.File_Id, ) -> hir.Expr_Id { if len(expr.args) != 1 { - id := source.addf(checker.diagnostics, expr.span, "%s expects 1 argument, got %d", symbol_text(checker, expr.name), len(expr.args)) + id := source.addf(checker.diagnostics, expr.span, "%s! expects 1 argument, got %d", symbol_text(checker, expr.name), len(expr.args)) return invalid_hir_expr(checker, expr.span, id, types.USIZE) } target, target_ok := resolve_type_argument(checker, expr.args[0], pkg, file) @@ -640,7 +641,7 @@ type_from_syntax :: proc( } } else { if constant.kind == .Integer_Division { - source.add(checker.diagnostics, span, "integer '/' is not allowed; use div_trunc, div_floor, div_exact, or div_ceil") + source.add(checker.diagnostics, span, "integer '/' is not allowed; use divtrunc!, divfloor!, divexact!, or divceil!") return types.INVALID } source.add(checker.diagnostics, span, "array count must be a compile-time integer expression") @@ -3365,7 +3366,7 @@ infer_expr :: proc( _ = pop(&stack) continue } - if is_ptr_cast_call(checker, expr) { + if is_ptrcast_call(checker, expr) { if len(expr.args) != 2 { last = types.INVALID _ = pop(&stack) @@ -3374,13 +3375,18 @@ infer_expr :: proc( child, child_ok := resolve_type_argument(checker, expr.args[0], pkg, file) operand := infer_nested_expr(checker, expr.args[1], locals, pkg, file, demanded, local_types) result := types.INVALID - if child_ok && valid_ptr_cast_child(checker, child) { + if child_ok && valid_ptrcast_child(checker, child) { result, _ = types.replace_pointer_child(&checker.module.types, operand, child) } last = result _ = pop(&stack) continue } + if expr.intrinsic { + last = types.INVALID + _ = pop(&stack) + continue + } if callee_type, handled := infer_qualified_value_field_type(checker, expr, locals, pkg, file); handled { _, function_item, function_type, ok := types.function_pointer(callee_type, &checker.module.types) if !ok { @@ -4957,7 +4963,7 @@ build_constant_expr :: proc( return invalid_hir_expr(checker, expr.span, id, recovery_type) } if constant.kind == .Integer_Division { - id := source.add(checker.diagnostics, expr.span, "integer '/' is not allowed; use div_trunc, div_floor, div_exact, or div_ceil") + id := source.add(checker.diagnostics, expr.span, "integer '/' is not allowed; use divtrunc!, divfloor!, divexact!, or divceil!") return invalid_hir_expr(checker, expr.span, id, recovery_type) } if constant.kind == .Overflow || @@ -5447,7 +5453,7 @@ build_division_builtin :: proc( ) -> hir.Expr_Id { if len(expr.args) != 2 { id := source.addf( - checker.diagnostics, expr.span, "%s expects 2 arguments, got %d", + checker.diagnostics, expr.span, "%s! expects 2 arguments, got %d", symbol_text(checker, expr.name), len(expr.args), ) return invalid_hir_expr(checker, expr.span, id) @@ -6223,7 +6229,7 @@ build_binary_arith :: proc( if op == .Div && !types.is_float(result, checker.target) { id := source.add( checker.diagnostics, span, - "integer '/' is not allowed; use div_trunc, div_floor, div_exact, or div_ceil", + "integer '/' is not allowed; use divtrunc!, divfloor!, divexact!, or divceil!", ) return invalid_hir_expr(checker, span, id, result) } @@ -6463,22 +6469,22 @@ build_expr :: proc( _ = pop(&stack) continue } - if is_ptr_cast_call(checker, expr) { + if is_ptrcast_call(checker, expr) { if len(expr.args) != 2 { - id := source.addf(checker.diagnostics, expr.span, "ptr_cast expects 2 arguments, got %d", len(expr.args)) + id := source.addf(checker.diagnostics, expr.span, "ptrcast! expects 2 arguments, got %d", len(expr.args)) last = invalid_hir_expr(checker, expr.span, id) _ = pop(&stack) continue } target, target_ok := resolve_type_argument(checker, expr.args[0], pkg, file) if !target_ok { - id := source.add(checker.diagnostics, checker.ast_module.exprs[expr.args[0]].span, "ptr_cast target must be a type") + id := source.add(checker.diagnostics, checker.ast_module.exprs[expr.args[0]].span, "ptrcast! target must be a type") last = invalid_hir_expr(checker, expr.span, id) _ = pop(&stack) continue } - if !valid_ptr_cast_child(checker, target) { - id := source.addf(checker.diagnostics, checker.ast_module.exprs[expr.args[0]].span, "ptr_cast target must be a sized runtime object type, got %s", type_label(checker, target)) + if !valid_ptrcast_child(checker, target) { + id := source.addf(checker.diagnostics, checker.ast_module.exprs[expr.args[0]].span, "ptrcast! target must be a sized runtime object type, got %s", type_label(checker, target)) last = invalid_hir_expr(checker, expr.span, id) _ = pop(&stack) continue @@ -6488,6 +6494,17 @@ build_expr :: proc( append(&stack, Build_Expr_Frame{expr=expr.args[1], expected=types.INVALID, template=ast.INVALID_FUNCTION}) continue } + if expr.intrinsic { + id := source.INVALID_DIAGNOSTIC + if symbol.is_valid(expr.qualifier) { + id = source.add(checker.diagnostics, expr.span, "intrinsic calls must be unqualified") + } else { + id = source.addf(checker.diagnostics, expr.span, "unknown intrinsic '%s!'", symbol_text(checker, expr.name)) + } + last = invalid_hir_expr(checker, expr.span, id) + _ = pop(&stack) + continue + } if callee, handled, ok := build_qualified_value_field(checker, expr, locals, global_reads, pkg, file); handled { if !ok { last = callee @@ -6996,7 +7013,7 @@ build_expr :: proc( if frame.stage == 9 { result, ok := types.replace_pointer_child(&checker.module.types, checker.module.exprs[last].type, frame.target_type) if !ok { - id := source.add(checker.diagnostics, expr.span, "ptr_cast operand must be a pointer or optional pointer") + id := source.add(checker.diagnostics, expr.span, "ptrcast! operand must be a pointer or optional pointer") last = invalid_hir_expr(checker, expr.span, id) } else { last = add_hir_expr(checker, hir.Expr{ diff --git a/compiler/checker/comptime.odin b/compiler/checker/comptime.odin index e5848e8..1774361 100644 --- a/compiler/checker/comptime.odin +++ b/compiler/checker/comptime.odin @@ -1862,7 +1862,7 @@ ct_eval_binary :: proc(state: ^Ct_State, op: ast.Expr_Kind, left_id, right_id: C if op == .Div { return INVALID_CT_VALUE, ct_flow(.Normal), ct_fail( state, .Integer_Division, span, - "integer '/' is not allowed; use div_trunc, div_floor, div_exact, or div_ceil", + "integer '/' is not allowed; use divtrunc!, divfloor!, divexact!, or divceil!", ) } value: i128 @@ -2059,7 +2059,7 @@ ct_eval_call_expr :: proc(state: ^Ct_State, expr: ast.Expr, expected: types.Type } if builtin := type_builtin_call(checker, expr); builtin != .None { if len(expr.args) != 1 { - return INVALID_CT_VALUE, ct_flow(.Normal), ct_failf(state, .Not_Comptime, expr.span, "%s expects 1 argument, got %d", symbol_text(checker, expr.name), len(expr.args)) + return INVALID_CT_VALUE, ct_flow(.Normal), ct_failf(state, .Not_Comptime, expr.span, "%s! expects 1 argument, got %d", symbol_text(checker, expr.name), len(expr.args)) } target, target_ok := resolve_type_argument(checker, expr.args[0], state.pkg, state.file) if !target_ok { @@ -2078,6 +2078,12 @@ ct_eval_call_expr :: proc(state: ^Ct_State, expr: ast.Expr, expected: types.Type if builtin := division_builtin_call(checker, expr); builtin != .None { return ct_eval_division_call(state, expr, builtin, expected, depth+1) } + if expr.intrinsic { + if symbol.is_valid(expr.qualifier) { + return INVALID_CT_VALUE, ct_flow(.Normal), ct_fail(state, .Not_Comptime, expr.span, "intrinsic calls must be unqualified") + } + return INVALID_CT_VALUE, ct_flow(.Normal), ct_failf(state, .Not_Comptime, expr.span, "unknown intrinsic '%s!'", symbol_text(checker, expr.name)) + } target_pkg, available := expr_package(checker, expr, state.pkg, state.file, false) if !available { return INVALID_CT_VALUE, ct_flow(.Normal), ct_fail(state, .Not_Comptime, expr.span, "unavailable function package") diff --git a/compiler/parser/parser.odin b/compiler/parser/parser.odin index 54945dc..a98d79d 100644 --- a/compiler/parser/parser.odin +++ b/compiler/parser/parser.odin @@ -399,7 +399,7 @@ parse_type_atom :: proc(parser: ^Parser) -> ast.Type_Syntax { !symbol.is_valid(qualifier) && file_hidden_name(parser, name), ) if current(parser).kind == .Left_Paren { - call := parse_call(parser, qualifier, first, name, 0) + call := parse_call(parser, qualifier, first, name, 0, false) return types.intern(&parser.module.type_store, types.Node{ kind=.Type_Call, count_expr=u32(call), @@ -490,7 +490,7 @@ parse_call_args :: proc(parser: ^Parser, nesting: int) -> ([]ast.Expr_Id, token. return args[:], right_paren } -parse_call :: proc(parser: ^Parser, qualifier: symbol.Id, first, name: token.Token, nesting: int) -> ast.Expr_Id { +parse_call :: proc(parser: ^Parser, qualifier: symbol.Id, first, name: token.Token, nesting: int, intrinsic: bool) -> ast.Expr_Id { if nesting >= MAX_EXPRESSION_NESTING { span := skip_parenthesized(parser) return invalid_expr(parser, span, "expression nesting exceeds 256 levels") @@ -502,6 +502,7 @@ parse_call :: proc(parser: ^Parser, qualifier: symbol.Id, first, name: token.Tok qualifier=qualifier, name=name.symbol, args=args[:], + intrinsic=intrinsic, left=ast.INVALID_EXPR, right=ast.INVALID_EXPR, diagnostic=source.INVALID_DIAGNOSTIC, @@ -885,9 +886,10 @@ parse_primary :: proc(parser: ^Parser, nesting: int) -> ast.Expr_Id { qualifier = first.symbol name = member } + _, intrinsic := allow(parser, .Bang) if current(parser).kind == .Left_Paren { - call := parse_call(parser, qualifier, first, name, nesting) - if current(parser).kind == .Left_Brace && !(parser.no_struct_literal && parser.delimiter_depth == 0) { + call := parse_call(parser, qualifier, first, name, nesting, intrinsic) + if !intrinsic && current(parser).kind == .Left_Brace && !(parser.no_struct_literal && parser.delimiter_depth == 0) { left_brace := advance(parser) args, right_brace := parse_keyed_initializers(parser, left_brace, nesting, "expected '}' after struct literal") return add_expr(parser, ast.Expr{ @@ -901,6 +903,9 @@ parse_primary :: proc(parser: ^Parser, nesting: int) -> ast.Expr_Id { } return call } + if intrinsic { + return invalid_expr(parser, previous(parser).span, "expected '(' after intrinsic name") + } if current(parser).kind == .Left_Brace && !(parser.no_struct_literal && parser.delimiter_depth == 0) { return parse_struct_literal(parser, qualifier, first, name, nesting) } @@ -1156,6 +1161,21 @@ parse_expression_bp :: proc(parser: ^Parser, minimum_binding_power, nesting: int } continue } + if current(parser).kind == .Bang { + marker := advance(parser) + if current(parser).kind != .Left_Paren { + left = invalid_expr(parser, marker.span, "expected '(' after '!'") + continue + } + left_expr := parser.module.exprs[left] + call_span := skip_parenthesized(parser) + left = invalid_expr( + parser, + span_from(left_expr.span, call_span), + "intrinsic calls require a direct name", + ) + continue + } if current(parser).kind == .Left_Paren { if nesting >= MAX_EXPRESSION_NESTING { span := skip_parenthesized(parser) diff --git a/compiler_tests.odin b/compiler_tests.odin index 4e31e32..d2b50d1 100644 --- a/compiler_tests.odin +++ b/compiler_tests.odin @@ -86,6 +86,32 @@ main func() void { _ = value } testing.expect_value(t, module.statements[module.functions[0].body[0]].name, sink_symbol) } +@(test) +parser_marks_only_bang_calls_as_intrinsic :: proc(t: ^testing.T) { + text := `main func() void { + _ = sizeof ! (i32) + _ = sizeof(i32) +} +` + 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) + + marked := module.exprs[module.statements[module.functions[0].body[0]].expr] + ordinary := module.exprs[module.statements[module.functions[0].body[1]].expr] + testing.expect_value(t, len(diagnostics.items), 0) + testing.expect_value(t, marked.kind, ast.Expr_Kind.Call) + testing.expect_value(t, ordinary.kind, ast.Expr_Kind.Call) + testing.expect(t, marked.intrinsic) + testing.expect(t, !ordinary.intrinsic) +} + @(test) compact_ids_reserve_invalid_values_and_preserve_layout :: proc(t: ^testing.T) { testing.expect_value(t, size_of(source.Span), 12) @@ -1372,14 +1398,14 @@ Color :: enum { blue } UserID :: distinct u32 -SIZE_GLOBAL :: size_of(i32) +SIZE_GLOBAL :: sizeof!(i32) needs_usize func(value usize) usize { return value } -buffer func($T type) [size_of(T)]u8 { - data [size_of(T)]u8 = undefined +buffer func($T type) [sizeof!(T)]u8 { + data [sizeof!(T)]u8 = undefined return data } @@ -1387,18 +1413,18 @@ main func() i32 { bytes [_]u8 :: buffer(i32) if (needs_usize(SIZE_GLOBAL) != 4) return 1 if (bytes.len != 4) return 2 - if (size_of([3]u8) != 3) return 3 - if (size_of([]u8) != 16) return 4 - if (align_of([]u8) != 8) return 5 - if (size_of(*anyopaque) != 8) return 6 - if (size_of(?*i32) != 8) return 7 - if (size_of(*Opaque) != 8) return 8 - if (size_of(Color) != 2) return 9 - if (align_of(Color) != 2) return 10 - if (size_of(Point) != 8) return 11 - if (align_of(Point) != 4) return 12 - if (size_of(UserID) != 4) return 13 - if (align_of(UserID) != 4) return 14 + if (sizeof!([3]u8) != 3) return 3 + if (sizeof!([]u8) != 16) return 4 + if (alignof!([]u8) != 8) return 5 + if (sizeof!(*anyopaque) != 8) return 6 + if (sizeof!(?*i32) != 8) return 7 + if (sizeof!(*Opaque) != 8) return 8 + if (sizeof!(Color) != 2) return 9 + if (alignof!(Color) != 2) return 10 + if (sizeof!(Point) != 8) return 11 + if (alignof!(Point) != 4) return 12 + if (sizeof!(UserID) != 4) return 13 + if (alignof!(UserID) != 4) return 14 return 0 } ` @@ -1418,23 +1444,23 @@ integer_bound_builtins_compile_and_run :: proc(t: ^testing.T) { directory := "/tmp/brolang-test-integer-bounds" main_path := "/tmp/brolang-test-integer-bounds/main.bro" output := "/tmp/brolang-test-integer-bounds-output" - text := `MAX_U64 u64 :: max_value(u64) + text := `MAX_U64 u64 :: maxval!(u64) maximum func($T type) T { - return max_value(T) + return maxval!(T) } main func() i32 { - if (min_value(i8) != -128) return 1 - if (max_value(i8) != 127) return 2 - if (min_value(u8) != 0) return 3 - if (max_value(u8) != 255) return 4 - if (min_value(isize) != -9223372036854775808) return 5 - if (max_value(usize) != 18446744073709551615) return 6 + if (minval!(i8) != -128) return 1 + if (maxval!(i8) != 127) return 2 + if (minval!(u8) != 0) return 3 + if (maxval!(u8) != 255) return 4 + if (minval!(isize) != -9223372036854775808) return 5 + if (maxval!(usize) != 18446744073709551615) return 6 if (MAX_U64 != 18446744073709551615) return 7 if (maximum(u16) != 65535) return 8 - if (min_value(c_int) != -2147483648) return 9 - if (max_value(c_ulong) != 18446744073709551615) return 10 + if (minval!(c_int) != -2147483648) return 9 + if (maxval!(c_ulong) != 18446744073709551615) return 10 return 0 } ` @@ -1455,14 +1481,14 @@ integer_bound_builtins_reject_invalid_targets :: proc(t: ^testing.T) { Choice :: enum { one } main func() void { - _ = min_value() - _ = max_value(u8, u16) - _ = min_value(1) - _ = max_value(int) - _ = max_value(f32) - _ = max_value(bool) - _ = max_value(Named) - _ = max_value(Choice) + _ = minval!() + _ = maxval!(u8, u16) + _ = minval!(1) + _ = maxval!(int) + _ = maxval!(f32) + _ = maxval!(bool) + _ = maxval!(Named) + _ = maxval!(Choice) } ` source_file := source.Source{path="test.bro", text=text} @@ -1496,11 +1522,11 @@ layout_builtins_reject_unsized_targets :: proc(t: ^testing.T) { Fn :: alias func() void main func() void { - _ = size_of(void) - _ = align_of(anyopaque) - _ = size_of(Fn) - _ = size_of(Opaque) - _ = align_of(1) + _ = sizeof!(void) + _ = alignof!(anyopaque) + _ = sizeof!(Fn) + _ = sizeof!(Opaque) + _ = alignof!(1) } ` source_file := source.Source{path="test.bro", text=text} @@ -1803,14 +1829,14 @@ main func() void { } @(test) -opaque_anyopaque_and_ptr_cast_compile_and_lower :: proc(t: ^testing.T) { +opaque_anyopaque_and_ptrcast_compile_and_lower :: proc(t: ^testing.T) { text := `Handle :: opaque take func(_ ?*mut anyopaque) void {} use_handle func(_ ?@mut Handle) void {} main func() void { values [2]mut u8 = [1, 2] raw ?*mut anyopaque = (&values).ptr - bytes ?*mut u8 = ptr_cast(u8, raw) + bytes ?*mut u8 = ptrcast!(u8, raw) take(bytes) if bytes |p| { p[1] = 5 @@ -1818,7 +1844,7 @@ main func() void { one u8 = 1 single ?@mut anyopaque = &one - typed ?@mut u8 = ptr_cast(u8, single) + typed ?@mut u8 = ptrcast!(u8, single) if typed |p| { p^ = 2 } @@ -1858,16 +1884,16 @@ main func() void { } @(test) -anyopaque_by_value_and_invalid_ptr_casts_are_rejected :: proc(t: ^testing.T) { +anyopaque_by_value_and_invalid_ptrcasts_are_rejected :: proc(t: ^testing.T) { text := `Callback :: alias c_func() void main func() void { raw ?*mut anyopaque = none value anyopaque = undefined - _ = ptr_cast(void, raw) - _ = ptr_cast(anyopaque, raw) - _ = ptr_cast(Callback, raw) - _ = ptr_cast(u8, 1) - _ = ptr_cast(1, raw) + _ = ptrcast!(void, raw) + _ = ptrcast!(anyopaque, raw) + _ = ptrcast!(Callback, raw) + _ = ptrcast!(u8, 1) + _ = ptrcast!(1, raw) } ` source_file := source.Source{path="test.bro", text=text} @@ -1888,9 +1914,9 @@ main func() void { found_target_type := false for diagnostic in diagnostics.items { found_by_value = found_by_value || strings.contains(diagnostic.message, "could not infer a concrete type") - found_bad_target = found_bad_target || strings.contains(diagnostic.message, "ptr_cast target must be a sized runtime object type") - found_bad_operand = found_bad_operand || strings.contains(diagnostic.message, "ptr_cast operand must be a pointer") - found_target_type = found_target_type || strings.contains(diagnostic.message, "ptr_cast target must be a type") + found_bad_target = found_bad_target || strings.contains(diagnostic.message, "ptrcast! target must be a sized runtime object type") + found_bad_operand = found_bad_operand || strings.contains(diagnostic.message, "ptrcast! operand must be a pointer") + found_target_type = found_target_type || strings.contains(diagnostic.message, "ptrcast! target must be a type") } testing.expect(t, found_by_value) testing.expect(t, found_bad_target) @@ -1898,6 +1924,138 @@ main func() void { testing.expect(t, found_target_type) } +@(test) +old_intrinsic_spellings_are_not_recognized :: proc(t: ^testing.T) { + text := `main func() void { + _ = ptr_cast(1, 1) + _ = size_of(1) + _ = align_of(1) + _ = min_value(1) + _ = max_value(1) + _ = div_trunc(1, 1) + _ = div_floor(1, 1) + _ = div_exact(1, 1) + _ = div_ceil(1, 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) + + names := [?]string{ + "ptr_cast", "size_of", "align_of", "min_value", "max_value", + "div_trunc", "div_floor", "div_exact", "div_ceil", + } + found := [len(names)]bool{} + for diagnostic in diagnostics.items { + if !strings.contains(diagnostic.message, "unresolved function") { + continue + } + for name, index in names { + found[index] = found[index] || strings.contains(diagnostic.message, name) + } + } + for value in found { + testing.expect(t, value) + } +} + +@(test) +bare_intrinsic_names_are_available_to_user_functions :: proc(t: ^testing.T) { + text := `ptrcast func() i32 { return 1 } +sizeof func() i32 { return 2 } +alignof func() i32 { return 3 } +minval func() i32 { return 4 } +maxval func() i32 { return 5 } +divtrunc func() i32 { return 6 } +divfloor func() i32 { return 7 } +divexact func() i32 { return 8 } +divceil func() i32 { return 9 } +rem func() i32 { return 10 } +mod func() i32 { return 11 } +main func() i32 { + return ptrcast() + sizeof() + alignof() + minval() + maxval() + + divtrunc() + divfloor() + divexact() + divceil() + rem() + mod() - 66 +} +` + directory := "/tmp/brolang-test-user-intrinsic-names" + main_path := "/tmp/brolang-test-user-intrinsic-names/main.bro" + output := "/tmp/brolang-test-user-intrinsic-names-output" + _ = os2.remove_all(directory) + defer _ = os2.remove_all(directory) + defer _ = os.remove(output) + testing.expect(t, os.make_directory(directory) == nil) + testing.expect(t, os.write_entire_file(main_path, transmute([]byte)text)) + testing.expect_value(t, compiler_core.compile_package(directory, output), 0) +} + +@(test) +intrinsic_call_diagnostics_are_precise :: proc(t: ^testing.T) { + text := `main func() void { + _ = mystery!() + _ = math.ptrcast!() +} +` + 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_unknown := false + found_qualified := false + for diagnostic in diagnostics.items { + found_unknown = found_unknown || diagnostic.message == "unknown intrinsic 'mystery!'" + found_qualified = found_qualified || diagnostic.message == "intrinsic calls must be unqualified" + } + testing.expect(t, found_unknown) + testing.expect(t, found_qualified) +} + +@(test) +malformed_intrinsic_calls_have_targeted_parse_diagnostics :: proc(t: ^testing.T) { + cases := [?]struct { + text, message: string, + }{ + {`main func() void { _ = sizeof! }`, "expected '(' after intrinsic name"}, + {`callback func() void {} +main func() void { (callback)!() } +`, "intrinsic calls require a direct name"}, + } + for test_case in cases { + source_file := source.Source{path="test.bro", text=test_case.text} + diagnostics := source.init_diagnostics(&source_file) + symbols := symbol.init_table() + stream := lexer.lex(&source_file, &diagnostics, &symbols) + module := parser.parse(&stream, &source_file, &diagnostics) + + found := false + for diagnostic in diagnostics.items { + found = found || diagnostic.message == test_case.message + } + testing.expect(t, found) + + ast.destroy_module(&module) + delete(stream.items) + symbol.destroy_table(&symbols) + source.destroy_diagnostics(&diagnostics) + } +} + @(test) aarch64_c_record_abi_classifies_fixed_parameters_and_results :: proc(t: ^testing.T) { text := `Small :: c_struct { @@ -6541,7 +6699,7 @@ main func() void {} @(test) constant_division_by_zero_has_a_precise_diagnostic :: proc(t: ^testing.T) { - text := `value :: div_trunc(5, 0) + text := `value :: divtrunc!(5, 0) main func() void {} ` source_file := source.Source{path="test.bro", text=text} @@ -9669,12 +9827,12 @@ compound_assignment_preserves_checked_numeric_operations :: proc(t: ^testing.T) signed += 6 signed -= 2 signed *= 3 - signed = div_trunc(signed, 4) + signed = divtrunc!(signed, 4) unsigned u32 = 24 unsigned += 6 unsigned -= 2 unsigned *= 3 - unsigned = div_trunc(unsigned, 4) + unsigned = divtrunc!(unsigned, 4) real f64 = 24.0 real += 6.0 real -= 2.0 @@ -9838,7 +9996,7 @@ checked_division_and_subtraction_emit_guarded_llvm :: proc(t: ^testing.T) { a i32 = 10 b i32 = 3 c i32 = a - b - return div_trunc(c, b) + return divtrunc!(c, b) } ` source_file := source.Source{path="test.bro", text=text} @@ -9933,20 +10091,20 @@ main func() void { _ = $half(4) }`, want="integer '/' is not allowed"}, @(test) division_builtins_diagnose_arity_operands_and_comptime_failures :: proc(t: ^testing.T) { - text := `bad_arity :: div_floor(1) -bad_bool :: rem(true, false) -bad_family :: mod(i32(5), f32(3)) -zero_trunc :: div_trunc(1, 0) -zero_floor :: div_floor(1.0, 0.0) -zero_exact :: div_exact(1, 0) -zero_ceil :: div_ceil(1.0, 0.0) -zero_rem :: rem(1, 0) -zero_mod :: mod(1.0, 0.0) -inexact :: div_exact(5, 3) -overflow_trunc :: div_trunc(min_value(i32), -1) -overflow_floor :: div_floor(min_value(i32), -1) -overflow_exact :: div_exact(min_value(i32), -1) -overflow_ceil :: div_ceil(min_value(i32), -1) + text := `bad_arity :: divfloor!(1) +bad_bool :: rem!(true, false) +bad_family :: mod!(i32(5), f32(3)) +zero_trunc :: divtrunc!(1, 0) +zero_floor :: divfloor!(1.0, 0.0) +zero_exact :: divexact!(1, 0) +zero_ceil :: divceil!(1.0, 0.0) +zero_rem :: rem!(1, 0) +zero_mod :: mod!(1.0, 0.0) +inexact :: divexact!(5, 3) +overflow_trunc :: divtrunc!(minval!(i32), -1) +overflow_floor :: divfloor!(minval!(i32), -1) +overflow_exact :: divexact!(minval!(i32), -1) +overflow_ceil :: divceil!(minval!(i32), -1) main func() void {} ` source_file := source.Source{path="test.bro", text=text} @@ -9986,28 +10144,28 @@ division_family_compiles_and_runs_for_integer_and_float_scalars :: proc(t: ^test directory := "/tmp/brolang-test-division-family" main_path := "/tmp/brolang-test-division-family/main.bro" output := "/tmp/brolang-test-division-family-output" - text := `COUNT :: div_exact(8, 2) -items [div_ceil(10, 3)]u8 :: [0, 0, 0, 0] + text := `COUNT :: divexact!(8, 2) +items [divceil!(10, 3)]u8 :: [0, 0, 0, 0] OPEN :: 5 -open_ceil i32 :: div_ceil(OPEN, 3) +open_ceil i32 :: divceil!(OPEN, 3) check_i32 func(a, b, qt, qf, qc, r, m i32) bool { - return div_trunc(a, b) == qt and div_floor(a, b) == qf and - div_ceil(a, b) == qc and rem(a, b) == r and mod(a, b) == m + return divtrunc!(a, b) == qt and divfloor!(a, b) == qf and + divceil!(a, b) == qc and rem!(a, b) == r and mod!(a, b) == m } check_f32 func(a, b, qt, qf, qc, r, m f32) bool { - return div_trunc(a, b) == qt and div_floor(a, b) == qf and - div_ceil(a, b) == qc and rem(a, b) == r and mod(a, b) == m + return divtrunc!(a, b) == qt and divfloor!(a, b) == qf and + divceil!(a, b) == qc and rem!(a, b) == r and mod!(a, b) == m } check_f64 func(a, b, qt, qf, qc, r, m f64) bool { - return div_trunc(a, b) == qt and div_floor(a, b) == qf and - div_ceil(a, b) == qc and rem(a, b) == r and mod(a, b) == m + return divtrunc!(a, b) == qt and divfloor!(a, b) == qf and + divceil!(a, b) == qc and rem!(a, b) == r and mod!(a, b) == m } -edge_rem func(a, b i32) i32 { return rem(a, b) } -edge_mod func(a, b i32) i32 { return mod(a, b) } +edge_rem func(a, b i32) i32 { return rem!(a, b) } +edge_mod func(a, b i32) i32 { return mod!(a, b) } main func() i32 { if COUNT != 4 or items.len != 4 or open_ceil != 2 { return 1 } @@ -10015,9 +10173,9 @@ main func() i32 { if !check_i32(5, -3, -1, -2, -1, 2, -1) { return 3 } if !check_i32(-5, 3, -1, -2, -1, -2, 1) { return 4 } if !check_i32(-5, -3, 1, 1, 2, -2, -2) { return 5 } - if div_trunc(u32(5), u32(3)) != 1 or div_floor(u32(5), u32(3)) != 1 or - div_ceil(u32(5), u32(3)) != 2 or rem(u32(5), u32(3)) != 2 or mod(u32(5), u32(3)) != 2 { return 6 } - if div_exact(i32(6), i32(3)) != 2 or div_exact(u32(6), u32(3)) != 2 { return 7 } + if divtrunc!(u32(5), u32(3)) != 1 or divfloor!(u32(5), u32(3)) != 1 or + divceil!(u32(5), u32(3)) != 2 or rem!(u32(5), u32(3)) != 2 or mod!(u32(5), u32(3)) != 2 { return 6 } + if divexact!(i32(6), i32(3)) != 2 or divexact!(u32(6), u32(3)) != 2 { return 7 } if !check_f32(f32(5.0), f32(3.0), f32(1.0), f32(1.0), f32(2.0), f32(2.0), f32(2.0)) or !check_f32(f32(5.0), f32(-3.0), f32(-1.0), f32(-2.0), f32(-1.0), f32(2.0), f32(-1.0)) or !check_f32(f32(-5.0), f32(3.0), f32(-1.0), f32(-2.0), f32(-1.0), f32(-2.0), f32(1.0)) or @@ -10026,7 +10184,7 @@ main func() i32 { !check_f64(5.0, -3.0, -1.0, -2.0, -1.0, 2.0, -1.0) or !check_f64(-5.0, 3.0, -1.0, -2.0, -1.0, -2.0, 1.0) or !check_f64(-5.0, -3.0, 1.0, 1.0, 2.0, -2.0, -2.0) { return 9 } - if div_exact(f32(6.0), f32(3.0)) != 2.0 or div_exact(f64(6.0), f64(3.0)) != 2.0 { return 10 } + if divexact!(f32(6.0), f32(3.0)) != 2.0 or divexact!(f64(6.0), f64(3.0)) != 2.0 { return 10 } if edge_rem(-2147483648, -1) != 0 or edge_mod(-2147483648, -1) != 0 { return 11 } return 0 } @@ -10051,24 +10209,24 @@ division_builtins_trap_for_runtime_zero_overflow_and_inexact_results :: proc(t: right: string, } cases := [?]Case{ - {name="div_trunc", type_name="i32", left="1", right="0"}, - {name="div_floor", type_name="f32", left="f32(1.0)", right="f32(0.0)"}, - {name="div_exact", type_name="f64", left="1.0", right="0.0"}, - {name="div_ceil", type_name="i32", left="1", right="0"}, + {name="divtrunc", type_name="i32", left="1", right="0"}, + {name="divfloor", type_name="f32", left="f32(1.0)", right="f32(0.0)"}, + {name="divexact", type_name="f64", left="1.0", right="0.0"}, + {name="divceil", type_name="i32", left="1", right="0"}, {name="rem", type_name="f32", left="f32(1.0)", right="f32(0.0)"}, {name="mod", type_name="f64", left="1.0", right="0.0"}, - {name="div_exact", type_name="i32", left="5", right="3"}, - {name="div_trunc", type_name="i32", left="-2147483648", right="-1"}, - {name="div_floor", type_name="i32", left="-2147483648", right="-1"}, - {name="div_exact", type_name="i32", left="-2147483648", right="-1"}, - {name="div_ceil", type_name="i32", left="-2147483648", right="-1"}, + {name="divexact", type_name="i32", left="5", right="3"}, + {name="divtrunc", type_name="i32", left="-2147483648", right="-1"}, + {name="divfloor", type_name="i32", left="-2147483648", right="-1"}, + {name="divexact", type_name="i32", left="-2147483648", right="-1"}, + {name="divceil", type_name="i32", left="-2147483648", right="-1"}, } for test_case, index in cases { directory := fmt.aprintf("/tmp/brolang-test-division-trap-%d", index) main_path := fmt.aprintf("%s/main.bro", directory) output := fmt.aprintf("/tmp/brolang-test-division-trap-output-%d", index) text := fmt.aprintf( - "invoke func(a, b %s) %s {{ return %s(a, b) }}\nmain func() void {{ _ = invoke(%s, %s) }}\n", + "invoke func(a, b %s) %s {{ return %s!(a, b) }}\nmain func() void {{ _ = invoke(%s, %s) }}\n", test_case.type_name, test_case.type_name, test_case.name, test_case.left, test_case.right, ) _ = os2.remove_all(directory) @@ -10096,10 +10254,10 @@ qualified_division_builtin_names_resolve_as_package_functions :: proc(t: ^testin math_path := "/tmp/brolang-test-qualified-division/math/math.bro" main_path := "/tmp/brolang-test-qualified-division/app/main.bro" output := "/tmp/brolang-test-qualified-division-output" - math_text := `div_floor func(a, b i32) i32 { return a + b } + math_text := `divfloor func(a, b i32) i32 { return a + b } ` main_text := `math :: import "../math" -main func() i32 { return math.div_floor(20, 22) } +main func() i32 { return math.divfloor(20, 22) } ` _ = os2.remove_all(directory) defer _ = os2.remove_all(directory) @@ -10117,17 +10275,17 @@ main func() i32 { return math.div_floor(20, 22) } @(test) division_builtins_emit_guards_rounding_and_single_integer_divisions :: proc(t: ^testing.T) { - text := `floor_i32 func(a, b i32) i32 { return div_floor(a, b) } -ceil_i32 func(a, b i32) i32 { return div_ceil(a, b) } -exact_i32 func(a, b i32) i32 { return div_exact(a, b) } -floor_u32 func(a, b u32) u32 { return div_floor(a, b) } -rem_i16 func(a, b i16) i16 { return rem(a, b) } -mod_i16 func(a, b i16) i16 { return mod(a, b) } -floor_f32 func(a, b f32) f32 { return div_floor(a, b) } -ceil_f64 func(a, b f64) f64 { return div_ceil(a, b) } -exact_f32 func(a, b f32) f32 { return div_exact(a, b) } -rem_f64 func(a, b f64) f64 { return rem(a, b) } -mod_f32 func(a, b f32) f32 { return mod(a, b) } + text := `floor_i32 func(a, b i32) i32 { return divfloor!(a, b) } +ceil_i32 func(a, b i32) i32 { return divceil!(a, b) } +exact_i32 func(a, b i32) i32 { return divexact!(a, b) } +floor_u32 func(a, b u32) u32 { return divfloor!(a, b) } +rem_i16 func(a, b i16) i16 { return rem!(a, b) } +mod_i16 func(a, b i16) i16 { return mod!(a, b) } +floor_f32 func(a, b f32) f32 { return divfloor!(a, b) } +ceil_f64 func(a, b f64) f64 { return divceil!(a, b) } +exact_f32 func(a, b f32) f32 { return divexact!(a, b) } +rem_f64 func(a, b f64) f64 { return rem!(a, b) } +mod_f32 func(a, b f32) f32 { return mod!(a, b) } main func() void { _ = floor_i32(5, 3) _ = ceil_i32(5, 3) diff --git a/examples/programs/compound_assignment/main.bro b/examples/programs/compound_assignment/main.bro index e4e4bb9..0d0ef8a 100644 --- a/examples/programs/compound_assignment/main.bro +++ b/examples/programs/compound_assignment/main.bro @@ -14,7 +14,7 @@ check_float func() i32 { check_unsigned func() i32 { n u32 = 100 - n = div_trunc(n, 7) # 14 + n = divtrunc!(n, 7) # 14 n -= 4 # 10 if n == 10 { return 1 @@ -27,7 +27,7 @@ main func() i32 { total += 10 # 10 total -= 3 # 7 total *= 4 # 28 - total = div_trunc(total, 2) # 14 + total = divtrunc!(total, 2) # 14 # binary operators honour precedence: 14 + (2 * 3) - 4 == 16 total = total + 2 * 3 - 4 diff --git a/examples/programs/mem_allocator/typed_alloc.bro b/examples/programs/mem_allocator/typed_alloc.bro index 2005272..53f0774 100644 --- a/examples/programs/mem_allocator/typed_alloc.bro +++ b/examples/programs/mem_allocator/typed_alloc.bro @@ -2,7 +2,7 @@ mem :: import "@std/mem" _probe_count func(context ?*mut anyopaque) void { if context |raw| { - counts *mut usize :: ptr_cast(usize, raw) + counts *mut usize :: ptrcast!(usize, raw) counts[0] += 1 } } @@ -28,7 +28,7 @@ _probe_vtable mem.AllocatorVTable :: mem.AllocatorVTable { } typed_allocator_test func() i32 { - if (size_of(mem.Allocator) != 16) return 31 + if (sizeof!(mem.Allocator) != 16) return 31 first_calls [1]mut usize = [0] second_calls [1]mut usize = [0] @@ -76,7 +76,7 @@ typed_allocator_test func() i32 { } if (overflow_fallback_failed) return 37 overflow_failed bool = false - _ = mem.alloc(u64, first_allocator, max_value(usize)) catch |_| { + _ = mem.alloc(u64, first_allocator, maxval!(usize)) catch |_| { overflow_failed = true yield overflow_fallback } diff --git a/examples/programs/type_factory/main.bro b/examples/programs/type_factory/main.bro index c6ce39c..c10d634 100644 --- a/examples/programs/type_factory/main.bro +++ b/examples/programs/type_factory/main.bro @@ -39,6 +39,6 @@ main func() i32 { if (pointer.value != 42) return 4 buffer Buffer(u8, 4) :: Buffer(u8, 4) { values = [1, 2, 3, 4] } if (buffer.values.len != 4) return 2 - if (size_of(Buffer(u8, 4)) != 4) return 5 + if (sizeof!(Buffer(u8, 4)) != 4) return 5 return 0 } diff --git a/languages/brolang/highlights.scm b/languages/brolang/highlights.scm index be98347..6a024a5 100644 --- a/languages/brolang/highlights.scm +++ b/languages/brolang/highlights.scm @@ -37,6 +37,7 @@ (function_declaration name: (identifier) @function) (parameter name: (identifier) @variable.parameter) +(intrinsic_call_expression function: (identifier) @function.builtin) (call_expression function: (expression (identifier) @function)) (call_expression function: (expression (field_expression field: (identifier) @function))) (field_expression field: (identifier) @property) diff --git a/std/arraylist/arraylist.bro b/std/arraylist/arraylist.bro index d144d44..93a9cc7 100644 --- a/std/arraylist/arraylist.bro +++ b/std/arraylist/arraylist.bro @@ -30,8 +30,8 @@ reserve func($T type, list @mut ArrayList(T), minimum_capacity usize) void ! mem new_capacity usize = 8 if list.capacity >= 8 { - half usize :: div_trunc(list.capacity, 2) - if list.capacity > max_value(usize) - half { + half usize :: divtrunc!(list.capacity, 2) + if list.capacity > maxval!(usize) - half { new_capacity = minimum_capacity } else { new_capacity = list.capacity + half @@ -53,7 +53,7 @@ reserve func($T type, list @mut ArrayList(T), minimum_capacity usize) void ! mem append func($T type, list @mut ArrayList(T), value T) void ! mem.AllocError { length usize :: list.items.len - if length == max_value(usize) { + if length == maxval!(usize) { return .out_of_memory } try reserve(list, length + 1) diff --git a/std/io/io.bro b/std/io/io.bro index e97e64a..3cc4125 100644 --- a/std/io/io.bro +++ b/std/io/io.bro @@ -76,7 +76,7 @@ write_all func(writer Writer, bytes []u8) void ! WriteError { _system_read func(_ ?*mut anyopaque, stream ReadStream, buffer []mut u8) usize ! ReadError { request usize = buffer.len - maximum usize :: usize(max_value(c_long)) + maximum usize :: usize(maxval!(c_long)) if request > maximum { request = maximum } @@ -94,7 +94,7 @@ _system_read func(_ ?*mut anyopaque, stream ReadStream, buffer []mut u8) usize ! _system_write func(_ ?*mut anyopaque, stream WriteStream, bytes []u8) usize ! WriteError { fd c_int :: c_int(stream) request usize = bytes.len - maximum usize :: usize(max_value(c_long)) + maximum usize :: usize(maxval!(c_long)) if request > maximum { request = maximum } diff --git a/std/mem/mem.bro b/std/mem/mem.bro index 49450ed..cd9bca4 100644 --- a/std/mem/mem.bro +++ b/std/mem/mem.bro @@ -44,7 +44,7 @@ eql func($T type, left, right []T) bool { _empty_storage [1]mut u64 = [0] _empty_slice func($T type, count usize) []mut T { - pointer *mut T :: ptr_cast(T, (&_empty_storage).ptr) + pointer *mut T :: ptrcast!(T, (&_empty_storage).ptr) return pointer[..count] } @@ -57,17 +57,17 @@ alloc func($T type, allocator Allocator, count usize) []mut T ! AllocError { return _empty_slice(T, 0) } - element_size usize :: size_of(T) + element_size usize :: sizeof!(T) if element_size == 0 { return _empty_slice(T, count) } - if count > div_trunc(max_value(usize), element_size) { + if count > divtrunc!(maxval!(usize), element_size) { return .out_of_memory } - memory ?*mut u8 = raw_alloc(allocator, count * element_size, align_of(T)) + memory ?*mut u8 = raw_alloc(allocator, count * element_size, alignof!(T)) if memory |bytes| { - pointer *mut T :: ptr_cast(T, bytes) + pointer *mut T :: ptrcast!(T, bytes) return pointer[..count] } return .out_of_memory @@ -82,18 +82,18 @@ realloc func($T type, allocator Allocator, memory []mut T, new_count usize) []mu return _empty_slice(T, 0) } - element_size usize :: size_of(T) + element_size usize :: sizeof!(T) if element_size == 0 { return _empty_slice(T, new_count) } - if new_count > div_trunc(max_value(usize), element_size) { + if new_count > divtrunc!(maxval!(usize), element_size) { return .out_of_memory } old_memory ?*mut u8 = none old_size usize = 0 if memory.len != 0 { - old_memory = ptr_cast(u8, memory.ptr) + old_memory = ptrcast!(u8, memory.ptr) old_size = memory.len * element_size } resized ?*mut u8 = raw_realloc( @@ -101,18 +101,18 @@ realloc func($T type, allocator Allocator, memory []mut T, new_count usize) []mu old_memory, old_size, new_count * element_size, - align_of(T), + alignof!(T), ) if resized |bytes| { - pointer *mut T :: ptr_cast(T, bytes) + pointer *mut T :: ptrcast!(T, bytes) return pointer[..new_count] } return .out_of_memory } free func($T type, allocator Allocator, memory []mut T) void { - if memory.len != 0 and size_of(T) != 0 { - raw_free(allocator, ptr_cast(u8, memory.ptr), memory.len * size_of(T), align_of(T)) + if memory.len != 0 and sizeof!(T) != 0 { + raw_free(allocator, ptrcast!(u8, memory.ptr), memory.len * sizeof!(T), alignof!(T)) } } @@ -125,7 +125,7 @@ _power_of_two func(value usize) bool { current usize = value while current > 1 { - half usize = div_trunc(current, 2) + half usize = divtrunc!(current, 2) if half * 2 != current { return false } @@ -141,7 +141,7 @@ _c_alloc func(_ ?*mut anyopaque, size usize, alignment usize) ?*mut u8 { } if alignment <= _malloc_alignment { - return ptr_cast(u8, c.malloc(c_ulong(size))) + return ptrcast!(u8, c.malloc(c_ulong(size))) } memory [1]mut ?*mut anyopaque = [none] @@ -150,7 +150,7 @@ _c_alloc func(_ ?*mut anyopaque, size usize, alignment usize) ?*mut u8 { return none } - return ptr_cast(u8, memory[0]) + return ptrcast!(u8, memory[0]) } _c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size usize, alignment usize) ?*mut u8 { @@ -165,7 +165,7 @@ _c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size usi if memory |old_memory| { if alignment <= _malloc_alignment { - return ptr_cast(u8, c.realloc(old_memory, c_ulong(new_size))) + return ptrcast!(u8, c.realloc(old_memory, c_ulong(new_size))) } new_memory ?*mut u8 = _c_alloc(none, new_size, alignment) diff --git a/testbed/lexer/std/arraylist/arraylist.bro b/testbed/lexer/std/arraylist/arraylist.bro index d144d44..93a9cc7 100644 --- a/testbed/lexer/std/arraylist/arraylist.bro +++ b/testbed/lexer/std/arraylist/arraylist.bro @@ -30,8 +30,8 @@ reserve func($T type, list @mut ArrayList(T), minimum_capacity usize) void ! mem new_capacity usize = 8 if list.capacity >= 8 { - half usize :: div_trunc(list.capacity, 2) - if list.capacity > max_value(usize) - half { + half usize :: divtrunc!(list.capacity, 2) + if list.capacity > maxval!(usize) - half { new_capacity = minimum_capacity } else { new_capacity = list.capacity + half @@ -53,7 +53,7 @@ reserve func($T type, list @mut ArrayList(T), minimum_capacity usize) void ! mem append func($T type, list @mut ArrayList(T), value T) void ! mem.AllocError { length usize :: list.items.len - if length == max_value(usize) { + if length == maxval!(usize) { return .out_of_memory } try reserve(list, length + 1) diff --git a/testbed/lexer/std/io/io.bro b/testbed/lexer/std/io/io.bro index e97e64a..3cc4125 100644 --- a/testbed/lexer/std/io/io.bro +++ b/testbed/lexer/std/io/io.bro @@ -76,7 +76,7 @@ write_all func(writer Writer, bytes []u8) void ! WriteError { _system_read func(_ ?*mut anyopaque, stream ReadStream, buffer []mut u8) usize ! ReadError { request usize = buffer.len - maximum usize :: usize(max_value(c_long)) + maximum usize :: usize(maxval!(c_long)) if request > maximum { request = maximum } @@ -94,7 +94,7 @@ _system_read func(_ ?*mut anyopaque, stream ReadStream, buffer []mut u8) usize ! _system_write func(_ ?*mut anyopaque, stream WriteStream, bytes []u8) usize ! WriteError { fd c_int :: c_int(stream) request usize = bytes.len - maximum usize :: usize(max_value(c_long)) + maximum usize :: usize(maxval!(c_long)) if request > maximum { request = maximum } diff --git a/testbed/lexer/std/mem/mem.bro b/testbed/lexer/std/mem/mem.bro index 49450ed..cd9bca4 100644 --- a/testbed/lexer/std/mem/mem.bro +++ b/testbed/lexer/std/mem/mem.bro @@ -44,7 +44,7 @@ eql func($T type, left, right []T) bool { _empty_storage [1]mut u64 = [0] _empty_slice func($T type, count usize) []mut T { - pointer *mut T :: ptr_cast(T, (&_empty_storage).ptr) + pointer *mut T :: ptrcast!(T, (&_empty_storage).ptr) return pointer[..count] } @@ -57,17 +57,17 @@ alloc func($T type, allocator Allocator, count usize) []mut T ! AllocError { return _empty_slice(T, 0) } - element_size usize :: size_of(T) + element_size usize :: sizeof!(T) if element_size == 0 { return _empty_slice(T, count) } - if count > div_trunc(max_value(usize), element_size) { + if count > divtrunc!(maxval!(usize), element_size) { return .out_of_memory } - memory ?*mut u8 = raw_alloc(allocator, count * element_size, align_of(T)) + memory ?*mut u8 = raw_alloc(allocator, count * element_size, alignof!(T)) if memory |bytes| { - pointer *mut T :: ptr_cast(T, bytes) + pointer *mut T :: ptrcast!(T, bytes) return pointer[..count] } return .out_of_memory @@ -82,18 +82,18 @@ realloc func($T type, allocator Allocator, memory []mut T, new_count usize) []mu return _empty_slice(T, 0) } - element_size usize :: size_of(T) + element_size usize :: sizeof!(T) if element_size == 0 { return _empty_slice(T, new_count) } - if new_count > div_trunc(max_value(usize), element_size) { + if new_count > divtrunc!(maxval!(usize), element_size) { return .out_of_memory } old_memory ?*mut u8 = none old_size usize = 0 if memory.len != 0 { - old_memory = ptr_cast(u8, memory.ptr) + old_memory = ptrcast!(u8, memory.ptr) old_size = memory.len * element_size } resized ?*mut u8 = raw_realloc( @@ -101,18 +101,18 @@ realloc func($T type, allocator Allocator, memory []mut T, new_count usize) []mu old_memory, old_size, new_count * element_size, - align_of(T), + alignof!(T), ) if resized |bytes| { - pointer *mut T :: ptr_cast(T, bytes) + pointer *mut T :: ptrcast!(T, bytes) return pointer[..new_count] } return .out_of_memory } free func($T type, allocator Allocator, memory []mut T) void { - if memory.len != 0 and size_of(T) != 0 { - raw_free(allocator, ptr_cast(u8, memory.ptr), memory.len * size_of(T), align_of(T)) + if memory.len != 0 and sizeof!(T) != 0 { + raw_free(allocator, ptrcast!(u8, memory.ptr), memory.len * sizeof!(T), alignof!(T)) } } @@ -125,7 +125,7 @@ _power_of_two func(value usize) bool { current usize = value while current > 1 { - half usize = div_trunc(current, 2) + half usize = divtrunc!(current, 2) if half * 2 != current { return false } @@ -141,7 +141,7 @@ _c_alloc func(_ ?*mut anyopaque, size usize, alignment usize) ?*mut u8 { } if alignment <= _malloc_alignment { - return ptr_cast(u8, c.malloc(c_ulong(size))) + return ptrcast!(u8, c.malloc(c_ulong(size))) } memory [1]mut ?*mut anyopaque = [none] @@ -150,7 +150,7 @@ _c_alloc func(_ ?*mut anyopaque, size usize, alignment usize) ?*mut u8 { return none } - return ptr_cast(u8, memory[0]) + return ptrcast!(u8, memory[0]) } _c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size usize, alignment usize) ?*mut u8 { @@ -165,7 +165,7 @@ _c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size usi if memory |old_memory| { if alignment <= _malloc_alignment { - return ptr_cast(u8, c.realloc(old_memory, c_ulong(new_size))) + return ptrcast!(u8, c.realloc(old_memory, c_ulong(new_size))) } new_memory ?*mut u8 = _c_alloc(none, new_size, alignment) diff --git a/testbed/mem_alloc/std/mem/mem.bro b/testbed/mem_alloc/std/mem/mem.bro index 42c73ed..f48ce91 100644 --- a/testbed/mem_alloc/std/mem/mem.bro +++ b/testbed/mem_alloc/std/mem/mem.bro @@ -30,7 +30,7 @@ raw_free func(allocator Allocator, memory ?*mut u8, size usize, alignment usize) _empty_storage [1]mut u64 = [0] _empty_slice func($T type, count usize) []mut T { - pointer *mut T :: ptr_cast(T, (&_empty_storage).ptr) + pointer *mut T :: ptrcast!(T, (&_empty_storage).ptr) return pointer[..count] } @@ -39,25 +39,25 @@ alloc func($T type, allocator Allocator, count usize) []mut T ! AllocError { return _empty_slice(T, 0) } - element_size usize :: size_of(T) + element_size usize :: sizeof!(T) if element_size == 0 { return _empty_slice(T, count) } - if count > max_value(usize) / element_size { + if count > maxval!(usize) / element_size { return .out_of_memory } - memory ?*mut u8 = raw_alloc(allocator, count * element_size, align_of(T)) + memory ?*mut u8 = raw_alloc(allocator, count * element_size, alignof!(T)) if memory |bytes| { - pointer *mut T :: ptr_cast(T, bytes) + pointer *mut T :: ptrcast!(T, bytes) return pointer[..count] } return .out_of_memory } free func($T type, allocator Allocator, memory []mut T) void { - if memory.len != 0 and size_of(T) != 0 { - raw_free(allocator, ptr_cast(u8, memory.ptr), memory.len * size_of(T), align_of(T)) + if memory.len != 0 and sizeof!(T) != 0 { + raw_free(allocator, ptrcast!(u8, memory.ptr), memory.len * sizeof!(T), alignof!(T)) } } @@ -86,7 +86,7 @@ _c_alloc func(_ ?*mut anyopaque, size usize, alignment usize) ?*mut u8 { } if alignment <= _malloc_alignment { - return ptr_cast(u8, c.malloc(c_ulong(size))) + return ptrcast!(u8, c.malloc(c_ulong(size))) } memory [1]mut ?*mut anyopaque = [none] @@ -95,7 +95,7 @@ _c_alloc func(_ ?*mut anyopaque, size usize, alignment usize) ?*mut u8 { return none } - return ptr_cast(u8, memory[0]) + return ptrcast!(u8, memory[0]) } _c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size usize, alignment usize) ?*mut u8 { @@ -110,7 +110,7 @@ _c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size usi if memory |old_memory| { if alignment <= _malloc_alignment { - return ptr_cast(u8, c.realloc(old_memory, c_ulong(new_size))) + return ptrcast!(u8, c.realloc(old_memory, c_ulong(new_size))) } new_memory ?*mut u8 = _c_alloc(none, new_size, alignment) diff --git a/tree-sitter-brolang/grammar.js b/tree-sitter-brolang/grammar.js index 85b705e..f7d5928 100644 --- a/tree-sitter-brolang/grammar.js +++ b/tree-sitter-brolang/grammar.js @@ -383,6 +383,7 @@ module.exports = grammar({ $.catch_expression, $.unary_expression, $.field_expression, + $.intrinsic_call_expression, $.call_expression, $.index_expression, $.slice_expression, @@ -440,6 +441,12 @@ module.exports = grammar({ field('field', $.identifier), )), + intrinsic_call_expression: $ => prec(PREC.POSTFIX, seq( + field('function', $.identifier), + field('marker', '!'), + field('arguments', $.argument_list), + )), + call_expression: $ => prec.left(PREC.POSTFIX, seq( field('function', $.expression), field('arguments', $.argument_list), diff --git a/tree-sitter-brolang/queries/highlights.scm b/tree-sitter-brolang/queries/highlights.scm index 76573e2..c2464d9 100644 --- a/tree-sitter-brolang/queries/highlights.scm +++ b/tree-sitter-brolang/queries/highlights.scm @@ -37,6 +37,7 @@ (function_declaration name: (identifier) @function) (parameter name: (identifier) @variable.parameter) +(intrinsic_call_expression function: (identifier) @function.builtin) (call_expression function: (expression (identifier) @function)) (call_expression function: (expression (field_expression field: (identifier) @function))) (field_expression field: (identifier) @property) diff --git a/tree-sitter-brolang/src/grammar.json b/tree-sitter-brolang/src/grammar.json index d56b9b7..e27c249 100644 --- a/tree-sitter-brolang/src/grammar.json +++ b/tree-sitter-brolang/src/grammar.json @@ -2696,6 +2696,10 @@ "type": "SYMBOL", "name": "field_expression" }, + { + "type": "SYMBOL", + "name": "intrinsic_call_expression" + }, { "type": "SYMBOL", "name": "call_expression" @@ -3271,6 +3275,39 @@ ] } }, + "intrinsic_call_expression": { + "type": "PREC", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "FIELD", + "name": "marker", + "content": { + "type": "STRING", + "value": "!" + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "argument_list" + } + } + ] + } + }, "call_expression": { "type": "PREC_LEFT", "value": 9, diff --git a/tree-sitter-brolang/src/node-types.json b/tree-sitter-brolang/src/node-types.json index 43585f0..3f61e5a 100644 --- a/tree-sitter-brolang/src/node-types.json +++ b/tree-sitter-brolang/src/node-types.json @@ -730,6 +730,10 @@ "type": "integer", "named": true }, + { + "type": "intrinsic_call_expression", + "named": true + }, { "type": "multiline_string", "named": true @@ -1309,6 +1313,42 @@ ] } }, + { + "type": "intrinsic_call_expression", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": true, + "types": [ + { + "type": "argument_list", + "named": true + } + ] + }, + "function": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "marker": { + "multiple": false, + "required": true, + "types": [ + { + "type": "!", + "named": false + } + ] + } + } + }, { "type": "keyed_field_initializer", "named": true, diff --git a/tree-sitter-brolang/src/parser.c b/tree-sitter-brolang/src/parser.c index 35336fc..a8d9de6 100644 --- a/tree-sitter-brolang/src/parser.c +++ b/tree-sitter-brolang/src/parser.c @@ -7,16 +7,16 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 2190 -#define LARGE_STATE_COUNT 1251 -#define SYMBOL_COUNT 199 +#define STATE_COUNT 2192 +#define LARGE_STATE_COUNT 1252 +#define SYMBOL_COUNT 200 #define ALIAS_COUNT 0 #define TOKEN_COUNT 111 #define EXTERNAL_TOKEN_COUNT 0 -#define FIELD_COUNT 37 +#define FIELD_COUNT 38 #define MAX_ALIAS_SEQUENCE_LENGTH 15 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 317 +#define PRODUCTION_ID_COUNT 318 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { @@ -186,38 +186,39 @@ enum ts_symbol_identifiers { sym_catch_expression = 164, sym_unary_expression = 165, sym_field_expression = 166, - sym_call_expression = 167, - sym_argument_list = 168, - sym_index_expression = 169, - sym_slice_expression = 170, - sym_postfix_expression = 171, - sym_struct_literal = 172, - sym_initializer_list = 173, - sym_field_initializer = 174, - sym_enum_literal = 175, - sym_variant_payload = 176, - sym_keyed_field_initializer = 177, - sym_array_literal = 178, - sym_parenthesized_expression = 179, - sym_comptime_block = 180, - sym_function_literal = 181, - sym_qualified_identifier = 182, - sym_boolean = 183, - sym_string = 184, - aux_sym_source_file_repeat1 = 185, - aux_sym_import_declaration_repeat1 = 186, - aux_sym_record_body_repeat1 = 187, - aux_sym_enum_body_repeat1 = 188, - aux_sym_parameter_list_repeat1 = 189, - aux_sym_parameter_repeat1 = 190, - aux_sym_type_repeat1 = 191, - aux_sym_block_repeat1 = 192, - aux_sym_capture_list_repeat1 = 193, - aux_sym_match_statement_repeat1 = 194, - aux_sym_match_arm_repeat1 = 195, - aux_sym_initializer_list_repeat1 = 196, - aux_sym_variant_payload_repeat1 = 197, - aux_sym_string_repeat1 = 198, + sym_intrinsic_call_expression = 167, + sym_call_expression = 168, + sym_argument_list = 169, + sym_index_expression = 170, + sym_slice_expression = 171, + sym_postfix_expression = 172, + sym_struct_literal = 173, + sym_initializer_list = 174, + sym_field_initializer = 175, + sym_enum_literal = 176, + sym_variant_payload = 177, + sym_keyed_field_initializer = 178, + sym_array_literal = 179, + sym_parenthesized_expression = 180, + sym_comptime_block = 181, + sym_function_literal = 182, + sym_qualified_identifier = 183, + sym_boolean = 184, + sym_string = 185, + aux_sym_source_file_repeat1 = 186, + aux_sym_import_declaration_repeat1 = 187, + aux_sym_record_body_repeat1 = 188, + aux_sym_enum_body_repeat1 = 189, + aux_sym_parameter_list_repeat1 = 190, + aux_sym_parameter_repeat1 = 191, + aux_sym_type_repeat1 = 192, + aux_sym_block_repeat1 = 193, + aux_sym_capture_list_repeat1 = 194, + aux_sym_match_statement_repeat1 = 195, + aux_sym_match_arm_repeat1 = 196, + aux_sym_initializer_list_repeat1 = 197, + aux_sym_variant_payload_repeat1 = 198, + aux_sym_string_repeat1 = 199, }; static const char * const ts_symbol_names[] = { @@ -388,6 +389,7 @@ static const char * const ts_symbol_names[] = { [sym_catch_expression] = "catch_expression", [sym_unary_expression] = "unary_expression", [sym_field_expression] = "field_expression", + [sym_intrinsic_call_expression] = "intrinsic_call_expression", [sym_call_expression] = "call_expression", [sym_argument_list] = "argument_list", [sym_index_expression] = "index_expression", @@ -590,6 +592,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_catch_expression] = sym_catch_expression, [sym_unary_expression] = sym_unary_expression, [sym_field_expression] = sym_field_expression, + [sym_intrinsic_call_expression] = sym_intrinsic_call_expression, [sym_call_expression] = sym_call_expression, [sym_argument_list] = sym_argument_list, [sym_index_expression] = sym_index_expression, @@ -1293,6 +1296,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_intrinsic_call_expression] = { + .visible = true, + .named = true, + }, [sym_call_expression] = { .visible = true, .named = true, @@ -1446,21 +1453,22 @@ enum ts_field_identifiers { field_label = 20, field_left = 21, field_length = 22, - field_name = 23, - field_operand = 24, - field_operator = 25, - field_parameters = 26, - field_path = 27, - field_pattern = 28, - field_qualifier = 29, - field_result = 30, - field_right = 31, - field_sentinel = 32, - field_start = 33, - field_subject = 34, - field_type = 35, - field_update = 36, - field_value = 37, + field_marker = 23, + field_name = 24, + field_operand = 25, + field_operator = 26, + field_parameters = 27, + field_path = 28, + field_pattern = 29, + field_qualifier = 30, + field_result = 31, + field_right = 32, + field_sentinel = 33, + field_start = 34, + field_subject = 35, + field_type = 36, + field_update = 37, + field_value = 38, }; static const char * const ts_field_names[] = { @@ -1487,6 +1495,7 @@ static const char * const ts_field_names[] = { [field_label] = "label", [field_left] = "left", [field_length] = "length", + [field_marker] = "marker", [field_name] = "name", [field_operand] = "operand", [field_operator] = "operator", @@ -1529,78 +1538,78 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [22] = {.index = 36, .length = 1}, [23] = {.index = 37, .length = 2}, [24] = {.index = 39, .length = 2}, - [25] = {.index = 41, .length = 1}, - [26] = {.index = 42, .length = 3}, - [27] = {.index = 45, .length = 2}, - [28] = {.index = 47, .length = 2}, - [29] = {.index = 49, .length = 2}, - [30] = {.index = 51, .length = 2}, - [31] = {.index = 53, .length = 5}, - [32] = {.index = 58, .length = 1}, - [33] = {.index = 59, .length = 4}, - [34] = {.index = 63, .length = 1}, - [35] = {.index = 64, .length = 2}, - [36] = {.index = 66, .length = 3}, - [37] = {.index = 69, .length = 2}, - [38] = {.index = 71, .length = 1}, - [39] = {.index = 72, .length = 1}, - [40] = {.index = 73, .length = 2}, - [41] = {.index = 75, .length = 2}, - [42] = {.index = 77, .length = 2}, - [43] = {.index = 79, .length = 2}, - [44] = {.index = 81, .length = 2}, - [45] = {.index = 83, .length = 1}, - [46] = {.index = 84, .length = 3}, - [47] = {.index = 87, .length = 1}, - [48] = {.index = 88, .length = 2}, - [49] = {.index = 90, .length = 2}, - [50] = {.index = 92, .length = 2}, - [51] = {.index = 94, .length = 2}, - [52] = {.index = 96, .length = 3}, - [53] = {.index = 99, .length = 2}, - [54] = {.index = 101, .length = 2}, - [55] = {.index = 103, .length = 5}, - [56] = {.index = 108, .length = 5}, - [57] = {.index = 113, .length = 5}, - [58] = {.index = 118, .length = 2}, - [59] = {.index = 120, .length = 2}, - [60] = {.index = 122, .length = 1}, - [61] = {.index = 123, .length = 2}, - [62] = {.index = 125, .length = 2}, - [63] = {.index = 127, .length = 2}, - [64] = {.index = 129, .length = 1}, - [65] = {.index = 130, .length = 2}, - [66] = {.index = 132, .length = 2}, - [67] = {.index = 134, .length = 2}, - [68] = {.index = 136, .length = 2}, - [69] = {.index = 138, .length = 3}, - [70] = {.index = 141, .length = 2}, - [71] = {.index = 143, .length = 3}, + [25] = {.index = 41, .length = 3}, + [26] = {.index = 44, .length = 1}, + [27] = {.index = 45, .length = 3}, + [28] = {.index = 48, .length = 2}, + [29] = {.index = 50, .length = 2}, + [30] = {.index = 52, .length = 2}, + [31] = {.index = 54, .length = 2}, + [32] = {.index = 56, .length = 5}, + [33] = {.index = 61, .length = 1}, + [34] = {.index = 62, .length = 4}, + [35] = {.index = 66, .length = 1}, + [36] = {.index = 67, .length = 2}, + [37] = {.index = 69, .length = 3}, + [38] = {.index = 72, .length = 2}, + [39] = {.index = 74, .length = 1}, + [40] = {.index = 75, .length = 1}, + [41] = {.index = 76, .length = 2}, + [42] = {.index = 78, .length = 2}, + [43] = {.index = 80, .length = 2}, + [44] = {.index = 82, .length = 2}, + [45] = {.index = 84, .length = 2}, + [46] = {.index = 86, .length = 1}, + [47] = {.index = 87, .length = 3}, + [48] = {.index = 90, .length = 1}, + [49] = {.index = 91, .length = 2}, + [50] = {.index = 93, .length = 2}, + [51] = {.index = 95, .length = 2}, + [52] = {.index = 97, .length = 2}, + [53] = {.index = 99, .length = 3}, + [54] = {.index = 102, .length = 2}, + [55] = {.index = 104, .length = 2}, + [56] = {.index = 106, .length = 5}, + [57] = {.index = 111, .length = 5}, + [58] = {.index = 116, .length = 5}, + [59] = {.index = 121, .length = 2}, + [60] = {.index = 123, .length = 2}, + [61] = {.index = 125, .length = 1}, + [62] = {.index = 126, .length = 2}, + [63] = {.index = 128, .length = 2}, + [64] = {.index = 130, .length = 2}, + [65] = {.index = 132, .length = 1}, + [66] = {.index = 133, .length = 2}, + [67] = {.index = 135, .length = 2}, + [68] = {.index = 137, .length = 2}, + [69] = {.index = 139, .length = 2}, + [70] = {.index = 141, .length = 3}, + [71] = {.index = 144, .length = 2}, [72] = {.index = 146, .length = 3}, - [73] = {.index = 149, .length = 2}, - [74] = {.index = 151, .length = 1}, - [75] = {.index = 152, .length = 2}, - [76] = {.index = 154, .length = 2}, - [77] = {.index = 156, .length = 2}, - [78] = {.index = 158, .length = 3}, - [79] = {.index = 161, .length = 1}, - [80] = {.index = 162, .length = 6}, - [81] = {.index = 168, .length = 2}, - [82] = {.index = 170, .length = 5}, - [83] = {.index = 175, .length = 5}, - [84] = {.index = 180, .length = 2}, - [85] = {.index = 182, .length = 2}, - [86] = {.index = 184, .length = 3}, - [87] = {.index = 187, .length = 2}, - [88] = {.index = 189, .length = 2}, - [89] = {.index = 191, .length = 1}, - [90] = {.index = 192, .length = 3}, - [91] = {.index = 195, .length = 2}, - [92] = {.index = 197, .length = 2}, - [93] = {.index = 199, .length = 3}, + [73] = {.index = 149, .length = 3}, + [74] = {.index = 152, .length = 2}, + [75] = {.index = 154, .length = 1}, + [76] = {.index = 155, .length = 2}, + [77] = {.index = 157, .length = 2}, + [78] = {.index = 159, .length = 2}, + [79] = {.index = 161, .length = 3}, + [80] = {.index = 164, .length = 1}, + [81] = {.index = 165, .length = 6}, + [82] = {.index = 171, .length = 2}, + [83] = {.index = 173, .length = 5}, + [84] = {.index = 178, .length = 5}, + [85] = {.index = 183, .length = 2}, + [86] = {.index = 185, .length = 2}, + [87] = {.index = 187, .length = 3}, + [88] = {.index = 190, .length = 2}, + [89] = {.index = 192, .length = 2}, + [90] = {.index = 194, .length = 1}, + [91] = {.index = 195, .length = 3}, + [92] = {.index = 198, .length = 2}, + [93] = {.index = 200, .length = 2}, [94] = {.index = 202, .length = 3}, - [95] = {.index = 205, .length = 2}, - [96] = {.index = 207, .length = 3}, + [95] = {.index = 205, .length = 3}, + [96] = {.index = 208, .length = 2}, [97] = {.index = 210, .length = 3}, [98] = {.index = 213, .length = 3}, [99] = {.index = 216, .length = 3}, @@ -1608,30 +1617,30 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [101] = {.index = 222, .length = 3}, [102] = {.index = 225, .length = 3}, [103] = {.index = 228, .length = 3}, - [104] = {.index = 231, .length = 2}, - [105] = {.index = 233, .length = 3}, - [106] = {.index = 236, .length = 2}, - [107] = {.index = 238, .length = 2}, - [108] = {.index = 240, .length = 3}, - [109] = {.index = 243, .length = 6}, - [110] = {.index = 249, .length = 6}, - [111] = {.index = 255, .length = 2}, - [112] = {.index = 257, .length = 2}, - [113] = {.index = 259, .length = 3}, - [114] = {.index = 262, .length = 2}, - [115] = {.index = 264, .length = 3}, - [116] = {.index = 267, .length = 2}, - [117] = {.index = 269, .length = 3}, + [104] = {.index = 231, .length = 3}, + [105] = {.index = 234, .length = 2}, + [106] = {.index = 236, .length = 3}, + [107] = {.index = 239, .length = 2}, + [108] = {.index = 241, .length = 2}, + [109] = {.index = 243, .length = 3}, + [110] = {.index = 246, .length = 6}, + [111] = {.index = 252, .length = 6}, + [112] = {.index = 258, .length = 2}, + [113] = {.index = 260, .length = 2}, + [114] = {.index = 262, .length = 3}, + [115] = {.index = 265, .length = 2}, + [116] = {.index = 267, .length = 3}, + [117] = {.index = 270, .length = 2}, [118] = {.index = 272, .length = 3}, - [119] = {.index = 275, .length = 1}, - [120] = {.index = 276, .length = 3}, + [119] = {.index = 275, .length = 3}, + [120] = {.index = 278, .length = 1}, [121] = {.index = 279, .length = 3}, [122] = {.index = 282, .length = 3}, [123] = {.index = 285, .length = 3}, [124] = {.index = 288, .length = 3}, - [125] = {.index = 291, .length = 5}, - [126] = {.index = 296, .length = 4}, - [127] = {.index = 300, .length = 3}, + [125] = {.index = 291, .length = 3}, + [126] = {.index = 294, .length = 5}, + [127] = {.index = 299, .length = 4}, [128] = {.index = 303, .length = 3}, [129] = {.index = 306, .length = 3}, [130] = {.index = 309, .length = 3}, @@ -1640,187 +1649,188 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [133] = {.index = 318, .length = 3}, [134] = {.index = 321, .length = 3}, [135] = {.index = 324, .length = 3}, - [136] = {.index = 327, .length = 2}, - [137] = {.index = 329, .length = 3}, + [136] = {.index = 327, .length = 3}, + [137] = {.index = 330, .length = 2}, [138] = {.index = 332, .length = 3}, [139] = {.index = 335, .length = 3}, - [140] = {.index = 338, .length = 6}, - [141] = {.index = 344, .length = 2}, - [142] = {.index = 346, .length = 3}, - [143] = {.index = 349, .length = 2}, - [144] = {.index = 351, .length = 3}, + [140] = {.index = 338, .length = 3}, + [141] = {.index = 341, .length = 6}, + [142] = {.index = 347, .length = 2}, + [143] = {.index = 349, .length = 3}, + [144] = {.index = 352, .length = 2}, [145] = {.index = 354, .length = 3}, - [146] = {.index = 357, .length = 1}, - [147] = {.index = 358, .length = 3}, + [146] = {.index = 357, .length = 3}, + [147] = {.index = 360, .length = 1}, [148] = {.index = 361, .length = 3}, [149] = {.index = 364, .length = 3}, [150] = {.index = 367, .length = 3}, [151] = {.index = 370, .length = 3}, - [152] = {.index = 373, .length = 5}, - [153] = {.index = 378, .length = 6}, - [154] = {.index = 384, .length = 4}, - [155] = {.index = 388, .length = 4}, - [156] = {.index = 392, .length = 5}, - [157] = {.index = 397, .length = 4}, - [158] = {.index = 401, .length = 5}, - [159] = {.index = 406, .length = 4}, - [160] = {.index = 410, .length = 3}, + [152] = {.index = 373, .length = 3}, + [153] = {.index = 376, .length = 5}, + [154] = {.index = 381, .length = 6}, + [155] = {.index = 387, .length = 4}, + [156] = {.index = 391, .length = 4}, + [157] = {.index = 395, .length = 5}, + [158] = {.index = 400, .length = 4}, + [159] = {.index = 404, .length = 5}, + [160] = {.index = 409, .length = 4}, [161] = {.index = 413, .length = 3}, [162] = {.index = 416, .length = 3}, - [163] = {.index = 419, .length = 4}, - [164] = {.index = 423, .length = 4}, - [165] = {.index = 427, .length = 3}, + [163] = {.index = 419, .length = 3}, + [164] = {.index = 422, .length = 4}, + [165] = {.index = 426, .length = 4}, [166] = {.index = 430, .length = 3}, [167] = {.index = 433, .length = 3}, - [168] = {.index = 436, .length = 2}, - [169] = {.index = 438, .length = 3}, - [170] = {.index = 441, .length = 2}, - [171] = {.index = 443, .length = 3}, + [168] = {.index = 436, .length = 3}, + [169] = {.index = 439, .length = 2}, + [170] = {.index = 441, .length = 3}, + [171] = {.index = 444, .length = 2}, [172] = {.index = 446, .length = 3}, [173] = {.index = 449, .length = 3}, [174] = {.index = 452, .length = 3}, - [175] = {.index = 455, .length = 6}, - [176] = {.index = 461, .length = 6}, - [177] = {.index = 467, .length = 7}, - [178] = {.index = 474, .length = 4}, - [179] = {.index = 478, .length = 5}, - [180] = {.index = 483, .length = 6}, - [181] = {.index = 489, .length = 4}, - [182] = {.index = 493, .length = 4}, - [183] = {.index = 497, .length = 5}, - [184] = {.index = 502, .length = 6}, - [185] = {.index = 508, .length = 4}, - [186] = {.index = 512, .length = 4}, - [187] = {.index = 516, .length = 5}, - [188] = {.index = 521, .length = 4}, - [189] = {.index = 525, .length = 4}, - [190] = {.index = 529, .length = 4}, - [191] = {.index = 533, .length = 4}, - [192] = {.index = 537, .length = 4}, - [193] = {.index = 541, .length = 4}, - [194] = {.index = 545, .length = 3}, + [175] = {.index = 455, .length = 3}, + [176] = {.index = 458, .length = 6}, + [177] = {.index = 464, .length = 6}, + [178] = {.index = 470, .length = 7}, + [179] = {.index = 477, .length = 4}, + [180] = {.index = 481, .length = 5}, + [181] = {.index = 486, .length = 6}, + [182] = {.index = 492, .length = 4}, + [183] = {.index = 496, .length = 4}, + [184] = {.index = 500, .length = 5}, + [185] = {.index = 505, .length = 6}, + [186] = {.index = 511, .length = 4}, + [187] = {.index = 515, .length = 4}, + [188] = {.index = 519, .length = 5}, + [189] = {.index = 524, .length = 4}, + [190] = {.index = 528, .length = 4}, + [191] = {.index = 532, .length = 4}, + [192] = {.index = 536, .length = 4}, + [193] = {.index = 540, .length = 4}, + [194] = {.index = 544, .length = 4}, [195] = {.index = 548, .length = 3}, - [196] = {.index = 551, .length = 4}, - [197] = {.index = 555, .length = 4}, - [198] = {.index = 559, .length = 3}, + [196] = {.index = 551, .length = 3}, + [197] = {.index = 554, .length = 4}, + [198] = {.index = 558, .length = 4}, [199] = {.index = 562, .length = 3}, [200] = {.index = 565, .length = 3}, - [201] = {.index = 568, .length = 6}, - [202] = {.index = 574, .length = 6}, - [203] = {.index = 580, .length = 7}, - [204] = {.index = 587, .length = 7}, - [205] = {.index = 594, .length = 6}, - [206] = {.index = 600, .length = 6}, - [207] = {.index = 606, .length = 7}, - [208] = {.index = 613, .length = 4}, - [209] = {.index = 617, .length = 6}, - [210] = {.index = 623, .length = 6}, - [211] = {.index = 629, .length = 7}, - [212] = {.index = 636, .length = 4}, - [213] = {.index = 640, .length = 5}, - [214] = {.index = 645, .length = 6}, - [215] = {.index = 651, .length = 4}, - [216] = {.index = 655, .length = 4}, - [217] = {.index = 659, .length = 4}, - [218] = {.index = 663, .length = 4}, - [219] = {.index = 667, .length = 4}, - [220] = {.index = 671, .length = 5}, - [221] = {.index = 676, .length = 4}, - [222] = {.index = 680, .length = 4}, - [223] = {.index = 684, .length = 4}, - [224] = {.index = 688, .length = 4}, - [225] = {.index = 692, .length = 4}, - [226] = {.index = 696, .length = 4}, - [227] = {.index = 700, .length = 4}, - [228] = {.index = 704, .length = 4}, - [229] = {.index = 708, .length = 3}, - [230] = {.index = 711, .length = 6}, - [231] = {.index = 717, .length = 7}, - [232] = {.index = 724, .length = 7}, - [233] = {.index = 731, .length = 8}, - [234] = {.index = 739, .length = 6}, - [235] = {.index = 745, .length = 6}, - [236] = {.index = 751, .length = 7}, - [237] = {.index = 758, .length = 7}, - [238] = {.index = 765, .length = 6}, - [239] = {.index = 771, .length = 6}, - [240] = {.index = 777, .length = 7}, - [241] = {.index = 784, .length = 7}, - [242] = {.index = 791, .length = 6}, - [243] = {.index = 797, .length = 6}, - [244] = {.index = 803, .length = 7}, - [245] = {.index = 810, .length = 4}, - [246] = {.index = 814, .length = 5}, - [247] = {.index = 819, .length = 4}, - [248] = {.index = 823, .length = 5}, - [249] = {.index = 828, .length = 5}, - [250] = {.index = 833, .length = 4}, - [251] = {.index = 837, .length = 4}, - [252] = {.index = 841, .length = 4}, - [253] = {.index = 845, .length = 4}, - [254] = {.index = 849, .length = 4}, - [255] = {.index = 853, .length = 4}, - [256] = {.index = 857, .length = 5}, - [257] = {.index = 862, .length = 4}, - [258] = {.index = 866, .length = 4}, - [259] = {.index = 870, .length = 4}, - [260] = {.index = 874, .length = 7}, - [261] = {.index = 881, .length = 8}, - [262] = {.index = 889, .length = 8}, - [263] = {.index = 897, .length = 6}, - [264] = {.index = 903, .length = 7}, - [265] = {.index = 910, .length = 7}, - [266] = {.index = 917, .length = 8}, - [267] = {.index = 925, .length = 6}, - [268] = {.index = 931, .length = 7}, - [269] = {.index = 938, .length = 7}, - [270] = {.index = 945, .length = 8}, - [271] = {.index = 953, .length = 6}, - [272] = {.index = 959, .length = 6}, - [273] = {.index = 965, .length = 7}, - [274] = {.index = 972, .length = 7}, - [275] = {.index = 979, .length = 5}, - [276] = {.index = 984, .length = 5}, - [277] = {.index = 989, .length = 5}, - [278] = {.index = 994, .length = 5}, - [279] = {.index = 999, .length = 4}, - [280] = {.index = 1003, .length = 5}, - [281] = {.index = 1008, .length = 4}, - [282] = {.index = 1012, .length = 5}, - [283] = {.index = 1017, .length = 5}, - [284] = {.index = 1022, .length = 4}, - [285] = {.index = 1026, .length = 4}, - [286] = {.index = 1030, .length = 4}, - [287] = {.index = 1034, .length = 8}, - [288] = {.index = 1042, .length = 7}, - [289] = {.index = 1049, .length = 8}, - [290] = {.index = 1057, .length = 8}, - [291] = {.index = 1065, .length = 7}, - [292] = {.index = 1072, .length = 8}, - [293] = {.index = 1080, .length = 8}, - [294] = {.index = 1088, .length = 6}, - [295] = {.index = 1094, .length = 7}, - [296] = {.index = 1101, .length = 7}, - [297] = {.index = 1108, .length = 8}, - [298] = {.index = 1116, .length = 5}, - [299] = {.index = 1121, .length = 5}, - [300] = {.index = 1126, .length = 5}, - [301] = {.index = 1131, .length = 5}, - [302] = {.index = 1136, .length = 5}, - [303] = {.index = 1141, .length = 5}, - [304] = {.index = 1146, .length = 5}, - [305] = {.index = 1151, .length = 4}, - [306] = {.index = 1155, .length = 8}, - [307] = {.index = 1163, .length = 8}, - [308] = {.index = 1171, .length = 7}, - [309] = {.index = 1178, .length = 8}, - [310] = {.index = 1186, .length = 8}, - [311] = {.index = 1194, .length = 5}, - [312] = {.index = 1199, .length = 5}, - [313] = {.index = 1204, .length = 5}, - [314] = {.index = 1209, .length = 5}, - [315] = {.index = 1214, .length = 8}, - [316] = {.index = 1222, .length = 5}, + [201] = {.index = 568, .length = 3}, + [202] = {.index = 571, .length = 6}, + [203] = {.index = 577, .length = 6}, + [204] = {.index = 583, .length = 7}, + [205] = {.index = 590, .length = 7}, + [206] = {.index = 597, .length = 6}, + [207] = {.index = 603, .length = 6}, + [208] = {.index = 609, .length = 7}, + [209] = {.index = 616, .length = 4}, + [210] = {.index = 620, .length = 6}, + [211] = {.index = 626, .length = 6}, + [212] = {.index = 632, .length = 7}, + [213] = {.index = 639, .length = 4}, + [214] = {.index = 643, .length = 5}, + [215] = {.index = 648, .length = 6}, + [216] = {.index = 654, .length = 4}, + [217] = {.index = 658, .length = 4}, + [218] = {.index = 662, .length = 4}, + [219] = {.index = 666, .length = 4}, + [220] = {.index = 670, .length = 4}, + [221] = {.index = 674, .length = 5}, + [222] = {.index = 679, .length = 4}, + [223] = {.index = 683, .length = 4}, + [224] = {.index = 687, .length = 4}, + [225] = {.index = 691, .length = 4}, + [226] = {.index = 695, .length = 4}, + [227] = {.index = 699, .length = 4}, + [228] = {.index = 703, .length = 4}, + [229] = {.index = 707, .length = 4}, + [230] = {.index = 711, .length = 3}, + [231] = {.index = 714, .length = 6}, + [232] = {.index = 720, .length = 7}, + [233] = {.index = 727, .length = 7}, + [234] = {.index = 734, .length = 8}, + [235] = {.index = 742, .length = 6}, + [236] = {.index = 748, .length = 6}, + [237] = {.index = 754, .length = 7}, + [238] = {.index = 761, .length = 7}, + [239] = {.index = 768, .length = 6}, + [240] = {.index = 774, .length = 6}, + [241] = {.index = 780, .length = 7}, + [242] = {.index = 787, .length = 7}, + [243] = {.index = 794, .length = 6}, + [244] = {.index = 800, .length = 6}, + [245] = {.index = 806, .length = 7}, + [246] = {.index = 813, .length = 4}, + [247] = {.index = 817, .length = 5}, + [248] = {.index = 822, .length = 4}, + [249] = {.index = 826, .length = 5}, + [250] = {.index = 831, .length = 5}, + [251] = {.index = 836, .length = 4}, + [252] = {.index = 840, .length = 4}, + [253] = {.index = 844, .length = 4}, + [254] = {.index = 848, .length = 4}, + [255] = {.index = 852, .length = 4}, + [256] = {.index = 856, .length = 4}, + [257] = {.index = 860, .length = 5}, + [258] = {.index = 865, .length = 4}, + [259] = {.index = 869, .length = 4}, + [260] = {.index = 873, .length = 4}, + [261] = {.index = 877, .length = 7}, + [262] = {.index = 884, .length = 8}, + [263] = {.index = 892, .length = 8}, + [264] = {.index = 900, .length = 6}, + [265] = {.index = 906, .length = 7}, + [266] = {.index = 913, .length = 7}, + [267] = {.index = 920, .length = 8}, + [268] = {.index = 928, .length = 6}, + [269] = {.index = 934, .length = 7}, + [270] = {.index = 941, .length = 7}, + [271] = {.index = 948, .length = 8}, + [272] = {.index = 956, .length = 6}, + [273] = {.index = 962, .length = 6}, + [274] = {.index = 968, .length = 7}, + [275] = {.index = 975, .length = 7}, + [276] = {.index = 982, .length = 5}, + [277] = {.index = 987, .length = 5}, + [278] = {.index = 992, .length = 5}, + [279] = {.index = 997, .length = 5}, + [280] = {.index = 1002, .length = 4}, + [281] = {.index = 1006, .length = 5}, + [282] = {.index = 1011, .length = 4}, + [283] = {.index = 1015, .length = 5}, + [284] = {.index = 1020, .length = 5}, + [285] = {.index = 1025, .length = 4}, + [286] = {.index = 1029, .length = 4}, + [287] = {.index = 1033, .length = 4}, + [288] = {.index = 1037, .length = 8}, + [289] = {.index = 1045, .length = 7}, + [290] = {.index = 1052, .length = 8}, + [291] = {.index = 1060, .length = 8}, + [292] = {.index = 1068, .length = 7}, + [293] = {.index = 1075, .length = 8}, + [294] = {.index = 1083, .length = 8}, + [295] = {.index = 1091, .length = 6}, + [296] = {.index = 1097, .length = 7}, + [297] = {.index = 1104, .length = 7}, + [298] = {.index = 1111, .length = 8}, + [299] = {.index = 1119, .length = 5}, + [300] = {.index = 1124, .length = 5}, + [301] = {.index = 1129, .length = 5}, + [302] = {.index = 1134, .length = 5}, + [303] = {.index = 1139, .length = 5}, + [304] = {.index = 1144, .length = 5}, + [305] = {.index = 1149, .length = 5}, + [306] = {.index = 1154, .length = 4}, + [307] = {.index = 1158, .length = 8}, + [308] = {.index = 1166, .length = 8}, + [309] = {.index = 1174, .length = 7}, + [310] = {.index = 1181, .length = 8}, + [311] = {.index = 1189, .length = 8}, + [312] = {.index = 1197, .length = 5}, + [313] = {.index = 1202, .length = 5}, + [314] = {.index = 1207, .length = 5}, + [315] = {.index = 1212, .length = 5}, + [316] = {.index = 1217, .length = 8}, + [317] = {.index = 1225, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1890,584 +1900,588 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 2}, {field_condition, 1}, [41] = + {field_arguments, 2}, + {field_function, 0}, + {field_marker, 1}, + [44] = {field_label, 0}, - [42] = + [45] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [45] = + [48] = {field_left, 0}, {field_right, 2}, - [47] = + [50] = {field_field, 2}, {field_value, 0}, - [49] = + [52] = {field_fields, 2}, {field_type, 0}, - [51] = + [54] = {field_name, 0}, {field_type, 1}, - [53] = + [56] = {field_body, 4}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 3}, - [58] = + [61] = {field_result, 3}, - [59] = + [62] = {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 4}, - [63] = + [66] = {field_element, 3}, - [64] = + [67] = {field_element, 3}, {field_length, 1}, - [66] = + [69] = {field_name, 0}, {field_type, 1}, {field_value, 4}, - [69] = + [72] = {field_body, 3}, {field_result, 2}, - [71] = + [74] = {field_label, 2}, - [72] = + [75] = {field_body, 2}, - [73] = + [76] = {field_body, 2}, {field_capture, 1}, - [75] = + [78] = {field_condition, 1}, {field_consequence, 3}, - [77] = + [80] = {field_condition, 2}, {field_consequence, 3}, - [79] = + [82] = {field_body, 3}, {field_condition, 1}, - [81] = - {field_body, 3}, - {field_condition, 2}, - [83] = - {field_subject, 1}, [84] = + {field_body, 3}, + {field_condition, 2}, + [86] = + {field_subject, 1}, + [87] = {field_left, 0}, {field_operator, 1}, {field_right, 3}, - [87] = + [90] = {field_value, 0}, - [88] = + [91] = {field_index, 2}, {field_value, 0}, - [90] = + [93] = {field_left, 0}, {field_right, 3}, - [92] = + [95] = {field_alias, 0}, {field_path, 5}, - [94] = + [97] = {field_name, 1}, {field_type, 2}, - [96] = + [99] = {field_name, 0}, {field_name, 1, .inherited = true}, {field_type, 2}, - [99] = + [102] = {field_name, 0, .inherited = true}, {field_name, 1, .inherited = true}, - [101] = + [104] = {field_error, 4}, {field_result, 2}, - [103] = + [106] = {field_error, 5}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 3}, - [108] = + [111] = {field_body, 5}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 3}, - [113] = + [116] = {field_body, 5}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 4}, - [118] = + [121] = {field_element, 4}, {field_sentinel, 2}, - [120] = - {field_element, 4}, - {field_length, 1}, - [122] = - {field_element, 4}, [123] = {field_element, 4}, - {field_length, 2}, + {field_length, 1}, [125] = + {field_element, 4}, + [126] = + {field_element, 4}, + {field_length, 2}, + [128] = {field_body, 4}, {field_result, 2}, - [127] = + [130] = {field_body, 4}, {field_result, 3}, - [129] = + [132] = {field_backing, 2}, - [130] = + [133] = {field_label, 2}, {field_value, 3}, - [132] = + [135] = {field_body, 3}, {field_capture, 1}, - [134] = + [137] = {field_body, 3}, {field_capture, 2}, - [136] = + [139] = {field_condition, 1}, {field_consequence, 4}, - [138] = + [141] = {field_alternative, 4}, {field_condition, 1}, {field_consequence, 2}, - [141] = + [144] = {field_condition, 2}, {field_consequence, 4}, - [143] = - {field_body, 4}, - {field_condition, 1}, - {field_update, 3}, [146] = {field_body, 4}, {field_condition, 1}, - {field_label, 2}, + {field_update, 3}, [149] = {field_body, 4}, - {field_condition, 2}, - [151] = - {field_subject, 2}, + {field_condition, 1}, + {field_label, 2}, [152] = + {field_body, 4}, + {field_condition, 2}, + [154] = + {field_subject, 2}, + [155] = {field_end, 3}, {field_value, 0}, - [154] = + [157] = {field_start, 2}, {field_value, 0}, - [156] = + [159] = {field_index, 3}, {field_value, 0}, - [158] = + [161] = {field_name, 1}, {field_name, 2, .inherited = true}, {field_type, 3}, - [161] = + [164] = {field_name, 2}, - [162] = + [165] = {field_body, 6}, {field_error, 5}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 3}, - [168] = + [171] = {field_error, 5}, {field_result, 3}, - [170] = + [173] = {field_error, 6}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 4}, - [175] = + [178] = {field_body, 6}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 4}, - [180] = + [183] = {field_element, 5}, {field_sentinel, 3}, - [182] = + [185] = {field_element, 5}, {field_sentinel, 2}, - [184] = - {field_element, 5}, - {field_length, 1}, - {field_sentinel, 3}, [187] = {field_element, 5}, {field_length, 1}, - [189] = + {field_sentinel, 3}, + [190] = + {field_element, 5}, + {field_length, 1}, + [192] = {field_element, 5}, {field_length, 2}, - [191] = + [194] = {field_element, 5}, - [192] = + [195] = {field_body, 5}, {field_error, 4}, {field_result, 2}, - [195] = + [198] = {field_body, 5}, {field_result, 3}, - [197] = + [200] = {field_body, 4}, {field_capture, 2}, - [199] = - {field_alternative, 5}, - {field_condition, 1}, - {field_consequence, 3}, [202] = {field_alternative, 5}, {field_condition, 1}, - {field_consequence, 2}, + {field_consequence, 3}, [205] = + {field_alternative, 5}, + {field_condition, 1}, + {field_consequence, 2}, + [208] = {field_condition, 2}, {field_consequence, 5}, - [207] = + [210] = {field_alternative, 5}, {field_condition, 2}, {field_consequence, 3}, - [210] = - {field_body, 5}, - {field_condition, 1}, - {field_update, 3}, [213] = {field_body, 5}, {field_condition, 1}, - {field_update, 4}, + {field_update, 3}, [216] = {field_body, 5}, {field_condition, 1}, - {field_label, 2}, + {field_update, 4}, [219] = {field_body, 5}, {field_condition, 1}, - {field_label, 3}, + {field_label, 2}, [222] = {field_body, 5}, - {field_condition, 2}, - {field_update, 4}, + {field_condition, 1}, + {field_label, 3}, [225] = {field_body, 5}, {field_condition, 2}, - {field_label, 3}, + {field_update, 4}, [228] = + {field_body, 5}, + {field_condition, 2}, + {field_label, 3}, + [231] = {field_body, 5}, {field_item, 3}, {field_iterable, 1}, - [231] = + [234] = {field_body, 2}, {field_pattern, 0}, - [233] = + [236] = {field_end, 4}, {field_start, 2}, {field_value, 0}, - [236] = + [239] = {field_end, 4}, {field_value, 0}, - [238] = + [241] = {field_start, 3}, {field_value, 0}, - [240] = + [243] = {field_body, 5}, {field_name, 3}, {field_value, 0}, - [243] = + [246] = {field_body, 7}, {field_error, 5}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 3}, - [249] = + [252] = {field_body, 7}, {field_error, 6}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 4}, - [255] = + [258] = {field_element, 6}, {field_sentinel, 3}, - [257] = + [260] = {field_element, 6}, {field_sentinel, 2}, - [259] = + [262] = {field_element, 6}, {field_length, 1}, {field_sentinel, 3}, - [262] = + [265] = {field_element, 6}, {field_sentinel, 4}, - [264] = - {field_element, 6}, - {field_length, 2}, - {field_sentinel, 4}, [267] = {field_element, 6}, {field_length, 2}, - [269] = + {field_sentinel, 4}, + [270] = + {field_element, 6}, + {field_length, 2}, + [272] = {field_body, 6}, {field_error, 4}, {field_result, 2}, - [272] = + [275] = {field_body, 6}, {field_error, 5}, {field_result, 3}, - [275] = + [278] = {field_guard, 3}, - [276] = - {field_alternative, 6}, - {field_condition, 1}, - {field_consequence, 3}, [279] = {field_alternative, 6}, {field_condition, 1}, - {field_consequence, 4}, + {field_consequence, 3}, [282] = {field_alternative, 6}, {field_condition, 1}, - {field_consequence, 2}, + {field_consequence, 4}, [285] = {field_alternative, 6}, - {field_condition, 2}, - {field_consequence, 4}, + {field_condition, 1}, + {field_consequence, 2}, [288] = {field_alternative, 6}, {field_condition, 2}, - {field_consequence, 3}, + {field_consequence, 4}, [291] = + {field_alternative, 6}, + {field_condition, 2}, + {field_consequence, 3}, + [294] = {field_body, 6}, {field_condition, 1}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [296] = + [299] = {field_body, 6}, {field_condition, 1}, {field_label, 4}, {field_update, 3}, - [300] = - {field_body, 6}, - {field_condition, 1}, - {field_update, 4}, [303] = {field_body, 6}, {field_condition, 1}, - {field_label, 3}, + {field_update, 4}, [306] = {field_body, 6}, - {field_condition, 2}, - {field_update, 4}, + {field_condition, 1}, + {field_label, 3}, [309] = {field_body, 6}, {field_condition, 2}, - {field_update, 5}, + {field_update, 4}, [312] = {field_body, 6}, {field_condition, 2}, - {field_label, 3}, + {field_update, 5}, [315] = {field_body, 6}, {field_condition, 2}, - {field_label, 4}, + {field_label, 3}, [318] = {field_body, 6}, - {field_item, 4}, - {field_iterable, 1}, + {field_condition, 2}, + {field_label, 4}, [321] = {field_body, 6}, - {field_item, 3}, + {field_item, 4}, {field_iterable, 1}, [324] = + {field_body, 6}, + {field_item, 3}, + {field_iterable, 1}, + [327] = {field_body, 6}, {field_item, 4}, {field_iterable, 2}, - [327] = + [330] = {field_body, 3}, {field_pattern, 0}, - [329] = + [332] = {field_body, 3}, {field_pattern, 0}, {field_pattern, 1}, - [332] = + [335] = {field_end, 5}, {field_start, 3}, {field_value, 0}, - [335] = + [338] = {field_body, 6}, {field_name, 3}, {field_value, 0}, - [338] = + [341] = {field_body, 8}, {field_error, 6}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 4}, - [344] = + [347] = {field_element, 7}, {field_sentinel, 3}, - [346] = - {field_element, 7}, - {field_length, 1}, - {field_sentinel, 3}, [349] = + {field_element, 7}, + {field_length, 1}, + {field_sentinel, 3}, + [352] = {field_element, 7}, {field_sentinel, 4}, - [351] = + [354] = {field_element, 7}, {field_length, 2}, {field_sentinel, 4}, - [354] = + [357] = {field_body, 7}, {field_error, 5}, {field_result, 3}, - [357] = + [360] = {field_guard, 4}, - [358] = - {field_alternative, 7}, - {field_condition, 1}, - {field_consequence, 3}, [361] = {field_alternative, 7}, {field_condition, 1}, - {field_consequence, 4}, + {field_consequence, 3}, [364] = {field_alternative, 7}, - {field_condition, 2}, + {field_condition, 1}, {field_consequence, 4}, [367] = {field_alternative, 7}, {field_condition, 2}, - {field_consequence, 5}, + {field_consequence, 4}, [370] = {field_alternative, 7}, {field_condition, 2}, - {field_consequence, 3}, + {field_consequence, 5}, [373] = + {field_alternative, 7}, + {field_condition, 2}, + {field_consequence, 3}, + [376] = {field_body, 7}, {field_condition, 1}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [378] = + [381] = {field_body, 7}, {field_condition, 1}, {field_update, 3}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [384] = + [387] = {field_body, 7}, {field_condition, 1}, {field_label, 4}, {field_update, 3}, - [388] = + [391] = {field_body, 7}, {field_condition, 1}, {field_label, 5}, {field_update, 3}, - [392] = + [395] = {field_body, 7}, {field_condition, 1}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [397] = + [400] = {field_body, 7}, {field_condition, 1}, {field_label, 5}, {field_update, 4}, - [401] = + [404] = {field_body, 7}, {field_condition, 2}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [406] = + [409] = {field_body, 7}, {field_condition, 2}, {field_label, 5}, {field_update, 4}, - [410] = - {field_body, 7}, - {field_condition, 2}, - {field_update, 5}, [413] = {field_body, 7}, {field_condition, 2}, - {field_label, 4}, + {field_update, 5}, [416] = + {field_body, 7}, + {field_condition, 2}, + {field_label, 4}, + [419] = {field_body, 7}, {field_item, 4}, {field_iterable, 1}, - [419] = + [422] = {field_body, 7}, {field_index, 5}, {field_item, 3}, {field_iterable, 1}, - [423] = + [426] = {field_body, 7}, {field_item, 3}, {field_iterable, 1}, {field_label, 5}, - [427] = - {field_body, 7}, - {field_item, 5}, - {field_iterable, 1}, [430] = {field_body, 7}, {field_item, 5}, - {field_iterable, 2}, + {field_iterable, 1}, [433] = + {field_body, 7}, + {field_item, 5}, + {field_iterable, 2}, + [436] = {field_body, 7}, {field_item, 4}, {field_iterable, 2}, - [436] = + [439] = {field_body, 4}, {field_pattern, 0}, - [438] = + [441] = {field_body, 4}, {field_pattern, 0}, {field_pattern, 1}, - [441] = + [444] = {field_element, 8}, {field_sentinel, 4}, - [443] = + [446] = {field_element, 8}, {field_length, 2}, {field_sentinel, 4}, - [446] = - {field_alternative, 8}, - {field_condition, 1}, - {field_consequence, 4}, [449] = {field_alternative, 8}, - {field_condition, 2}, + {field_condition, 1}, {field_consequence, 4}, [452] = {field_alternative, 8}, {field_condition, 2}, - {field_consequence, 5}, + {field_consequence, 4}, [455] = + {field_alternative, 8}, + {field_condition, 2}, + {field_consequence, 5}, + [458] = {field_body, 8}, {field_condition, 1}, {field_label, 6}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [461] = + [464] = {field_body, 8}, {field_condition, 1}, {field_update, 3}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [467] = + [470] = {field_body, 8}, {field_condition, 1}, {field_update, 3}, @@ -2475,138 +2489,138 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [474] = + [477] = {field_body, 8}, {field_condition, 1}, {field_label, 5}, {field_update, 3}, - [478] = + [481] = {field_body, 8}, {field_condition, 1}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [483] = + [486] = {field_body, 8}, {field_condition, 1}, {field_update, 4}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [489] = + [492] = {field_body, 8}, {field_condition, 1}, {field_label, 5}, {field_update, 4}, - [493] = + [496] = {field_body, 8}, {field_condition, 1}, {field_label, 6}, {field_update, 4}, - [497] = + [500] = {field_body, 8}, {field_condition, 2}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [502] = + [505] = {field_body, 8}, {field_condition, 2}, {field_update, 4}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [508] = + [511] = {field_body, 8}, {field_condition, 2}, {field_label, 5}, {field_update, 4}, - [512] = + [515] = {field_body, 8}, {field_condition, 2}, {field_label, 6}, {field_update, 4}, - [516] = + [519] = {field_body, 8}, {field_condition, 2}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [521] = + [524] = {field_body, 8}, {field_condition, 2}, {field_label, 6}, {field_update, 5}, - [525] = + [528] = {field_body, 8}, {field_index, 6}, {field_item, 4}, {field_iterable, 1}, - [529] = + [532] = {field_body, 8}, {field_item, 4}, {field_iterable, 1}, {field_label, 6}, - [533] = + [536] = {field_body, 8}, {field_index, 5}, {field_item, 3}, {field_iterable, 1}, - [537] = + [540] = {field_body, 8}, {field_item, 3}, {field_iterable, 1}, {field_label, 5}, - [541] = + [544] = {field_body, 8}, {field_item, 3}, {field_iterable, 1}, {field_label, 6}, - [545] = - {field_body, 8}, - {field_item, 5}, - {field_iterable, 1}, [548] = {field_body, 8}, {field_item, 5}, - {field_iterable, 2}, + {field_iterable, 1}, [551] = + {field_body, 8}, + {field_item, 5}, + {field_iterable, 2}, + [554] = {field_body, 8}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, - [555] = + [558] = {field_body, 8}, {field_item, 4}, {field_iterable, 2}, {field_label, 6}, - [559] = + [562] = {field_body, 8}, {field_item, 6}, {field_iterable, 2}, - [562] = + [565] = {field_body, 5}, {field_pattern, 0}, {field_pattern, 1}, - [565] = + [568] = {field_alternative, 9}, {field_condition, 2}, {field_consequence, 5}, - [568] = + [571] = {field_body, 9}, {field_condition, 1}, {field_label, 6}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [574] = + [577] = {field_body, 9}, {field_condition, 1}, {field_label, 7}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [580] = + [583] = {field_body, 9}, {field_condition, 1}, {field_label, 7}, @@ -2614,7 +2628,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 4}, {field_update, 5}, {field_update, 6}, - [587] = + [590] = {field_body, 9}, {field_condition, 1}, {field_update, 3}, @@ -2622,21 +2636,21 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [594] = + [597] = {field_body, 9}, {field_condition, 1}, {field_label, 7}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [600] = + [603] = {field_body, 9}, {field_condition, 1}, {field_update, 4}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [606] = + [609] = {field_body, 9}, {field_condition, 1}, {field_update, 4}, @@ -2644,26 +2658,26 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [613] = + [616] = {field_body, 9}, {field_condition, 1}, {field_label, 6}, {field_update, 4}, - [617] = + [620] = {field_body, 9}, {field_condition, 2}, {field_label, 7}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [623] = + [626] = {field_body, 9}, {field_condition, 2}, {field_update, 4}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [629] = + [632] = {field_body, 9}, {field_condition, 2}, {field_update, 4}, @@ -2671,107 +2685,107 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [636] = + [639] = {field_body, 9}, {field_condition, 2}, {field_label, 6}, {field_update, 4}, - [640] = + [643] = {field_body, 9}, {field_condition, 2}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [645] = + [648] = {field_body, 9}, {field_condition, 2}, {field_update, 5}, {field_update, 6}, {field_update, 7}, {field_update, 8}, - [651] = + [654] = {field_body, 9}, {field_condition, 2}, {field_label, 6}, {field_update, 5}, - [655] = + [658] = {field_body, 9}, {field_condition, 2}, {field_label, 7}, {field_update, 5}, - [659] = + [662] = {field_body, 9}, {field_index, 6}, {field_item, 4}, {field_iterable, 1}, - [663] = + [666] = {field_body, 9}, {field_item, 4}, {field_iterable, 1}, {field_label, 6}, - [667] = + [670] = {field_body, 9}, {field_item, 4}, {field_iterable, 1}, {field_label, 7}, - [671] = + [674] = {field_body, 9}, {field_index, 5}, {field_item, 3}, {field_iterable, 1}, {field_label, 7}, - [676] = + [679] = {field_body, 9}, {field_item, 3}, {field_iterable, 1}, {field_label, 6}, - [680] = + [683] = {field_body, 9}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, - [684] = + [687] = {field_body, 9}, {field_item, 5}, {field_iterable, 1}, {field_label, 7}, - [688] = + [691] = {field_body, 9}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, - [692] = + [695] = {field_body, 9}, {field_item, 5}, {field_iterable, 2}, {field_label, 7}, - [696] = + [699] = {field_body, 9}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, - [700] = + [703] = {field_body, 9}, {field_item, 4}, {field_iterable, 2}, {field_label, 6}, - [704] = + [707] = {field_body, 9}, {field_item, 4}, {field_iterable, 2}, {field_label, 7}, - [708] = - {field_body, 9}, - {field_item, 6}, - {field_iterable, 2}, [711] = + {field_body, 9}, + {field_item, 6}, + {field_iterable, 2}, + [714] = {field_body, 10}, {field_condition, 1}, {field_label, 7}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [717] = + [720] = {field_body, 10}, {field_condition, 1}, {field_label, 7}, @@ -2779,7 +2793,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 4}, {field_update, 5}, {field_update, 6}, - [724] = + [727] = {field_body, 10}, {field_condition, 1}, {field_label, 8}, @@ -2787,7 +2801,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 4}, {field_update, 5}, {field_update, 6}, - [731] = + [734] = {field_body, 10}, {field_condition, 1}, {field_label, 8}, @@ -2796,21 +2810,21 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [739] = + [742] = {field_body, 10}, {field_condition, 1}, {field_label, 7}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [745] = + [748] = {field_body, 10}, {field_condition, 1}, {field_label, 8}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [751] = + [754] = {field_body, 10}, {field_condition, 1}, {field_label, 8}, @@ -2818,7 +2832,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [758] = + [761] = {field_body, 10}, {field_condition, 1}, {field_update, 4}, @@ -2826,21 +2840,21 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [765] = + [768] = {field_body, 10}, {field_condition, 2}, {field_label, 7}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [771] = + [774] = {field_body, 10}, {field_condition, 2}, {field_label, 8}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [777] = + [780] = {field_body, 10}, {field_condition, 2}, {field_label, 8}, @@ -2848,7 +2862,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [784] = + [787] = {field_body, 10}, {field_condition, 2}, {field_update, 4}, @@ -2856,21 +2870,21 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [791] = + [794] = {field_body, 10}, {field_condition, 2}, {field_label, 8}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [797] = + [800] = {field_body, 10}, {field_condition, 2}, {field_update, 5}, {field_update, 6}, {field_update, 7}, {field_update, 8}, - [803] = + [806] = {field_body, 10}, {field_condition, 2}, {field_update, 5}, @@ -2878,86 +2892,86 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 7}, {field_update, 8}, {field_update, 9}, - [810] = + [813] = {field_body, 10}, {field_condition, 2}, {field_label, 7}, {field_update, 5}, - [814] = + [817] = {field_body, 10}, {field_index, 6}, {field_item, 4}, {field_iterable, 1}, {field_label, 8}, - [819] = + [822] = {field_body, 10}, {field_item, 4}, {field_iterable, 1}, {field_label, 7}, - [823] = + [826] = {field_body, 10}, {field_index, 5}, {field_item, 3}, {field_iterable, 1}, {field_label, 7}, - [828] = + [831] = {field_body, 10}, {field_index, 5}, {field_item, 3}, {field_iterable, 1}, {field_label, 8}, - [833] = + [836] = {field_body, 10}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, - [837] = + [840] = {field_body, 10}, {field_item, 5}, {field_iterable, 1}, {field_label, 7}, - [841] = + [844] = {field_body, 10}, {field_item, 5}, {field_iterable, 1}, {field_label, 8}, - [845] = + [848] = {field_body, 10}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, - [849] = + [852] = {field_body, 10}, {field_item, 5}, {field_iterable, 2}, {field_label, 7}, - [853] = + [856] = {field_body, 10}, {field_item, 5}, {field_iterable, 2}, {field_label, 8}, - [857] = + [860] = {field_body, 10}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, {field_label, 8}, - [862] = + [865] = {field_body, 10}, {field_item, 4}, {field_iterable, 2}, {field_label, 7}, - [866] = + [869] = {field_body, 10}, {field_index, 8}, {field_item, 6}, {field_iterable, 2}, - [870] = + [873] = {field_body, 10}, {field_item, 6}, {field_iterable, 2}, {field_label, 8}, - [874] = + [877] = {field_body, 11}, {field_condition, 1}, {field_label, 8}, @@ -2965,7 +2979,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 4}, {field_update, 5}, {field_update, 6}, - [881] = + [884] = {field_body, 11}, {field_condition, 1}, {field_label, 8}, @@ -2974,7 +2988,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [889] = + [892] = {field_body, 11}, {field_condition, 1}, {field_label, 9}, @@ -2983,14 +2997,14 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [897] = + [900] = {field_body, 11}, {field_condition, 1}, {field_label, 8}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [903] = + [906] = {field_body, 11}, {field_condition, 1}, {field_label, 8}, @@ -2998,7 +3012,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [910] = + [913] = {field_body, 11}, {field_condition, 1}, {field_label, 9}, @@ -3006,7 +3020,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [917] = + [920] = {field_body, 11}, {field_condition, 1}, {field_label, 9}, @@ -3015,14 +3029,14 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [925] = + [928] = {field_body, 11}, {field_condition, 2}, {field_label, 8}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [931] = + [934] = {field_body, 11}, {field_condition, 2}, {field_label, 8}, @@ -3030,7 +3044,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [938] = + [941] = {field_body, 11}, {field_condition, 2}, {field_label, 9}, @@ -3038,7 +3052,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [945] = + [948] = {field_body, 11}, {field_condition, 2}, {field_label, 9}, @@ -3047,21 +3061,21 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [953] = + [956] = {field_body, 11}, {field_condition, 2}, {field_label, 8}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [959] = + [962] = {field_body, 11}, {field_condition, 2}, {field_label, 9}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [965] = + [968] = {field_body, 11}, {field_condition, 2}, {field_label, 9}, @@ -3069,7 +3083,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [972] = + [975] = {field_body, 11}, {field_condition, 2}, {field_update, 5}, @@ -3077,74 +3091,74 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 7}, {field_update, 8}, {field_update, 9}, - [979] = + [982] = {field_body, 11}, {field_index, 6}, {field_item, 4}, {field_iterable, 1}, {field_label, 8}, - [984] = + [987] = {field_body, 11}, {field_index, 6}, {field_item, 4}, {field_iterable, 1}, {field_label, 9}, - [989] = + [992] = {field_body, 11}, {field_index, 5}, {field_item, 3}, {field_iterable, 1}, {field_label, 8}, - [994] = + [997] = {field_body, 11}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, {field_label, 9}, - [999] = + [1002] = {field_body, 11}, {field_item, 5}, {field_iterable, 1}, {field_label, 8}, - [1003] = + [1006] = {field_body, 11}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, {field_label, 9}, - [1008] = + [1011] = {field_body, 11}, {field_item, 5}, {field_iterable, 2}, {field_label, 8}, - [1012] = + [1015] = {field_body, 11}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, {field_label, 8}, - [1017] = + [1020] = {field_body, 11}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, {field_label, 9}, - [1022] = + [1025] = {field_body, 11}, {field_index, 8}, {field_item, 6}, {field_iterable, 2}, - [1026] = + [1029] = {field_body, 11}, {field_item, 6}, {field_iterable, 2}, {field_label, 8}, - [1030] = + [1033] = {field_body, 11}, {field_item, 6}, {field_iterable, 2}, {field_label, 9}, - [1034] = + [1037] = {field_body, 12}, {field_condition, 1}, {field_label, 9}, @@ -3153,7 +3167,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1042] = + [1045] = {field_body, 12}, {field_condition, 1}, {field_label, 9}, @@ -3161,7 +3175,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1049] = + [1052] = {field_body, 12}, {field_condition, 1}, {field_label, 9}, @@ -3170,7 +3184,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1057] = + [1060] = {field_body, 12}, {field_condition, 1}, {field_label, 10}, @@ -3179,7 +3193,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1065] = + [1068] = {field_body, 12}, {field_condition, 2}, {field_label, 9}, @@ -3187,7 +3201,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1072] = + [1075] = {field_body, 12}, {field_condition, 2}, {field_label, 9}, @@ -3196,7 +3210,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1080] = + [1083] = {field_body, 12}, {field_condition, 2}, {field_label, 10}, @@ -3205,14 +3219,14 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1088] = + [1091] = {field_body, 12}, {field_condition, 2}, {field_label, 9}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1094] = + [1097] = {field_body, 12}, {field_condition, 2}, {field_label, 9}, @@ -3220,7 +3234,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1101] = + [1104] = {field_body, 12}, {field_condition, 2}, {field_label, 10}, @@ -3228,7 +3242,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1108] = + [1111] = {field_body, 12}, {field_condition, 2}, {field_label, 10}, @@ -3237,54 +3251,54 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 7}, {field_update, 8}, {field_update, 9}, - [1116] = + [1119] = {field_body, 12}, {field_index, 6}, {field_item, 4}, {field_iterable, 1}, {field_label, 9}, - [1121] = + [1124] = {field_body, 12}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, {field_label, 9}, - [1126] = + [1129] = {field_body, 12}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, {field_label, 10}, - [1131] = + [1134] = {field_body, 12}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, {field_label, 9}, - [1136] = + [1139] = {field_body, 12}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, {field_label, 10}, - [1141] = + [1144] = {field_body, 12}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, {field_label, 9}, - [1146] = + [1149] = {field_body, 12}, {field_index, 8}, {field_item, 6}, {field_iterable, 2}, {field_label, 10}, - [1151] = + [1154] = {field_body, 12}, {field_item, 6}, {field_iterable, 2}, {field_label, 9}, - [1155] = + [1158] = {field_body, 13}, {field_condition, 1}, {field_label, 10}, @@ -3293,7 +3307,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1163] = + [1166] = {field_body, 13}, {field_condition, 2}, {field_label, 10}, @@ -3302,7 +3316,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1171] = + [1174] = {field_body, 13}, {field_condition, 2}, {field_label, 10}, @@ -3310,7 +3324,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1178] = + [1181] = {field_body, 13}, {field_condition, 2}, {field_label, 10}, @@ -3319,7 +3333,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 7}, {field_update, 8}, {field_update, 9}, - [1186] = + [1189] = {field_body, 13}, {field_condition, 2}, {field_label, 11}, @@ -3328,31 +3342,31 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 7}, {field_update, 8}, {field_update, 9}, - [1194] = + [1197] = {field_body, 13}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, {field_label, 10}, - [1199] = + [1202] = {field_body, 13}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, {field_label, 10}, - [1204] = + [1207] = {field_body, 13}, {field_index, 8}, {field_item, 6}, {field_iterable, 2}, {field_label, 10}, - [1209] = + [1212] = {field_body, 13}, {field_index, 8}, {field_item, 6}, {field_iterable, 2}, {field_label, 11}, - [1214] = + [1217] = {field_body, 14}, {field_condition, 2}, {field_label, 11}, @@ -3361,7 +3375,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 7}, {field_update, 8}, {field_update, 9}, - [1222] = + [1225] = {field_body, 14}, {field_index, 8}, {field_item, 6}, @@ -3381,51 +3395,51 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 3, - [4] = 2, - [5] = 3, - [6] = 2, - [7] = 3, - [8] = 2, - [9] = 3, - [10] = 3, - [11] = 2, - [12] = 3, - [13] = 2, - [14] = 3, - [15] = 2, - [16] = 3, - [17] = 3, - [18] = 2, + [3] = 2, + [4] = 4, + [5] = 2, + [6] = 4, + [7] = 2, + [8] = 4, + [9] = 2, + [10] = 4, + [11] = 4, + [12] = 2, + [13] = 4, + [14] = 2, + [15] = 4, + [16] = 2, + [17] = 4, + [18] = 4, [19] = 2, [20] = 20, - [21] = 20, - [22] = 22, - [23] = 22, - [24] = 22, - [25] = 22, - [26] = 26, + [21] = 21, + [22] = 20, + [23] = 21, + [24] = 21, + [25] = 21, + [26] = 21, [27] = 20, [28] = 20, - [29] = 29, - [30] = 30, - [31] = 22, - [32] = 32, - [33] = 33, - [34] = 34, - [35] = 35, - [36] = 36, - [37] = 37, - [38] = 20, + [29] = 21, + [30] = 20, + [31] = 21, + [32] = 20, + [33] = 21, + [34] = 20, + [35] = 20, + [36] = 21, + [37] = 20, + [38] = 38, [39] = 39, - [40] = 22, - [41] = 20, - [42] = 22, - [43] = 20, - [44] = 22, - [45] = 20, - [46] = 22, - [47] = 20, + [40] = 40, + [41] = 41, + [42] = 42, + [43] = 43, + [44] = 44, + [45] = 45, + [46] = 46, + [47] = 47, [48] = 48, [49] = 49, [50] = 50, @@ -3447,7 +3461,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [66] = 66, [67] = 67, [68] = 68, - [69] = 48, + [69] = 69, [70] = 70, [71] = 71, [72] = 72, @@ -3457,328 +3471,328 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [76] = 76, [77] = 77, [78] = 78, - [79] = 79, - [80] = 80, - [81] = 81, - [82] = 82, - [83] = 83, - [84] = 84, - [85] = 85, - [86] = 86, - [87] = 87, - [88] = 49, - [89] = 50, - [90] = 51, - [91] = 52, - [92] = 53, - [93] = 54, - [94] = 55, - [95] = 57, - [96] = 58, - [97] = 59, - [98] = 60, - [99] = 61, - [100] = 63, - [101] = 64, - [102] = 65, - [103] = 66, - [104] = 67, - [105] = 68, - [106] = 48, - [107] = 73, - [108] = 74, - [109] = 75, - [110] = 76, - [111] = 77, - [112] = 78, - [113] = 79, - [114] = 83, - [115] = 84, - [116] = 85, - [117] = 86, - [118] = 49, - [119] = 50, - [120] = 51, - [121] = 52, - [122] = 53, - [123] = 54, - [124] = 55, - [125] = 57, - [126] = 58, - [127] = 59, - [128] = 60, - [129] = 61, - [130] = 63, - [131] = 64, - [132] = 65, - [133] = 66, - [134] = 67, - [135] = 68, + [79] = 39, + [80] = 40, + [81] = 41, + [82] = 42, + [83] = 47, + [84] = 48, + [85] = 49, + [86] = 50, + [87] = 51, + [88] = 52, + [89] = 53, + [90] = 57, + [91] = 58, + [92] = 59, + [93] = 60, + [94] = 62, + [95] = 64, + [96] = 65, + [97] = 67, + [98] = 68, + [99] = 69, + [100] = 70, + [101] = 71, + [102] = 72, + [103] = 73, + [104] = 74, + [105] = 75, + [106] = 76, + [107] = 77, + [108] = 78, + [109] = 39, + [110] = 40, + [111] = 41, + [112] = 42, + [113] = 47, + [114] = 48, + [115] = 49, + [116] = 50, + [117] = 51, + [118] = 52, + [119] = 53, + [120] = 57, + [121] = 58, + [122] = 59, + [123] = 60, + [124] = 62, + [125] = 125, + [126] = 64, + [127] = 64, + [128] = 65, + [129] = 65, + [130] = 67, + [131] = 68, + [132] = 69, + [133] = 70, + [134] = 71, + [135] = 72, [136] = 73, [137] = 74, [138] = 75, [139] = 76, [140] = 77, [141] = 78, - [142] = 79, - [143] = 83, - [144] = 84, - [145] = 85, - [146] = 86, - [147] = 49, - [148] = 50, - [149] = 51, - [150] = 52, - [151] = 53, - [152] = 54, - [153] = 55, - [154] = 57, - [155] = 58, - [156] = 59, - [157] = 60, - [158] = 61, - [159] = 63, - [160] = 64, - [161] = 65, - [162] = 66, - [163] = 67, - [164] = 68, - [165] = 48, - [166] = 73, - [167] = 74, - [168] = 75, - [169] = 76, - [170] = 77, - [171] = 78, - [172] = 79, - [173] = 83, - [174] = 84, - [175] = 85, - [176] = 49, - [177] = 177, - [178] = 50, - [179] = 51, - [180] = 52, - [181] = 53, - [182] = 54, - [183] = 55, + [142] = 39, + [143] = 40, + [144] = 41, + [145] = 42, + [146] = 47, + [147] = 48, + [148] = 49, + [149] = 50, + [150] = 51, + [151] = 52, + [152] = 53, + [153] = 57, + [154] = 58, + [155] = 59, + [156] = 60, + [157] = 62, + [158] = 64, + [159] = 65, + [160] = 67, + [161] = 67, + [162] = 68, + [163] = 69, + [164] = 70, + [165] = 71, + [166] = 72, + [167] = 73, + [168] = 74, + [169] = 75, + [170] = 76, + [171] = 77, + [172] = 78, + [173] = 39, + [174] = 40, + [175] = 41, + [176] = 42, + [177] = 47, + [178] = 48, + [179] = 49, + [180] = 50, + [181] = 51, + [182] = 52, + [183] = 53, [184] = 57, [185] = 58, [186] = 59, [187] = 60, - [188] = 61, - [189] = 63, - [190] = 64, - [191] = 65, - [192] = 66, - [193] = 67, - [194] = 68, - [195] = 48, - [196] = 73, - [197] = 74, - [198] = 75, - [199] = 76, - [200] = 77, - [201] = 78, - [202] = 79, - [203] = 83, - [204] = 84, - [205] = 85, - [206] = 86, - [207] = 49, - [208] = 50, - [209] = 51, - [210] = 52, - [211] = 54, - [212] = 55, - [213] = 60, - [214] = 50, - [215] = 51, - [216] = 52, - [217] = 54, - [218] = 55, - [219] = 60, - [220] = 50, - [221] = 51, - [222] = 52, - [223] = 54, - [224] = 55, - [225] = 60, - [226] = 50, - [227] = 51, - [228] = 52, - [229] = 54, - [230] = 55, - [231] = 60, - [232] = 53, - [233] = 57, - [234] = 58, - [235] = 59, - [236] = 61, - [237] = 63, - [238] = 64, - [239] = 65, - [240] = 66, - [241] = 67, - [242] = 68, - [243] = 48, - [244] = 73, - [245] = 74, - [246] = 75, - [247] = 76, - [248] = 77, - [249] = 78, - [250] = 79, - [251] = 83, - [252] = 84, - [253] = 85, - [254] = 86, - [255] = 49, - [256] = 53, - [257] = 57, - [258] = 58, - [259] = 59, - [260] = 61, - [261] = 63, - [262] = 64, - [263] = 65, - [264] = 66, - [265] = 67, - [266] = 68, - [267] = 48, - [268] = 73, - [269] = 74, - [270] = 75, - [271] = 76, - [272] = 77, - [273] = 78, - [274] = 79, - [275] = 83, - [276] = 84, - [277] = 85, - [278] = 86, - [279] = 49, - [280] = 53, - [281] = 57, - [282] = 58, - [283] = 59, - [284] = 61, - [285] = 63, - [286] = 64, - [287] = 65, - [288] = 66, - [289] = 67, - [290] = 68, - [291] = 48, - [292] = 73, - [293] = 74, - [294] = 75, - [295] = 76, - [296] = 77, - [297] = 78, - [298] = 79, - [299] = 83, - [300] = 84, - [301] = 85, - [302] = 86, - [303] = 49, - [304] = 304, - [305] = 53, - [306] = 57, - [307] = 58, - [308] = 59, - [309] = 61, - [310] = 63, - [311] = 64, - [312] = 65, - [313] = 66, - [314] = 67, - [315] = 68, + [188] = 62, + [189] = 68, + [190] = 69, + [191] = 64, + [192] = 65, + [193] = 70, + [194] = 67, + [195] = 70, + [196] = 74, + [197] = 197, + [198] = 198, + [199] = 64, + [200] = 65, + [201] = 201, + [202] = 202, + [203] = 203, + [204] = 67, + [205] = 69, + [206] = 70, + [207] = 207, + [208] = 74, + [209] = 71, + [210] = 72, + [211] = 64, + [212] = 65, + [213] = 67, + [214] = 69, + [215] = 70, + [216] = 74, + [217] = 73, + [218] = 64, + [219] = 65, + [220] = 67, + [221] = 69, + [222] = 70, + [223] = 74, + [224] = 74, + [225] = 75, + [226] = 68, + [227] = 71, + [228] = 72, + [229] = 73, + [230] = 75, + [231] = 76, + [232] = 77, + [233] = 78, + [234] = 39, + [235] = 40, + [236] = 41, + [237] = 42, + [238] = 47, + [239] = 48, + [240] = 49, + [241] = 50, + [242] = 51, + [243] = 52, + [244] = 53, + [245] = 57, + [246] = 58, + [247] = 59, + [248] = 60, + [249] = 62, + [250] = 250, + [251] = 251, + [252] = 68, + [253] = 71, + [254] = 72, + [255] = 73, + [256] = 75, + [257] = 76, + [258] = 77, + [259] = 78, + [260] = 39, + [261] = 40, + [262] = 41, + [263] = 42, + [264] = 47, + [265] = 48, + [266] = 49, + [267] = 50, + [268] = 51, + [269] = 52, + [270] = 53, + [271] = 57, + [272] = 58, + [273] = 59, + [274] = 60, + [275] = 62, + [276] = 68, + [277] = 71, + [278] = 72, + [279] = 73, + [280] = 75, + [281] = 76, + [282] = 77, + [283] = 78, + [284] = 39, + [285] = 40, + [286] = 41, + [287] = 42, + [288] = 47, + [289] = 48, + [290] = 49, + [291] = 50, + [292] = 51, + [293] = 52, + [294] = 53, + [295] = 57, + [296] = 58, + [297] = 59, + [298] = 60, + [299] = 62, + [300] = 300, + [301] = 76, + [302] = 77, + [303] = 68, + [304] = 71, + [305] = 72, + [306] = 73, + [307] = 75, + [308] = 76, + [309] = 77, + [310] = 78, + [311] = 39, + [312] = 40, + [313] = 41, + [314] = 42, + [315] = 47, [316] = 48, - [317] = 73, - [318] = 74, - [319] = 75, - [320] = 76, - [321] = 77, - [322] = 78, - [323] = 79, - [324] = 83, - [325] = 84, - [326] = 85, - [327] = 86, - [328] = 86, + [317] = 49, + [318] = 50, + [319] = 51, + [320] = 52, + [321] = 53, + [322] = 57, + [323] = 58, + [324] = 59, + [325] = 60, + [326] = 62, + [327] = 78, + [328] = 69, [329] = 329, - [330] = 330, - [331] = 330, + [330] = 329, + [331] = 331, [332] = 332, [333] = 333, [334] = 334, - [335] = 335, - [336] = 329, - [337] = 330, - [338] = 334, - [339] = 330, - [340] = 332, - [341] = 333, - [342] = 335, - [343] = 329, - [344] = 334, - [345] = 330, - [346] = 332, - [347] = 333, - [348] = 335, - [349] = 329, - [350] = 334, - [351] = 330, - [352] = 332, - [353] = 333, - [354] = 332, - [355] = 333, - [356] = 335, - [357] = 329, - [358] = 334, - [359] = 332, - [360] = 333, - [361] = 330, - [362] = 335, - [363] = 329, - [364] = 334, - [365] = 332, - [366] = 333, - [367] = 335, - [368] = 329, - [369] = 334, - [370] = 330, - [371] = 332, - [372] = 333, - [373] = 335, + [335] = 329, + [336] = 331, + [337] = 334, + [338] = 338, + [339] = 329, + [340] = 329, + [341] = 331, + [342] = 338, + [343] = 332, + [344] = 333, + [345] = 334, + [346] = 334, + [347] = 338, + [348] = 332, + [349] = 333, + [350] = 331, + [351] = 332, + [352] = 329, + [353] = 331, + [354] = 333, + [355] = 332, + [356] = 333, + [357] = 334, + [358] = 338, + [359] = 333, + [360] = 338, + [361] = 331, + [362] = 338, + [363] = 332, + [364] = 333, + [365] = 334, + [366] = 329, + [367] = 331, + [368] = 332, + [369] = 333, + [370] = 338, + [371] = 334, + [372] = 334, + [373] = 329, [374] = 329, - [375] = 334, - [376] = 332, - [377] = 333, - [378] = 335, - [379] = 329, - [380] = 334, - [381] = 330, - [382] = 335, + [375] = 331, + [376] = 331, + [377] = 338, + [378] = 332, + [379] = 333, + [380] = 338, + [381] = 332, + [382] = 334, [383] = 383, - [384] = 30, - [385] = 32, - [386] = 33, - [387] = 35, - [388] = 36, - [389] = 37, + [384] = 383, + [385] = 38, + [386] = 207, + [387] = 197, + [388] = 198, + [389] = 389, [390] = 390, - [391] = 383, - [392] = 392, - [393] = 390, - [394] = 394, + [391] = 391, + [392] = 203, + [393] = 202, + [394] = 389, [395] = 395, [396] = 396, [397] = 397, - [398] = 395, - [399] = 399, - [400] = 397, + [398] = 398, + [399] = 397, + [400] = 398, [401] = 401, [402] = 402, [403] = 403, @@ -3909,9 +3923,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [528] = 528, [529] = 529, [530] = 530, - [531] = 531, + [531] = 529, [532] = 532, - [533] = 528, + [533] = 533, [534] = 534, [535] = 535, [536] = 536, @@ -3929,33 +3943,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [548] = 548, [549] = 383, [550] = 550, - [551] = 550, - [552] = 548, - [553] = 548, - [554] = 550, - [555] = 550, - [556] = 548, - [557] = 550, - [558] = 541, - [559] = 390, - [560] = 534, - [561] = 542, - [562] = 543, - [563] = 544, - [564] = 536, - [565] = 537, - [566] = 538, - [567] = 567, - [568] = 548, - [569] = 539, - [570] = 530, - [571] = 528, - [572] = 535, - [573] = 540, - [574] = 528, - [575] = 528, - [576] = 528, - [577] = 567, + [551] = 551, + [552] = 550, + [553] = 551, + [554] = 551, + [555] = 529, + [556] = 550, + [557] = 551, + [558] = 550, + [559] = 536, + [560] = 551, + [561] = 529, + [562] = 532, + [563] = 563, + [564] = 544, + [565] = 540, + [566] = 545, + [567] = 542, + [568] = 539, + [569] = 389, + [570] = 550, + [571] = 529, + [572] = 529, + [573] = 537, + [574] = 543, + [575] = 533, + [576] = 534, + [577] = 535, [578] = 578, [579] = 579, [580] = 580, @@ -3963,186 +3977,186 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [582] = 582, [583] = 583, [584] = 584, - [585] = 578, - [586] = 579, - [587] = 587, - [588] = 588, - [589] = 589, - [590] = 590, - [591] = 528, - [592] = 592, - [593] = 593, - [594] = 594, - [595] = 583, - [596] = 584, - [597] = 578, - [598] = 579, - [599] = 581, - [600] = 582, - [601] = 593, - [602] = 594, - [603] = 593, - [604] = 583, - [605] = 584, - [606] = 579, - [607] = 581, - [608] = 582, - [609] = 593, - [610] = 594, - [611] = 593, - [612] = 594, - [613] = 583, - [614] = 584, - [615] = 578, - [616] = 579, - [617] = 581, - [618] = 582, - [619] = 594, - [620] = 593, - [621] = 582, - [622] = 583, - [623] = 584, - [624] = 578, + [585] = 585, + [586] = 586, + [587] = 585, + [588] = 581, + [589] = 582, + [590] = 583, + [591] = 584, + [592] = 579, + [593] = 580, + [594] = 585, + [595] = 586, + [596] = 581, + [597] = 582, + [598] = 583, + [599] = 584, + [600] = 579, + [601] = 580, + [602] = 585, + [603] = 586, + [604] = 581, + [605] = 582, + [606] = 583, + [607] = 584, + [608] = 586, + [609] = 579, + [610] = 579, + [611] = 580, + [612] = 580, + [613] = 563, + [614] = 614, + [615] = 579, + [616] = 580, + [617] = 585, + [618] = 586, + [619] = 581, + [620] = 579, + [621] = 583, + [622] = 584, + [623] = 623, + [624] = 624, [625] = 579, - [626] = 581, - [627] = 582, - [628] = 593, - [629] = 594, - [630] = 583, - [631] = 584, - [632] = 581, - [633] = 583, - [634] = 584, - [635] = 578, - [636] = 579, - [637] = 582, - [638] = 578, - [639] = 581, - [640] = 582, - [641] = 529, - [642] = 593, - [643] = 594, + [626] = 580, + [627] = 529, + [628] = 585, + [629] = 586, + [630] = 585, + [631] = 586, + [632] = 585, + [633] = 586, + [634] = 581, + [635] = 582, + [636] = 583, + [637] = 584, + [638] = 579, + [639] = 580, + [640] = 640, + [641] = 641, + [642] = 581, + [643] = 582, [644] = 583, [645] = 584, - [646] = 578, - [647] = 579, - [648] = 581, - [649] = 582, - [650] = 594, - [651] = 579, - [652] = 528, - [653] = 593, - [654] = 583, - [655] = 584, - [656] = 578, - [657] = 581, - [658] = 594, - [659] = 531, - [660] = 660, - [661] = 660, - [662] = 660, - [663] = 660, - [664] = 660, - [665] = 660, - [666] = 660, - [667] = 660, - [668] = 528, - [669] = 660, + [646] = 580, + [647] = 581, + [648] = 582, + [649] = 583, + [650] = 584, + [651] = 586, + [652] = 584, + [653] = 529, + [654] = 585, + [655] = 581, + [656] = 582, + [657] = 583, + [658] = 582, + [659] = 659, + [660] = 659, + [661] = 659, + [662] = 530, + [663] = 659, + [664] = 659, + [665] = 659, + [666] = 659, + [667] = 529, + [668] = 659, + [669] = 659, [670] = 670, [671] = 670, - [672] = 670, + [672] = 541, [673] = 670, [674] = 670, [675] = 670, [676] = 670, [677] = 670, [678] = 670, - [679] = 679, + [679] = 670, [680] = 680, [681] = 681, [682] = 682, - [683] = 682, - [684] = 35, - [685] = 37, - [686] = 36, - [687] = 682, - [688] = 30, - [689] = 33, + [683] = 683, + [684] = 683, + [685] = 685, + [686] = 683, + [687] = 685, + [688] = 685, + [689] = 203, [690] = 690, - [691] = 690, - [692] = 690, - [693] = 32, - [694] = 694, - [695] = 539, - [696] = 696, - [697] = 697, - [698] = 698, - [699] = 530, - [700] = 700, - [701] = 701, - [702] = 540, - [703] = 541, - [704] = 542, - [705] = 534, - [706] = 544, - [707] = 543, - [708] = 694, - [709] = 709, + [691] = 207, + [692] = 692, + [693] = 690, + [694] = 38, + [695] = 690, + [696] = 197, + [697] = 198, + [698] = 692, + [699] = 699, + [700] = 690, + [701] = 692, + [702] = 702, + [703] = 703, + [704] = 704, + [705] = 705, + [706] = 706, + [707] = 707, + [708] = 692, + [709] = 202, [710] = 710, [711] = 711, - [712] = 694, + [712] = 712, [713] = 713, - [714] = 694, - [715] = 715, - [716] = 694, - [717] = 709, - [718] = 567, - [719] = 709, - [720] = 535, - [721] = 536, - [722] = 537, - [723] = 723, + [714] = 690, + [715] = 692, + [716] = 716, + [717] = 717, + [718] = 718, + [719] = 716, + [720] = 545, + [721] = 563, + [722] = 722, + [723] = 543, [724] = 724, - [725] = 538, - [726] = 709, - [727] = 709, - [728] = 728, - [729] = 729, - [730] = 728, + [725] = 533, + [726] = 716, + [727] = 722, + [728] = 383, + [729] = 716, + [730] = 722, [731] = 731, - [732] = 35, - [733] = 729, - [734] = 734, - [735] = 735, - [736] = 32, - [737] = 37, - [738] = 36, - [739] = 729, + [732] = 732, + [733] = 733, + [734] = 542, + [735] = 534, + [736] = 736, + [737] = 722, + [738] = 536, + [739] = 539, [740] = 740, - [741] = 33, - [742] = 742, - [743] = 743, - [744] = 729, - [745] = 728, - [746] = 746, - [747] = 728, + [741] = 537, + [742] = 716, + [743] = 722, + [744] = 544, + [745] = 722, + [746] = 722, + [747] = 747, [748] = 748, - [749] = 749, + [749] = 716, [750] = 750, [751] = 751, - [752] = 729, - [753] = 383, - [754] = 729, - [755] = 755, + [752] = 752, + [753] = 716, + [754] = 722, + [755] = 540, [756] = 756, - [757] = 728, - [758] = 728, - [759] = 729, - [760] = 728, - [761] = 728, - [762] = 679, - [763] = 729, - [764] = 30, + [757] = 532, + [758] = 716, + [759] = 535, + [760] = 760, + [761] = 761, + [762] = 762, + [763] = 763, + [764] = 764, [765] = 765, [766] = 766, [767] = 767, @@ -4150,42 +4164,42 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [769] = 769, [770] = 770, [771] = 771, - [772] = 767, - [773] = 767, - [774] = 767, - [775] = 383, - [776] = 776, - [777] = 777, + [772] = 772, + [773] = 773, + [774] = 38, + [775] = 197, + [776] = 773, + [777] = 198, [778] = 778, [779] = 779, - [780] = 780, + [780] = 773, [781] = 781, - [782] = 782, - [783] = 783, + [782] = 383, + [783] = 207, [784] = 784, [785] = 785, - [786] = 767, + [786] = 786, [787] = 787, [788] = 788, [789] = 789, - [790] = 767, - [791] = 767, + [790] = 790, + [791] = 202, [792] = 792, [793] = 793, - [794] = 794, - [795] = 795, - [796] = 796, - [797] = 797, + [794] = 773, + [795] = 773, + [796] = 773, + [797] = 203, [798] = 798, - [799] = 799, - [800] = 800, + [799] = 773, + [800] = 681, [801] = 801, - [802] = 802, - [803] = 803, - [804] = 767, + [802] = 773, + [803] = 383, + [804] = 804, [805] = 805, [806] = 806, - [807] = 383, + [807] = 807, [808] = 808, [809] = 809, [810] = 810, @@ -4194,199 +4208,199 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [813] = 813, [814] = 814, [815] = 815, - [816] = 390, + [816] = 816, [817] = 817, [818] = 818, - [819] = 819, - [820] = 815, - [821] = 821, - [822] = 822, + [819] = 815, + [820] = 816, + [821] = 817, + [822] = 818, [823] = 823, - [824] = 817, + [824] = 824, [825] = 825, [826] = 826, - [827] = 827, - [828] = 828, + [827] = 824, + [828] = 815, [829] = 829, - [830] = 819, - [831] = 818, - [832] = 815, - [833] = 821, - [834] = 834, - [835] = 814, - [836] = 815, - [837] = 837, - [838] = 823, - [839] = 839, - [840] = 827, - [841] = 826, - [842] = 837, - [843] = 839, - [844] = 839, - [845] = 839, - [846] = 846, - [847] = 834, - [848] = 837, - [849] = 827, - [850] = 839, - [851] = 851, - [852] = 837, - [853] = 839, + [830] = 830, + [831] = 831, + [832] = 832, + [833] = 833, + [834] = 813, + [835] = 816, + [836] = 836, + [837] = 817, + [838] = 838, + [839] = 831, + [840] = 823, + [841] = 825, + [842] = 842, + [843] = 826, + [844] = 844, + [845] = 826, + [846] = 832, + [847] = 829, + [848] = 844, + [849] = 830, + [850] = 832, + [851] = 833, + [852] = 813, + [853] = 836, [854] = 854, - [855] = 817, - [856] = 856, + [855] = 838, + [856] = 823, [857] = 857, - [858] = 846, - [859] = 812, - [860] = 819, - [861] = 821, - [862] = 837, - [863] = 823, - [864] = 856, - [865] = 825, - [866] = 813, - [867] = 867, + [858] = 858, + [859] = 859, + [860] = 814, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 815, + [865] = 865, + [866] = 816, + [867] = 829, [868] = 868, - [869] = 813, - [870] = 825, - [871] = 871, + [869] = 869, + [870] = 814, + [871] = 815, [872] = 872, - [873] = 814, - [874] = 874, - [875] = 815, - [876] = 826, - [877] = 817, - [878] = 383, - [879] = 812, - [880] = 822, - [881] = 817, - [882] = 874, - [883] = 856, - [884] = 884, - [885] = 885, - [886] = 886, - [887] = 839, - [888] = 867, - [889] = 884, - [890] = 886, - [891] = 812, - [892] = 822, - [893] = 819, + [873] = 816, + [874] = 817, + [875] = 818, + [876] = 817, + [877] = 818, + [878] = 813, + [879] = 879, + [880] = 854, + [881] = 858, + [882] = 824, + [883] = 829, + [884] = 824, + [885] = 825, + [886] = 830, + [887] = 832, + [888] = 858, + [889] = 826, + [890] = 825, + [891] = 815, + [892] = 816, + [893] = 817, [894] = 818, - [895] = 834, - [896] = 813, - [897] = 884, - [898] = 886, - [899] = 834, - [900] = 814, - [901] = 815, - [902] = 822, - [903] = 817, - [904] = 818, - [905] = 819, - [906] = 818, - [907] = 821, - [908] = 884, - [909] = 823, - [910] = 819, - [911] = 825, - [912] = 813, - [913] = 913, - [914] = 813, - [915] = 827, - [916] = 826, - [917] = 821, - [918] = 814, - [919] = 815, - [920] = 817, - [921] = 819, - [922] = 821, - [923] = 823, - [924] = 825, - [925] = 821, - [926] = 823, - [927] = 825, - [928] = 846, - [929] = 929, - [930] = 930, - [931] = 884, - [932] = 812, - [933] = 814, - [934] = 846, - [935] = 846, - [936] = 383, - [937] = 837, - [938] = 856, - [939] = 826, - [940] = 940, - [941] = 886, - [942] = 823, - [943] = 943, - [944] = 825, - [945] = 822, - [946] = 839, - [947] = 884, - [948] = 846, - [949] = 886, - [950] = 837, - [951] = 856, - [952] = 837, - [953] = 884, - [954] = 886, - [955] = 812, - [956] = 822, - [957] = 886, - [958] = 818, - [959] = 834, - [960] = 813, - [961] = 814, - [962] = 815, - [963] = 817, - [964] = 819, - [965] = 821, - [966] = 823, - [967] = 825, - [968] = 846, - [969] = 856, - [970] = 846, - [971] = 812, - [972] = 837, - [973] = 822, - [974] = 834, - [975] = 856, - [976] = 818, - [977] = 814, - [978] = 856, - [979] = 834, - [980] = 818, - [981] = 871, - [982] = 872, - [983] = 839, - [984] = 813, - [985] = 884, - [986] = 886, - [987] = 812, - [988] = 822, - [989] = 827, - [990] = 834, - [991] = 390, - [992] = 390, - [993] = 390, - [994] = 383, - [995] = 390, - [996] = 996, - [997] = 997, - [998] = 681, - [999] = 390, - [1000] = 36, - [1001] = 33, - [1002] = 35, - [1003] = 37, - [1004] = 32, - [1005] = 30, - [1006] = 1006, - [1007] = 1007, - [1008] = 1008, + [895] = 895, + [896] = 824, + [897] = 825, + [898] = 826, + [899] = 826, + [900] = 836, + [901] = 838, + [902] = 823, + [903] = 836, + [904] = 854, + [905] = 858, + [906] = 858, + [907] = 833, + [908] = 854, + [909] = 857, + [910] = 814, + [911] = 844, + [912] = 815, + [913] = 814, + [914] = 817, + [915] = 818, + [916] = 895, + [917] = 824, + [918] = 825, + [919] = 826, + [920] = 844, + [921] = 833, + [922] = 833, + [923] = 830, + [924] = 854, + [925] = 858, + [926] = 818, + [927] = 815, + [928] = 816, + [929] = 817, + [930] = 818, + [931] = 931, + [932] = 824, + [933] = 825, + [934] = 826, + [935] = 829, + [936] = 830, + [937] = 832, + [938] = 813, + [939] = 836, + [940] = 838, + [941] = 823, + [942] = 833, + [943] = 829, + [944] = 833, + [945] = 830, + [946] = 854, + [947] = 832, + [948] = 854, + [949] = 829, + [950] = 830, + [951] = 829, + [952] = 832, + [953] = 830, + [954] = 813, + [955] = 832, + [956] = 836, + [957] = 813, + [958] = 838, + [959] = 836, + [960] = 823, + [961] = 813, + [962] = 838, + [963] = 836, + [964] = 833, + [965] = 838, + [966] = 861, + [967] = 823, + [968] = 857, + [969] = 823, + [970] = 970, + [971] = 824, + [972] = 838, + [973] = 825, + [974] = 814, + [975] = 858, + [976] = 869, + [977] = 857, + [978] = 978, + [979] = 979, + [980] = 858, + [981] = 383, + [982] = 854, + [983] = 814, + [984] = 844, + [985] = 857, + [986] = 854, + [987] = 814, + [988] = 814, + [989] = 383, + [990] = 816, + [991] = 383, + [992] = 389, + [993] = 389, + [994] = 994, + [995] = 995, + [996] = 389, + [997] = 389, + [998] = 389, + [999] = 680, + [1000] = 389, + [1001] = 1001, + [1002] = 1002, + [1003] = 207, + [1004] = 197, + [1005] = 202, + [1006] = 203, + [1007] = 198, + [1008] = 38, [1009] = 1009, [1010] = 1010, [1011] = 1011, @@ -4616,30 +4630,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1235] = 1235, [1236] = 1236, [1237] = 1237, - [1238] = 1236, + [1238] = 1238, [1239] = 1239, [1240] = 1240, - [1241] = 1239, - [1242] = 1240, + [1241] = 1235, + [1242] = 1236, [1243] = 1237, - [1244] = 1235, - [1245] = 1234, - [1246] = 1246, + [1244] = 1238, + [1245] = 1239, + [1246] = 1240, [1247] = 1247, [1248] = 1248, [1249] = 1249, [1250] = 1250, - [1251] = 680, - [1252] = 1252, - [1253] = 1252, - [1254] = 1252, - [1255] = 1234, - [1256] = 1235, - [1257] = 1236, - [1258] = 1237, - [1259] = 1239, + [1251] = 1251, + [1252] = 682, + [1253] = 1253, + [1254] = 1253, + [1255] = 1253, + [1256] = 1236, + [1257] = 1238, + [1258] = 1239, + [1259] = 1237, [1260] = 1240, - [1261] = 1261, + [1261] = 1235, [1262] = 1262, [1263] = 1263, [1264] = 1264, @@ -4667,76 +4681,76 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1286] = 1286, [1287] = 1287, [1288] = 1288, - [1289] = 1285, + [1289] = 1289, [1290] = 1290, - [1291] = 1290, + [1291] = 1291, [1292] = 1292, [1293] = 1293, [1294] = 1294, - [1295] = 1286, - [1296] = 1292, - [1297] = 1293, - [1298] = 1294, + [1295] = 1289, + [1296] = 1296, + [1297] = 1296, + [1298] = 1298, [1299] = 1299, - [1300] = 1300, + [1300] = 1290, [1301] = 1301, - [1302] = 1287, - [1303] = 1299, - [1304] = 1304, - [1305] = 1305, - [1306] = 1301, - [1307] = 1307, - [1308] = 1304, - [1309] = 1309, - [1310] = 1305, - [1311] = 1311, + [1302] = 1302, + [1303] = 1303, + [1304] = 1292, + [1305] = 1302, + [1306] = 1298, + [1307] = 1301, + [1308] = 1299, + [1309] = 1303, + [1310] = 1310, + [1311] = 1293, [1312] = 1312, - [1313] = 1309, + [1313] = 1310, [1314] = 1314, [1315] = 1315, - [1316] = 1311, - [1317] = 1312, - [1318] = 1300, - [1319] = 1319, + [1316] = 1315, + [1317] = 1288, + [1318] = 1294, + [1319] = 1291, [1320] = 1320, [1321] = 1321, [1322] = 1322, - [1323] = 1319, + [1323] = 1323, [1324] = 1324, [1325] = 1325, [1326] = 1326, [1327] = 1327, - [1328] = 1322, + [1328] = 1328, [1329] = 1329, [1330] = 1330, [1331] = 1331, [1332] = 1332, [1333] = 1333, - [1334] = 1334, - [1335] = 1335, - [1336] = 1320, - [1337] = 1327, - [1338] = 1331, - [1339] = 1325, + [1334] = 1331, + [1335] = 1330, + [1336] = 1332, + [1337] = 1337, + [1338] = 1320, + [1339] = 1321, [1340] = 1340, [1341] = 1341, - [1342] = 1330, - [1343] = 1341, - [1344] = 1344, - [1345] = 1332, - [1346] = 1335, - [1347] = 1334, - [1348] = 1326, + [1342] = 1333, + [1343] = 1343, + [1344] = 1337, + [1345] = 1340, + [1346] = 1343, + [1347] = 1347, + [1348] = 1348, [1349] = 1349, - [1350] = 1324, - [1351] = 1351, - [1352] = 1352, - [1353] = 1351, - [1354] = 1354, - [1355] = 1329, - [1356] = 1344, - [1357] = 1349, - [1358] = 1358, + [1350] = 1350, + [1351] = 1322, + [1352] = 1347, + [1353] = 1324, + [1354] = 1325, + [1355] = 1326, + [1356] = 1349, + [1357] = 1327, + [1358] = 1348, [1359] = 1359, [1360] = 1360, [1361] = 1361, @@ -4747,103 +4761,103 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1366] = 1366, [1367] = 1367, [1368] = 1368, - [1369] = 536, - [1370] = 538, - [1371] = 530, - [1372] = 540, - [1373] = 541, - [1374] = 542, - [1375] = 534, - [1376] = 535, - [1377] = 544, - [1378] = 543, - [1379] = 537, - [1380] = 539, - [1381] = 535, - [1382] = 536, - [1383] = 537, - [1384] = 543, - [1385] = 540, + [1369] = 1369, + [1370] = 542, + [1371] = 545, + [1372] = 539, + [1373] = 537, + [1374] = 543, + [1375] = 533, + [1376] = 534, + [1377] = 535, + [1378] = 536, + [1379] = 532, + [1380] = 544, + [1381] = 540, + [1382] = 532, + [1383] = 543, + [1384] = 532, + [1385] = 534, [1386] = 540, - [1387] = 536, - [1388] = 541, - [1389] = 530, + [1387] = 535, + [1388] = 540, + [1389] = 545, [1390] = 542, - [1391] = 539, - [1392] = 530, - [1393] = 538, - [1394] = 534, - [1395] = 534, - [1396] = 537, - [1397] = 567, - [1398] = 539, - [1399] = 538, - [1400] = 544, - [1401] = 535, - [1402] = 543, - [1403] = 544, - [1404] = 541, - [1405] = 542, - [1406] = 567, - [1407] = 567, - [1408] = 1408, - [1409] = 567, - [1410] = 567, + [1391] = 533, + [1392] = 544, + [1393] = 545, + [1394] = 542, + [1395] = 539, + [1396] = 544, + [1397] = 537, + [1398] = 543, + [1399] = 539, + [1400] = 533, + [1401] = 537, + [1402] = 563, + [1403] = 534, + [1404] = 535, + [1405] = 536, + [1406] = 536, + [1407] = 563, + [1408] = 563, + [1409] = 1409, + [1410] = 563, [1411] = 1411, - [1412] = 1412, - [1413] = 567, - [1414] = 1414, + [1412] = 563, + [1413] = 1413, + [1414] = 563, [1415] = 1415, - [1416] = 1415, - [1417] = 1417, - [1418] = 1415, - [1419] = 1419, - [1420] = 1420, - [1421] = 1414, - [1422] = 1414, - [1423] = 1423, - [1424] = 1414, - [1425] = 1415, - [1426] = 1414, - [1427] = 1415, - [1428] = 1428, - [1429] = 681, + [1416] = 1416, + [1417] = 1415, + [1418] = 1418, + [1419] = 1416, + [1420] = 1416, + [1421] = 1415, + [1422] = 1415, + [1423] = 1416, + [1424] = 1416, + [1425] = 1425, + [1426] = 1426, + [1427] = 1427, + [1428] = 1415, + [1429] = 1429, [1430] = 1430, [1431] = 1431, - [1432] = 1432, + [1432] = 680, [1433] = 1433, [1434] = 1434, [1435] = 1435, - [1436] = 1436, + [1436] = 535, [1437] = 1437, [1438] = 1438, - [1439] = 1439, - [1440] = 681, - [1441] = 535, - [1442] = 536, - [1443] = 537, - [1444] = 538, - [1445] = 539, - [1446] = 530, - [1447] = 540, - [1448] = 541, - [1449] = 542, - [1450] = 534, - [1451] = 544, - [1452] = 543, - [1453] = 1453, - [1454] = 1438, + [1439] = 532, + [1440] = 537, + [1441] = 543, + [1442] = 1442, + [1443] = 1443, + [1444] = 1442, + [1445] = 544, + [1446] = 1437, + [1447] = 533, + [1448] = 534, + [1449] = 540, + [1450] = 1438, + [1451] = 545, + [1452] = 1452, + [1453] = 536, + [1454] = 1454, [1455] = 1455, - [1456] = 1436, - [1457] = 1453, - [1458] = 1437, - [1459] = 1455, - [1460] = 1460, + [1456] = 1455, + [1457] = 680, + [1458] = 542, + [1459] = 539, + [1460] = 1452, [1461] = 1461, - [1462] = 681, + [1462] = 1462, [1463] = 1463, [1464] = 1464, - [1465] = 1465, + [1465] = 680, [1466] = 1466, [1467] = 1467, [1468] = 1468, @@ -4858,19 +4872,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1477] = 1477, [1478] = 1478, [1479] = 1479, - [1480] = 535, - [1481] = 536, - [1482] = 537, - [1483] = 538, - [1484] = 539, - [1485] = 530, - [1486] = 540, - [1487] = 541, - [1488] = 542, - [1489] = 534, - [1490] = 544, - [1491] = 543, - [1492] = 1492, + [1480] = 1480, + [1481] = 545, + [1482] = 542, + [1483] = 539, + [1484] = 535, + [1485] = 537, + [1486] = 543, + [1487] = 533, + [1488] = 534, + [1489] = 536, + [1490] = 532, + [1491] = 544, + [1492] = 540, [1493] = 1493, [1494] = 1494, [1495] = 1495, @@ -4897,41 +4911,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1516] = 1516, [1517] = 1517, [1518] = 1518, - [1519] = 1234, - [1520] = 1235, - [1521] = 1237, - [1522] = 1236, - [1523] = 1240, - [1524] = 1239, - [1525] = 1235, + [1519] = 1519, + [1520] = 1238, + [1521] = 1235, + [1522] = 1522, + [1523] = 1239, + [1524] = 1240, + [1525] = 1238, [1526] = 1526, - [1527] = 1527, - [1528] = 1236, + [1527] = 1237, + [1528] = 1522, [1529] = 1529, - [1530] = 1239, - [1531] = 1240, + [1530] = 1235, + [1531] = 1236, [1532] = 1532, [1533] = 1237, - [1534] = 1234, - [1535] = 1529, - [1536] = 1536, + [1534] = 1236, + [1535] = 1240, + [1536] = 1239, [1537] = 1537, [1538] = 1538, - [1539] = 1236, - [1540] = 1239, - [1541] = 1234, + [1539] = 1539, + [1540] = 1540, + [1541] = 1541, [1542] = 1542, - [1543] = 1236, - [1544] = 1239, + [1543] = 1543, + [1544] = 1544, [1545] = 1545, - [1546] = 1240, - [1547] = 1240, - [1548] = 1235, - [1549] = 1237, + [1546] = 1546, + [1547] = 1547, + [1548] = 1548, + [1549] = 1549, [1550] = 1550, [1551] = 1551, - [1552] = 1235, - [1553] = 1237, + [1552] = 1552, + [1553] = 1553, [1554] = 1554, [1555] = 1555, [1556] = 1556, @@ -4946,17 +4960,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1565] = 1565, [1566] = 1566, [1567] = 1567, - [1568] = 1568, + [1568] = 1236, [1569] = 1569, [1570] = 1570, [1571] = 1571, - [1572] = 1572, + [1572] = 1237, [1573] = 1573, - [1574] = 1574, + [1574] = 1238, [1575] = 1575, - [1576] = 1576, - [1577] = 1577, - [1578] = 1578, + [1576] = 1239, + [1577] = 1240, + [1578] = 1235, [1579] = 1579, [1580] = 1580, [1581] = 1581, @@ -5008,21 +5022,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1627] = 1627, [1628] = 1628, [1629] = 1629, - [1630] = 1630, + [1630] = 1236, [1631] = 1631, [1632] = 1632, [1633] = 1633, [1634] = 1634, [1635] = 1635, - [1636] = 1636, - [1637] = 1637, + [1636] = 1237, + [1637] = 1238, [1638] = 1638, - [1639] = 1639, - [1640] = 1234, - [1641] = 1641, + [1639] = 1239, + [1640] = 1640, + [1641] = 1240, [1642] = 1642, [1643] = 1643, - [1644] = 1644, + [1644] = 1235, [1645] = 1645, [1646] = 1646, [1647] = 1647, @@ -5043,7 +5057,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1662] = 1662, [1663] = 1663, [1664] = 1664, - [1665] = 1662, + [1665] = 1665, [1666] = 1666, [1667] = 1667, [1668] = 1668, @@ -5052,18 +5066,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1671] = 1671, [1672] = 1672, [1673] = 1673, - [1674] = 1674, + [1674] = 1237, [1675] = 1675, - [1676] = 1676, + [1676] = 1238, [1677] = 1677, [1678] = 1678, [1679] = 1679, [1680] = 1680, - [1681] = 1662, + [1681] = 1681, [1682] = 1682, - [1683] = 1683, - [1684] = 1684, - [1685] = 1685, + [1683] = 1239, + [1684] = 1240, + [1685] = 1235, [1686] = 1686, [1687] = 1687, [1688] = 1688, @@ -5071,7 +5085,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1690] = 1690, [1691] = 1691, [1692] = 1692, - [1693] = 1690, + [1693] = 1693, [1694] = 1694, [1695] = 1695, [1696] = 1696, @@ -5082,14 +5096,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1701] = 1701, [1702] = 1702, [1703] = 1703, - [1704] = 1704, + [1704] = 1686, [1705] = 1705, - [1706] = 1662, + [1706] = 1706, [1707] = 1707, [1708] = 1708, - [1709] = 1690, + [1709] = 1709, [1710] = 1710, - [1711] = 1711, + [1711] = 1686, [1712] = 1712, [1713] = 1713, [1714] = 1714, @@ -5110,26 +5124,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1729] = 1729, [1730] = 1730, [1731] = 1731, - [1732] = 1234, + [1732] = 1732, [1733] = 1733, [1734] = 1734, [1735] = 1735, - [1736] = 1736, + [1736] = 1702, [1737] = 1737, [1738] = 1738, - [1739] = 1234, - [1740] = 1236, + [1739] = 1739, + [1740] = 1740, [1741] = 1741, - [1742] = 1239, + [1742] = 1742, [1743] = 1743, [1744] = 1744, [1745] = 1745, [1746] = 1746, - [1747] = 1747, - [1748] = 1240, + [1747] = 1686, + [1748] = 1748, [1749] = 1749, [1750] = 1750, - [1751] = 1235, + [1751] = 1751, [1752] = 1752, [1753] = 1753, [1754] = 1754, @@ -5138,10 +5152,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1757] = 1757, [1758] = 1758, [1759] = 1759, - [1760] = 1237, - [1761] = 1761, + [1760] = 1760, + [1761] = 1702, [1762] = 1762, - [1763] = 1763, + [1763] = 1686, [1764] = 1764, [1765] = 1765, [1766] = 1766, @@ -5155,45 +5169,45 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1774] = 1774, [1775] = 1775, [1776] = 1776, - [1777] = 1777, + [1777] = 1236, [1778] = 1778, [1779] = 1779, [1780] = 1780, [1781] = 1781, [1782] = 1782, [1783] = 1783, - [1784] = 1784, - [1785] = 1785, + [1784] = 1237, + [1785] = 1238, [1786] = 1786, [1787] = 1787, [1788] = 1788, - [1789] = 1789, + [1789] = 1239, [1790] = 1790, - [1791] = 1791, + [1791] = 1240, [1792] = 1792, [1793] = 1793, [1794] = 1794, [1795] = 1795, [1796] = 1796, - [1797] = 1236, + [1797] = 1235, [1798] = 1798, - [1799] = 1239, + [1799] = 1799, [1800] = 1800, [1801] = 1801, [1802] = 1802, [1803] = 1803, [1804] = 1804, [1805] = 1805, - [1806] = 1240, - [1807] = 1235, + [1806] = 1806, + [1807] = 1807, [1808] = 1808, [1809] = 1809, - [1810] = 1237, + [1810] = 1810, [1811] = 1811, [1812] = 1812, [1813] = 1813, [1814] = 1814, - [1815] = 1690, + [1815] = 1815, [1816] = 1816, [1817] = 1817, [1818] = 1818, @@ -5225,7 +5239,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1844] = 1844, [1845] = 1845, [1846] = 1846, - [1847] = 1662, + [1847] = 1847, [1848] = 1848, [1849] = 1849, [1850] = 1850, @@ -5251,25 +5265,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1870] = 1870, [1871] = 1871, [1872] = 1872, - [1873] = 1690, + [1873] = 1873, [1874] = 1874, [1875] = 1875, [1876] = 1876, - [1877] = 1877, - [1878] = 1865, + [1877] = 1721, + [1878] = 1878, [1879] = 1879, - [1880] = 1880, - [1881] = 1866, - [1882] = 1882, - [1883] = 1819, - [1884] = 1829, + [1880] = 1732, + [1881] = 1824, + [1882] = 1779, + [1883] = 1782, + [1884] = 1884, [1885] = 1885, - [1886] = 1882, + [1886] = 1886, [1887] = 1887, [1888] = 1888, [1889] = 1889, - [1890] = 1890, - [1891] = 1891, + [1890] = 1236, + [1891] = 1702, [1892] = 1892, [1893] = 1893, [1894] = 1894, @@ -5282,7 +5296,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1901] = 1901, [1902] = 1902, [1903] = 1903, - [1904] = 1904, + [1904] = 1702, [1905] = 1905, [1906] = 1906, [1907] = 1907, @@ -5301,30 +5315,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1920] = 1920, [1921] = 1921, [1922] = 1922, - [1923] = 1917, + [1923] = 1923, [1924] = 1924, [1925] = 1925, - [1926] = 1917, + [1926] = 1926, [1927] = 1927, - [1928] = 1918, - [1929] = 1918, - [1930] = 1922, + [1928] = 1928, + [1929] = 1929, + [1930] = 1930, [1931] = 1931, - [1932] = 1932, - [1933] = 1933, + [1932] = 1919, + [1933] = 1919, [1934] = 1934, - [1935] = 1935, + [1935] = 1921, [1936] = 1936, [1937] = 1937, [1938] = 1938, [1939] = 1939, [1940] = 1940, [1941] = 1941, - [1942] = 1920, + [1942] = 1942, [1943] = 1943, [1944] = 1944, [1945] = 1945, - [1946] = 1924, + [1946] = 1943, [1947] = 1947, [1948] = 1948, [1949] = 1949, @@ -5336,130 +5350,130 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1955] = 1955, [1956] = 1956, [1957] = 1957, - [1958] = 1958, + [1958] = 1951, [1959] = 1959, - [1960] = 1960, + [1960] = 1931, [1961] = 1961, - [1962] = 1962, - [1963] = 1917, - [1964] = 1964, - [1965] = 1920, - [1966] = 1924, - [1967] = 1917, - [1968] = 1918, - [1969] = 1922, - [1970] = 1918, + [1962] = 1943, + [1963] = 1919, + [1964] = 1929, + [1965] = 1921, + [1966] = 1929, + [1967] = 1967, + [1968] = 1921, + [1969] = 1969, + [1970] = 1970, [1971] = 1971, [1972] = 1972, - [1973] = 1961, + [1973] = 1931, [1974] = 1974, - [1975] = 1920, - [1976] = 1924, - [1977] = 1917, - [1978] = 1918, - [1979] = 1922, - [1980] = 1961, - [1981] = 1920, - [1982] = 1924, - [1983] = 1917, - [1984] = 1922, - [1985] = 1985, - [1986] = 1986, - [1987] = 1987, - [1988] = 1924, - [1989] = 1922, + [1975] = 1975, + [1976] = 1976, + [1977] = 1977, + [1978] = 1943, + [1979] = 1951, + [1980] = 1931, + [1981] = 1943, + [1982] = 1919, + [1983] = 1921, + [1984] = 1929, + [1985] = 1951, + [1986] = 1931, + [1987] = 1943, + [1988] = 1921, + [1989] = 1929, [1990] = 1990, - [1991] = 1961, + [1991] = 1919, [1992] = 1992, [1993] = 1993, - [1994] = 1994, + [1994] = 1921, [1995] = 1995, [1996] = 1996, - [1997] = 1997, - [1998] = 1998, + [1997] = 1948, + [1998] = 1952, [1999] = 1999, - [2000] = 1921, - [2001] = 1938, - [2002] = 1993, + [2000] = 1929, + [2001] = 2001, + [2002] = 1917, [2003] = 2003, - [2004] = 1972, + [2004] = 2004, [2005] = 2005, - [2006] = 2006, - [2007] = 1920, - [2008] = 2008, - [2009] = 1961, - [2010] = 1932, - [2011] = 1920, - [2012] = 1924, - [2013] = 1917, - [2014] = 1918, - [2015] = 1922, - [2016] = 2016, - [2017] = 1994, - [2018] = 1922, - [2019] = 1961, - [2020] = 1961, - [2021] = 1995, - [2022] = 2003, - [2023] = 2006, - [2024] = 2016, - [2025] = 2025, - [2026] = 2026, + [2006] = 1951, + [2007] = 1977, + [2008] = 1993, + [2009] = 1995, + [2010] = 2010, + [2011] = 2011, + [2012] = 1951, + [2013] = 2013, + [2014] = 1931, + [2015] = 1943, + [2016] = 1919, + [2017] = 1921, + [2018] = 1929, + [2019] = 2019, + [2020] = 2020, + [2021] = 2021, + [2022] = 1951, + [2023] = 1925, + [2024] = 1940, + [2025] = 1953, + [2026] = 1967, [2027] = 2027, - [2028] = 1999, + [2028] = 2011, [2029] = 2029, - [2030] = 2030, - [2031] = 2031, - [2032] = 1920, - [2033] = 2033, + [2030] = 1929, + [2031] = 1931, + [2032] = 2032, + [2033] = 1951, [2034] = 2034, [2035] = 2035, - [2036] = 1924, - [2037] = 1955, - [2038] = 1958, - [2039] = 1961, + [2036] = 1943, + [2037] = 1969, + [2038] = 1972, + [2039] = 1931, [2040] = 2040, - [2041] = 1961, - [2042] = 1920, - [2043] = 1924, - [2044] = 1917, - [2045] = 1918, - [2046] = 1922, - [2047] = 2047, - [2048] = 1918, - [2049] = 2049, + [2041] = 2041, + [2042] = 1951, + [2043] = 1931, + [2044] = 1943, + [2045] = 1919, + [2046] = 1921, + [2047] = 1929, + [2048] = 2048, + [2049] = 1919, [2050] = 2050, [2051] = 2051, [2052] = 2052, - [2053] = 2049, + [2053] = 2053, [2054] = 2054, [2055] = 2055, [2056] = 2056, [2057] = 2057, [2058] = 2058, [2059] = 2059, - [2060] = 2049, - [2061] = 2049, - [2062] = 2049, + [2060] = 2051, + [2061] = 2061, + [2062] = 2051, [2063] = 2063, - [2064] = 2064, + [2064] = 2051, [2065] = 2065, [2066] = 2066, - [2067] = 2049, - [2068] = 2068, - [2069] = 2069, + [2067] = 2067, + [2068] = 2051, + [2069] = 2051, [2070] = 2070, [2071] = 2071, [2072] = 2072, - [2073] = 2049, + [2073] = 2051, [2074] = 2074, - [2075] = 2075, - [2076] = 2049, + [2075] = 2051, + [2076] = 2076, [2077] = 2077, [2078] = 2078, [2079] = 2079, - [2080] = 2049, - [2081] = 2081, + [2080] = 2080, + [2081] = 2051, [2082] = 2082, [2083] = 2083, [2084] = 2084, @@ -5474,9 +5488,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2093] = 2093, [2094] = 2094, [2095] = 2095, - [2096] = 2091, + [2096] = 2096, [2097] = 2097, - [2098] = 2091, + [2098] = 2098, [2099] = 2099, [2100] = 2100, [2101] = 2101, @@ -5495,16 +5509,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2114] = 2114, [2115] = 2115, [2116] = 2116, - [2117] = 2091, + [2117] = 2117, [2118] = 2118, - [2119] = 2119, - [2120] = 2120, + [2119] = 2101, + [2120] = 2101, [2121] = 2121, [2122] = 2122, [2123] = 2123, [2124] = 2124, [2125] = 2125, - [2126] = 2095, + [2126] = 2126, [2127] = 2127, [2128] = 2128, [2129] = 2129, @@ -5516,7 +5530,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2135] = 2135, [2136] = 2136, [2137] = 2137, - [2138] = 2138, + [2138] = 2098, [2139] = 2139, [2140] = 2140, [2141] = 2141, @@ -5530,7 +5544,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2149] = 2149, [2150] = 2150, [2151] = 2151, - [2152] = 2152, + [2152] = 2101, [2153] = 2153, [2154] = 2154, [2155] = 2155, @@ -5541,7 +5555,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2160] = 2160, [2161] = 2161, [2162] = 2162, - [2163] = 2091, + [2163] = 2163, [2164] = 2164, [2165] = 2165, [2166] = 2166, @@ -5549,25 +5563,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2168] = 2168, [2169] = 2169, [2170] = 2170, - [2171] = 2171, + [2171] = 2101, [2172] = 2172, [2173] = 2173, [2174] = 2174, - [2175] = 2091, + [2175] = 2175, [2176] = 2176, - [2177] = 2091, + [2177] = 2177, [2178] = 2178, - [2179] = 2179, - [2180] = 2180, + [2179] = 2101, + [2180] = 2101, [2181] = 2181, [2182] = 2182, - [2183] = 2091, + [2183] = 2183, [2184] = 2184, - [2185] = 2120, - [2186] = 2133, - [2187] = 2091, - [2188] = 2188, + [2185] = 2101, + [2186] = 2186, + [2187] = 2140, + [2188] = 2114, [2189] = 2189, + [2190] = 2101, + [2191] = 2191, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -7467,9 +7483,9 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [677] = {.lex_state = 0}, [678] = {.lex_state = 0}, [679] = {.lex_state = 0}, - [680] = {.lex_state = 1}, + [680] = {.lex_state = 0}, [681] = {.lex_state = 0}, - [682] = {.lex_state = 0}, + [682] = {.lex_state = 1}, [683] = {.lex_state = 0}, [684] = {.lex_state = 0}, [685] = {.lex_state = 0}, @@ -8287,7 +8303,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1497] = {.lex_state = 0}, [1498] = {.lex_state = 0}, [1499] = {.lex_state = 0}, - [1500] = {.lex_state = 2}, + [1500] = {.lex_state = 0}, [1501] = {.lex_state = 2}, [1502] = {.lex_state = 2}, [1503] = {.lex_state = 2}, @@ -8301,12 +8317,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1511] = {.lex_state = 2}, [1512] = {.lex_state = 2}, [1513] = {.lex_state = 2}, - [1514] = {.lex_state = 0}, - [1515] = {.lex_state = 2}, + [1514] = {.lex_state = 2}, + [1515] = {.lex_state = 0}, [1516] = {.lex_state = 2}, [1517] = {.lex_state = 2}, [1518] = {.lex_state = 2}, - [1519] = {.lex_state = 0}, + [1519] = {.lex_state = 2}, [1520] = {.lex_state = 0}, [1521] = {.lex_state = 0}, [1522] = {.lex_state = 0}, @@ -8459,7 +8475,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1669] = {.lex_state = 0}, [1670] = {.lex_state = 0}, [1671] = {.lex_state = 0}, - [1672] = {.lex_state = 3}, + [1672] = {.lex_state = 0}, [1673] = {.lex_state = 0}, [1674] = {.lex_state = 0}, [1675] = {.lex_state = 0}, @@ -8508,7 +8524,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1718] = {.lex_state = 0}, [1719] = {.lex_state = 0}, [1720] = {.lex_state = 0}, - [1721] = {.lex_state = 0}, + [1721] = {.lex_state = 2}, [1722] = {.lex_state = 0}, [1723] = {.lex_state = 0}, [1724] = {.lex_state = 0}, @@ -8519,7 +8535,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1729] = {.lex_state = 0}, [1730] = {.lex_state = 0}, [1731] = {.lex_state = 0}, - [1732] = {.lex_state = 0}, + [1732] = {.lex_state = 2}, [1733] = {.lex_state = 0}, [1734] = {.lex_state = 0}, [1735] = {.lex_state = 0}, @@ -8566,13 +8582,13 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1776] = {.lex_state = 0}, [1777] = {.lex_state = 0}, [1778] = {.lex_state = 0}, - [1779] = {.lex_state = 0}, + [1779] = {.lex_state = 2}, [1780] = {.lex_state = 0}, [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 0}, + [1782] = {.lex_state = 2}, [1783] = {.lex_state = 0}, [1784] = {.lex_state = 0}, - [1785] = {.lex_state = 3}, + [1785] = {.lex_state = 0}, [1786] = {.lex_state = 0}, [1787] = {.lex_state = 0}, [1788] = {.lex_state = 0}, @@ -8580,7 +8596,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1790] = {.lex_state = 0}, [1791] = {.lex_state = 0}, [1792] = {.lex_state = 0}, - [1793] = {.lex_state = 0}, + [1793] = {.lex_state = 3}, [1794] = {.lex_state = 0}, [1795] = {.lex_state = 0}, [1796] = {.lex_state = 0}, @@ -8606,17 +8622,17 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1816] = {.lex_state = 0}, [1817] = {.lex_state = 0}, [1818] = {.lex_state = 0}, - [1819] = {.lex_state = 2}, + [1819] = {.lex_state = 0}, [1820] = {.lex_state = 0}, [1821] = {.lex_state = 0}, [1822] = {.lex_state = 0}, [1823] = {.lex_state = 0}, - [1824] = {.lex_state = 0}, + [1824] = {.lex_state = 2}, [1825] = {.lex_state = 0}, [1826] = {.lex_state = 0}, [1827] = {.lex_state = 0}, [1828] = {.lex_state = 0}, - [1829] = {.lex_state = 2}, + [1829] = {.lex_state = 0}, [1830] = {.lex_state = 0}, [1831] = {.lex_state = 0}, [1832] = {.lex_state = 0}, @@ -8628,7 +8644,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1838] = {.lex_state = 0}, [1839] = {.lex_state = 0}, [1840] = {.lex_state = 0}, - [1841] = {.lex_state = 0}, + [1841] = {.lex_state = 3}, [1842] = {.lex_state = 0}, [1843] = {.lex_state = 0}, [1844] = {.lex_state = 0}, @@ -8652,8 +8668,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1862] = {.lex_state = 0}, [1863] = {.lex_state = 0}, [1864] = {.lex_state = 0}, - [1865] = {.lex_state = 2}, - [1866] = {.lex_state = 2}, + [1865] = {.lex_state = 0}, + [1866] = {.lex_state = 0}, [1867] = {.lex_state = 0}, [1868] = {.lex_state = 0}, [1869] = {.lex_state = 0}, @@ -8664,16 +8680,16 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1874] = {.lex_state = 0}, [1875] = {.lex_state = 0}, [1876] = {.lex_state = 0}, - [1877] = {.lex_state = 0}, - [1878] = {.lex_state = 2}, + [1877] = {.lex_state = 2}, + [1878] = {.lex_state = 0}, [1879] = {.lex_state = 0}, - [1880] = {.lex_state = 0}, + [1880] = {.lex_state = 2}, [1881] = {.lex_state = 2}, [1882] = {.lex_state = 2}, [1883] = {.lex_state = 2}, - [1884] = {.lex_state = 2}, + [1884] = {.lex_state = 0}, [1885] = {.lex_state = 0}, - [1886] = {.lex_state = 2}, + [1886] = {.lex_state = 0}, [1887] = {.lex_state = 0}, [1888] = {.lex_state = 0}, [1889] = {.lex_state = 0}, @@ -8685,7 +8701,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1895] = {.lex_state = 0}, [1896] = {.lex_state = 0}, [1897] = {.lex_state = 0}, - [1898] = {.lex_state = 3}, + [1898] = {.lex_state = 0}, [1899] = {.lex_state = 0}, [1900] = {.lex_state = 0}, [1901] = {.lex_state = 0}, @@ -8699,7 +8715,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1909] = {.lex_state = 0}, [1910] = {.lex_state = 0}, [1911] = {.lex_state = 0}, - [1912] = {.lex_state = 0}, + [1912] = {.lex_state = 3}, [1913] = {.lex_state = 0}, [1914] = {.lex_state = 0}, [1915] = {.lex_state = 0}, @@ -8846,20 +8862,20 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2056] = {.lex_state = 0}, [2057] = {.lex_state = 0}, [2058] = {.lex_state = 0}, - [2059] = {.lex_state = 2}, + [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}, + [2065] = {.lex_state = 2}, + [2066] = {.lex_state = 2}, [2067] = {.lex_state = 0}, [2068] = {.lex_state = 0}, [2069] = {.lex_state = 0}, [2070] = {.lex_state = 0}, [2071] = {.lex_state = 0}, - [2072] = {.lex_state = 2}, + [2072] = {.lex_state = 0}, [2073] = {.lex_state = 0}, [2074] = {.lex_state = 0}, [2075] = {.lex_state = 0}, @@ -8880,7 +8896,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2090] = {.lex_state = 0}, [2091] = {.lex_state = 0}, [2092] = {.lex_state = 0}, - [2093] = {.lex_state = 2}, + [2093] = {.lex_state = 0}, [2094] = {.lex_state = 0}, [2095] = {.lex_state = 0}, [2096] = {.lex_state = 0}, @@ -8903,7 +8919,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2113] = {.lex_state = 0}, [2114] = {.lex_state = 0}, [2115] = {.lex_state = 0}, - [2116] = {.lex_state = 0}, + [2116] = {.lex_state = 2}, [2117] = {.lex_state = 0}, [2118] = {.lex_state = 0}, [2119] = {.lex_state = 0}, @@ -8977,6 +8993,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2187] = {.lex_state = 0}, [2188] = {.lex_state = 0}, [2189] = {.lex_state = 0}, + [2190] = {.lex_state = 0}, + [2191] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -9092,14 +9110,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1), }, [STATE(1)] = { - [sym_source_file] = STATE(2094), - [sym__top_level_declaration] = STATE(1496), - [sym_import_declaration] = STATE(1496), - [sym_function_declaration] = STATE(1496), - [sym_type_declaration] = STATE(1496), - [sym_global_constant_declaration] = STATE(1496), - [sym_global_variable_declaration] = STATE(1496), - [aux_sym_source_file_repeat1] = STATE(1496), + [sym_source_file] = STATE(2169), + [sym__top_level_declaration] = STATE(1497), + [sym_import_declaration] = STATE(1497), + [sym_function_declaration] = STATE(1497), + [sym_type_declaration] = STATE(1497), + [sym_global_constant_declaration] = STATE(1497), + [sym_global_variable_declaration] = STATE(1497), + [aux_sym_source_file_repeat1] = STATE(1497), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), @@ -9107,47 +9125,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(11), }, [STATE(2)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), [sym_statement] = STATE(1534), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_capture_list] = STATE(50), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_capture_list] = STATE(126), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), [sym__branch_body] = STATE(1534), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_argument_list] = STATE(495), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(51), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_argument_list] = STATE(523), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(129), [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -9234,47 +9253,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(91), }, [STATE(3)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1530), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_capture_list] = STATE(54), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1530), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_argument_list] = STATE(495), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(55), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1890), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_capture_list] = STATE(218), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1890), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_argument_list] = STATE(523), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(93), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_DOT_DOT] = ACTIONS(59), + [anon_sym_DOT_DOT_EQ] = ACTIONS(61), + [anon_sym_orelse] = ACTIONS(63), + [anon_sym_catch] = ACTIONS(65), + [anon_sym_or] = ACTIONS(67), + [anon_sym_and] = ACTIONS(69), + [anon_sym_EQ_EQ] = ACTIONS(71), + [anon_sym_BANG_EQ] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(71), + [anon_sym_GT] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(79), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(115), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(117), + }, + [STATE(4)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1525), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_capture_list] = STATE(190), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1525), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_argument_list] = STATE(523), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(193), [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -9358,316 +9506,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(93), - }, - [STATE(4)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1245), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_capture_list] = STATE(89), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1245), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_argument_list] = STATE(495), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(90), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_PIPE] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(59), - [anon_sym_DOT_DOT_EQ] = ACTIONS(61), - [anon_sym_orelse] = ACTIONS(63), - [anon_sym_catch] = ACTIONS(65), - [anon_sym_or] = ACTIONS(67), - [anon_sym_and] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(71), - [anon_sym_BANG_EQ] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(71), - [anon_sym_GT] = ACTIONS(73), - [anon_sym_GT_EQ] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(79), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(119), }, [STATE(5)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1239), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_capture_list] = STATE(93), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1239), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_argument_list] = STATE(495), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(94), - [sym_identifier] = ACTIONS(95), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1236), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_capture_list] = STATE(64), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1236), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_argument_list] = STATE(523), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(65), + [sym_identifier] = ACTIONS(121), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(123), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_PIPE] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(31), [anon_sym_STAR] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(59), - [anon_sym_DOT_DOT_EQ] = ACTIONS(61), - [anon_sym_orelse] = ACTIONS(63), - [anon_sym_catch] = ACTIONS(65), - [anon_sym_or] = ACTIONS(67), - [anon_sym_and] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(71), - [anon_sym_BANG_EQ] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(71), - [anon_sym_GT] = ACTIONS(73), - [anon_sym_GT_EQ] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(79), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(121), - }, - [STATE(6)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1640), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_capture_list] = STATE(119), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1640), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_argument_list] = STATE(495), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(120), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(125), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_PIPE] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(129), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -9725,7 +9620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(75), [anon_sym_SLASH] = ACTIONS(33), [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(79), [anon_sym_CARET] = ACTIONS(31), [anon_sym_true] = ACTIONS(81), @@ -9741,60 +9636,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(145), }, - [STATE(7)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1540), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_capture_list] = STATE(123), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1540), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_argument_list] = STATE(495), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(123), + [STATE(6)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1238), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_capture_list] = STATE(69), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1238), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_argument_list] = STATE(523), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(70), + [sym_identifier] = ACTIONS(121), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(123), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_PIPE] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(31), [anon_sym_STAR] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(129), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -9852,7 +9748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(75), [anon_sym_SLASH] = ACTIONS(33), [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(79), [anon_sym_CARET] = ACTIONS(31), [anon_sym_true] = ACTIONS(81), @@ -9868,48 +9764,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(147), }, - [STATE(8)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1255), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_capture_list] = STATE(148), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1255), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_argument_list] = STATE(495), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(149), + [STATE(7)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1568), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_capture_list] = STATE(95), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1568), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_argument_list] = STATE(523), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(96), [sym_identifier] = ACTIONS(149), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(151), @@ -9921,7 +9818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(31), [anon_sym_STAR] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(35), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -9995,48 +9892,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(171), }, - [STATE(9)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1259), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_capture_list] = STATE(152), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1259), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_argument_list] = STATE(495), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(153), + [STATE(8)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1574), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_capture_list] = STATE(99), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1574), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_argument_list] = STATE(523), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(100), [sym_identifier] = ACTIONS(149), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(151), @@ -10048,7 +9946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(31), [anon_sym_STAR] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(35), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -10122,48 +10020,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(173), }, - [STATE(10)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1742), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_capture_list] = STATE(223), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1742), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_argument_list] = STATE(495), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(224), + [STATE(9)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1256), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_capture_list] = STATE(127), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1256), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_argument_list] = STATE(523), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(128), [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(177), @@ -10175,7 +10074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(31), [anon_sym_STAR] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(129), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -10208,13 +10107,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), @@ -10232,7 +10131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_SLASH] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(193), [anon_sym_try] = ACTIONS(177), [anon_sym_DOT] = ACTIONS(79), [anon_sym_CARET] = ACTIONS(31), @@ -10240,7 +10139,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(195), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(197), + }, + [STATE(10)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1257), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_capture_list] = STATE(132), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1257), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_argument_list] = STATE(523), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(133), + [sym_identifier] = ACTIONS(175), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_DOT_DOT] = ACTIONS(59), + [anon_sym_DOT_DOT_EQ] = ACTIONS(61), + [anon_sym_orelse] = ACTIONS(63), + [anon_sym_catch] = ACTIONS(65), + [anon_sym_or] = ACTIONS(67), + [anon_sym_and] = ACTIONS(69), + [anon_sym_EQ_EQ] = ACTIONS(71), + [anon_sym_BANG_EQ] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(71), + [anon_sym_GT] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(79), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -10250,59 +10277,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(199), }, [STATE(11)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1519), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_capture_list] = STATE(178), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1519), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_argument_list] = STATE(495), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(13), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1785), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_capture_list] = STATE(214), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1785), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_argument_list] = STATE(523), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(215), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(95), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_PIPE] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(31), [anon_sym_STAR] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(101), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -10335,13 +10363,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), @@ -10359,15 +10387,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_SLASH] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), [anon_sym_DOT] = ACTIONS(79), [anon_sym_CARET] = ACTIONS(31), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -10377,47 +10405,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(201), }, [STATE(12)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1524), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_capture_list] = STATE(182), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1524), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_argument_list] = STATE(495), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(183), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1531), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_capture_list] = STATE(158), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1531), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_argument_list] = STATE(523), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(159), [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(17), @@ -10504,59 +10533,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(203), }, [STATE(13)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1234), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_capture_list] = STATE(208), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1234), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_argument_list] = STATE(495), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(95), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1520), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_capture_list] = STATE(163), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1520), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_argument_list] = STATE(523), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(164), + [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(17), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_DOLLAR] = ACTIONS(27), [anon_sym_PIPE] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(31), [anon_sym_STAR] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(35), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -10589,13 +10619,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), @@ -10613,15 +10643,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_SLASH] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), [anon_sym_DOT] = ACTIONS(79), [anon_sym_CARET] = ACTIONS(31), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), + [sym_sink] = ACTIONS(85), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -10631,186 +10661,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(205), }, [STATE(14)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1241), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_capture_list] = STATE(211), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1241), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_argument_list] = STATE(495), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(212), - [sym_identifier] = ACTIONS(95), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1242), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_capture_list] = STATE(191), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1242), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_argument_list] = STATE(523), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(121), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(123), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_PIPE] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(31), [anon_sym_STAR] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(59), - [anon_sym_DOT_DOT_EQ] = ACTIONS(61), - [anon_sym_orelse] = ACTIONS(63), - [anon_sym_catch] = ACTIONS(65), - [anon_sym_or] = ACTIONS(67), - [anon_sym_and] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(71), - [anon_sym_BANG_EQ] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(71), - [anon_sym_GT] = ACTIONS(73), - [anon_sym_GT_EQ] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(79), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(207), - }, - [STATE(15)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1541), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_capture_list] = STATE(214), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1541), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_argument_list] = STATE(495), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(215), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(125), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_PIPE] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(129), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -10868,7 +10772,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(75), [anon_sym_SLASH] = ACTIONS(33), [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(79), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(207), + }, + [STATE(15)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1244), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_capture_list] = STATE(328), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1244), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_argument_list] = STATE(523), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(195), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(123), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_DOT_DOT] = ACTIONS(59), + [anon_sym_DOT_DOT_EQ] = ACTIONS(61), + [anon_sym_orelse] = ACTIONS(63), + [anon_sym_catch] = ACTIONS(65), + [anon_sym_or] = ACTIONS(67), + [anon_sym_and] = ACTIONS(69), + [anon_sym_EQ_EQ] = ACTIONS(71), + [anon_sym_BANG_EQ] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(71), + [anon_sym_GT] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(79), [anon_sym_CARET] = ACTIONS(31), [anon_sym_true] = ACTIONS(81), @@ -10885,55 +10917,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(209), }, [STATE(16)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1544), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_capture_list] = STATE(217), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1544), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_argument_list] = STATE(495), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(218), - [sym_identifier] = ACTIONS(123), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1630), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_capture_list] = STATE(199), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1630), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_argument_list] = STATE(523), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(149), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(151), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_PIPE] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(31), [anon_sym_STAR] = ACTIONS(33), @@ -10970,13 +11003,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), @@ -10994,15 +11027,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_SLASH] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(79), [anon_sym_CARET] = ACTIONS(31), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), + [sym_sink] = ACTIONS(169), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -11012,59 +11045,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(211), }, [STATE(17)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1799), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_capture_list] = STATE(229), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1799), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_argument_list] = STATE(495), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(230), - [sym_identifier] = ACTIONS(175), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1637), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_capture_list] = STATE(205), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1637), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_argument_list] = STATE(523), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(206), + [sym_identifier] = ACTIONS(149), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(151), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_PIPE] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(31), [anon_sym_STAR] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(35), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -11097,13 +11131,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), @@ -11121,15 +11155,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_SLASH] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(79), [anon_sym_CARET] = ACTIONS(31), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(169), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -11139,59 +11173,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(213), }, [STATE(18)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1732), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_capture_list] = STATE(220), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1732), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_argument_list] = STATE(495), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(221), - [sym_identifier] = ACTIONS(175), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1676), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_capture_list] = STATE(221), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1676), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_argument_list] = STATE(523), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(95), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_PIPE] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(31), [anon_sym_STAR] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(101), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -11224,13 +11259,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), @@ -11248,15 +11283,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_SLASH] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), [anon_sym_DOT] = ACTIONS(79), [anon_sym_CARET] = ACTIONS(31), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -11266,59 +11301,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(215), }, [STATE(19)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1739), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_capture_list] = STATE(226), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1739), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_argument_list] = STATE(495), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(227), - [sym_identifier] = ACTIONS(175), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1777), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_capture_list] = STATE(211), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1777), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_argument_list] = STATE(523), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(95), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_PIPE] = ACTIONS(29), [anon_sym_QMARK] = ACTIONS(31), [anon_sym_STAR] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(101), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -11351,13 +11387,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), @@ -11375,15 +11411,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_SLASH] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), [anon_sym_DOT] = ACTIONS(79), [anon_sym_CARET] = ACTIONS(31), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -11393,53 +11429,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(217), }, [STATE(20)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1204), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_error_capture] = STATE(360), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(40), - [sym_identifier] = ACTIONS(123), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1215), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_error_capture] = STATE(354), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_PIPE] = ACTIONS(221), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), @@ -11474,24 +11511,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), + [sym_sink] = ACTIONS(169), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -11501,53 +11538,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(227), }, [STATE(21)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1204), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_error_capture] = STATE(355), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(23), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1150), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_error_capture] = STATE(376), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(28), [sym_identifier] = ACTIONS(229), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_PIPE] = ACTIONS(221), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), @@ -11592,8 +11630,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -11609,55 +11647,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(245), }, [STATE(22)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1221), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_error_capture] = STATE(379), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1215), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_error_capture] = STATE(359), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -11690,82 +11729,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(85), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(23)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1221), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_error_capture] = STATE(329), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(229), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1150), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_error_capture] = STATE(341), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -11798,24 +11838,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -11825,153 +11865,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(251), }, [STATE(24)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1221), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_error_capture] = STATE(374), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(25)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1221), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_error_capture] = STATE(336), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1150), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_error_capture] = STATE(350), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(22), [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), @@ -12026,7 +11959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -12038,272 +11971,820 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(253), + }, + [STATE(25)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1150), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_error_capture] = STATE(361), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(37), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_PIPE] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(269), }, [STATE(26)] = { - [sym_type] = STATE(437), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(267), - [sym_identifier] = ACTIONS(269), - [anon_sym_import] = ACTIONS(271), - [anon_sym_func] = ACTIONS(269), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_EQ] = ACTIONS(271), - [anon_sym_struct] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_RPAREN] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(275), - [anon_sym_RBRACE] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(269), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(275), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(269), - [anon_sym_mut] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(275), - [anon_sym_void] = ACTIONS(269), - [anon_sym_anyopaque] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_int] = ACTIONS(269), - [anon_sym_float] = ACTIONS(269), - [anon_sym_range] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_isize] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_f32] = ACTIONS(269), - [anon_sym_f64] = ACTIONS(269), - [anon_sym_c_char] = ACTIONS(269), - [anon_sym_c_schar] = ACTIONS(269), - [anon_sym_c_uchar] = ACTIONS(269), - [anon_sym_c_short] = ACTIONS(269), - [anon_sym_c_ushort] = ACTIONS(269), - [anon_sym_c_int] = ACTIONS(269), - [anon_sym_c_uint] = ACTIONS(269), - [anon_sym_c_long] = ACTIONS(269), - [anon_sym_c_ulong] = ACTIONS(269), - [anon_sym_c_longlong] = ACTIONS(269), - [anon_sym_c_ulonglong] = ACTIONS(269), - [anon_sym_c_float] = ACTIONS(269), - [anon_sym_c_double] = ACTIONS(269), - [anon_sym_c_longdouble] = ACTIONS(269), - [anon_sym_PLUS_EQ] = ACTIONS(267), - [anon_sym_DASH_EQ] = ACTIONS(267), - [anon_sym_STAR_EQ] = ACTIONS(267), - [anon_sym_SLASH_EQ] = ACTIONS(267), - [anon_sym_return] = ACTIONS(269), - [anon_sym_yield] = ACTIONS(269), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(269), - [anon_sym_defer] = ACTIONS(269), - [anon_sym_errdefer] = ACTIONS(269), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_while] = ACTIONS(269), - [anon_sym_for] = ACTIONS(269), - [anon_sym_match] = ACTIONS(269), - [anon_sym_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_EQ] = ACTIONS(275), - [anon_sym_orelse] = ACTIONS(269), - [anon_sym_catch] = ACTIONS(269), - [anon_sym_or] = ACTIONS(269), - [anon_sym_and] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(275), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(275), - [anon_sym_PLUS] = ACTIONS(269), - [anon_sym_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(275), - [anon_sym_try] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(275), - [anon_sym_true] = ACTIONS(269), - [anon_sym_false] = ACTIONS(269), - [sym_none] = ACTIONS(269), - [sym_undefined] = ACTIONS(269), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(269), - [sym_float] = ACTIONS(275), - [anon_sym_DQUOTE] = ACTIONS(275), - [sym_multiline_string] = ACTIONS(275), - [sym_character] = ACTIONS(275), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1150), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_error_capture] = STATE(375), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(30), + [sym_identifier] = ACTIONS(175), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(195), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(271), + }, + [STATE(27)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1215), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_error_capture] = STATE(344), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_PIPE] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(115), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(28)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1215), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_error_capture] = STATE(349), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_PIPE] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(29)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1150), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_error_capture] = STATE(336), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(273), + }, + [STATE(30)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1215), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_error_capture] = STATE(379), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(195), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(31)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1150), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_error_capture] = STATE(331), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(32), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_PIPE] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(275), }, - [STATE(27)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1204), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_error_capture] = STATE(377), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(175), + [STATE(32)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1215), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_error_capture] = STATE(333), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(281), - }, - [STATE(28)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1204), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_error_capture] = STATE(347), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(31), - [sym_identifier] = ACTIONS(149), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_PIPE] = ACTIONS(221), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), @@ -12338,289 +12819,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(143), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(283), + [sym__newline] = ACTIONS(227), }, - [STATE(29)] = { - [sym_type] = STATE(426), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(285), - [sym_identifier] = ACTIONS(287), - [anon_sym_import] = ACTIONS(289), - [anon_sym_func] = ACTIONS(287), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_struct] = ACTIONS(287), - [anon_sym_LPAREN] = ACTIONS(291), - [anon_sym_RPAREN] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_RBRACE] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(291), - [anon_sym_PIPE] = ACTIONS(291), - [anon_sym_QMARK] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_mut] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(291), - [anon_sym_void] = ACTIONS(287), - [anon_sym_anyopaque] = ACTIONS(287), - [anon_sym_bool] = ACTIONS(287), - [anon_sym_int] = ACTIONS(287), - [anon_sym_float] = ACTIONS(287), - [anon_sym_range] = ACTIONS(287), - [anon_sym_i8] = ACTIONS(287), - [anon_sym_i16] = ACTIONS(287), - [anon_sym_i32] = ACTIONS(287), - [anon_sym_i64] = ACTIONS(287), - [anon_sym_u8] = ACTIONS(287), - [anon_sym_u16] = ACTIONS(287), - [anon_sym_u32] = ACTIONS(287), - [anon_sym_u64] = ACTIONS(287), - [anon_sym_isize] = ACTIONS(287), - [anon_sym_usize] = ACTIONS(287), - [anon_sym_f32] = ACTIONS(287), - [anon_sym_f64] = ACTIONS(287), - [anon_sym_c_char] = ACTIONS(287), - [anon_sym_c_schar] = ACTIONS(287), - [anon_sym_c_uchar] = ACTIONS(287), - [anon_sym_c_short] = ACTIONS(287), - [anon_sym_c_ushort] = ACTIONS(287), - [anon_sym_c_int] = ACTIONS(287), - [anon_sym_c_uint] = ACTIONS(287), - [anon_sym_c_long] = ACTIONS(287), - [anon_sym_c_ulong] = ACTIONS(287), - [anon_sym_c_longlong] = ACTIONS(287), - [anon_sym_c_ulonglong] = ACTIONS(287), - [anon_sym_c_float] = ACTIONS(287), - [anon_sym_c_double] = ACTIONS(287), - [anon_sym_c_longdouble] = ACTIONS(287), - [anon_sym_PLUS_EQ] = ACTIONS(285), - [anon_sym_DASH_EQ] = ACTIONS(285), - [anon_sym_STAR_EQ] = ACTIONS(285), - [anon_sym_SLASH_EQ] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(287), - [anon_sym_defer] = ACTIONS(287), - [anon_sym_errdefer] = ACTIONS(287), + [STATE(33)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1150), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_error_capture] = STATE(367), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(34), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(289), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(287), - [anon_sym_match] = ACTIONS(287), - [anon_sym_DOT_DOT] = ACTIONS(287), - [anon_sym_DOT_DOT_EQ] = ACTIONS(291), - [anon_sym_orelse] = ACTIONS(287), - [anon_sym_catch] = ACTIONS(287), - [anon_sym_or] = ACTIONS(287), - [anon_sym_and] = ACTIONS(287), - [anon_sym_EQ_EQ] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(287), - [anon_sym_LT_EQ] = ACTIONS(291), - [anon_sym_GT] = ACTIONS(287), - [anon_sym_GT_EQ] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(287), - [anon_sym_AMP] = ACTIONS(291), - [anon_sym_try] = ACTIONS(287), - [anon_sym_DOT] = ACTIONS(287), - [anon_sym_CARET] = ACTIONS(291), - [anon_sym_true] = ACTIONS(287), - [anon_sym_false] = ACTIONS(287), - [sym_none] = ACTIONS(287), - [sym_undefined] = ACTIONS(287), - [sym_sink] = ACTIONS(287), - [sym_integer] = ACTIONS(287), - [sym_float] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_multiline_string] = ACTIONS(291), - [sym_character] = ACTIONS(291), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(291), }, - [STATE(30)] = { - [sym_type] = STATE(453), - [sym__type_atom] = STATE(398), - [sym_named_type] = STATE(398), - [sym_optional_type] = STATE(398), - [sym_pointer_type] = STATE(398), - [sym_array_type] = STATE(398), - [sym_function_type] = STATE(398), - [sym_builtin_type] = STATE(398), - [sym_qualified_identifier] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(295), - [sym_identifier] = ACTIONS(297), - [anon_sym_import] = ACTIONS(300), - [anon_sym_func] = ACTIONS(302), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(300), - [anon_sym_EQ] = ACTIONS(300), - [anon_sym_struct] = ACTIONS(300), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_RBRACE] = ACTIONS(295), - [anon_sym_DASH] = ACTIONS(300), - [anon_sym_DOLLAR] = ACTIONS(295), - [anon_sym_PIPE] = ACTIONS(295), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_mut] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_void] = ACTIONS(316), - [anon_sym_anyopaque] = ACTIONS(316), - [anon_sym_bool] = ACTIONS(316), - [anon_sym_int] = ACTIONS(316), - [anon_sym_float] = ACTIONS(316), - [anon_sym_range] = ACTIONS(316), - [anon_sym_i8] = ACTIONS(316), - [anon_sym_i16] = ACTIONS(316), - [anon_sym_i32] = ACTIONS(316), - [anon_sym_i64] = ACTIONS(316), - [anon_sym_u8] = ACTIONS(316), - [anon_sym_u16] = ACTIONS(316), - [anon_sym_u32] = ACTIONS(316), - [anon_sym_u64] = ACTIONS(316), - [anon_sym_isize] = ACTIONS(316), - [anon_sym_usize] = ACTIONS(316), - [anon_sym_f32] = ACTIONS(316), - [anon_sym_f64] = ACTIONS(316), - [anon_sym_c_char] = ACTIONS(316), - [anon_sym_c_schar] = ACTIONS(316), - [anon_sym_c_uchar] = ACTIONS(316), - [anon_sym_c_short] = ACTIONS(316), - [anon_sym_c_ushort] = ACTIONS(316), - [anon_sym_c_int] = ACTIONS(316), - [anon_sym_c_uint] = ACTIONS(316), - [anon_sym_c_long] = ACTIONS(316), - [anon_sym_c_ulong] = ACTIONS(316), - [anon_sym_c_longlong] = ACTIONS(316), - [anon_sym_c_ulonglong] = ACTIONS(316), - [anon_sym_c_float] = ACTIONS(316), - [anon_sym_c_double] = ACTIONS(316), - [anon_sym_c_longdouble] = ACTIONS(316), - [anon_sym_PLUS_EQ] = ACTIONS(295), - [anon_sym_DASH_EQ] = ACTIONS(295), - [anon_sym_STAR_EQ] = ACTIONS(295), - [anon_sym_SLASH_EQ] = ACTIONS(295), - [anon_sym_return] = ACTIONS(300), - [anon_sym_yield] = ACTIONS(300), - [anon_sym_break] = ACTIONS(300), - [anon_sym_continue] = ACTIONS(300), - [anon_sym_defer] = ACTIONS(300), - [anon_sym_errdefer] = ACTIONS(300), - [anon_sym_if] = ACTIONS(300), - [anon_sym_else] = ACTIONS(300), - [anon_sym_while] = ACTIONS(300), - [anon_sym_for] = ACTIONS(300), - [anon_sym_match] = ACTIONS(300), - [anon_sym_DOT_DOT] = ACTIONS(300), - [anon_sym_DOT_DOT_EQ] = ACTIONS(295), - [anon_sym_orelse] = ACTIONS(300), - [anon_sym_catch] = ACTIONS(300), - [anon_sym_or] = ACTIONS(300), - [anon_sym_and] = ACTIONS(300), - [anon_sym_EQ_EQ] = ACTIONS(295), - [anon_sym_BANG_EQ] = ACTIONS(295), - [anon_sym_LT] = ACTIONS(300), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT] = ACTIONS(300), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_PLUS] = ACTIONS(300), - [anon_sym_SLASH] = ACTIONS(300), - [anon_sym_AMP] = ACTIONS(295), - [anon_sym_try] = ACTIONS(300), - [anon_sym_DOT] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(295), - [anon_sym_true] = ACTIONS(300), - [anon_sym_false] = ACTIONS(300), - [sym_none] = ACTIONS(300), - [sym_undefined] = ACTIONS(300), - [sym_sink] = ACTIONS(300), - [sym_integer] = ACTIONS(300), - [sym_float] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [sym_multiline_string] = ACTIONS(295), - [sym_character] = ACTIONS(295), + [STATE(34)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1215), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_error_capture] = STATE(369), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(227), }, - [STATE(31)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1221), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_error_capture] = STATE(349), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(149), + [STATE(35)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1215), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_error_capture] = STATE(356), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(293), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), @@ -12629,6 +13113,872 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(167), [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_PIPE] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(305), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(36)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1150), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_error_capture] = STATE(353), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(35), + [sym_identifier] = ACTIONS(293), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(305), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(307), + }, + [STATE(37)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1215), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_error_capture] = STATE(364), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_PIPE] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(38)] = { + [sym_type] = STATE(456), + [sym__type_atom] = STATE(398), + [sym_named_type] = STATE(398), + [sym_optional_type] = STATE(398), + [sym_pointer_type] = STATE(398), + [sym_array_type] = STATE(398), + [sym_function_type] = STATE(398), + [sym_builtin_type] = STATE(398), + [sym_qualified_identifier] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [anon_sym_import] = ACTIONS(314), + [anon_sym_func] = ACTIONS(316), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(314), + [anon_sym_EQ] = ACTIONS(314), + [anon_sym_struct] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_RPAREN] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_DASH] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(309), + [anon_sym_PIPE] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(326), + [anon_sym_mut] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(331), + [anon_sym_void] = ACTIONS(334), + [anon_sym_anyopaque] = ACTIONS(334), + [anon_sym_bool] = ACTIONS(334), + [anon_sym_int] = ACTIONS(334), + [anon_sym_float] = ACTIONS(334), + [anon_sym_range] = ACTIONS(334), + [anon_sym_i8] = ACTIONS(334), + [anon_sym_i16] = ACTIONS(334), + [anon_sym_i32] = ACTIONS(334), + [anon_sym_i64] = ACTIONS(334), + [anon_sym_u8] = ACTIONS(334), + [anon_sym_u16] = ACTIONS(334), + [anon_sym_u32] = ACTIONS(334), + [anon_sym_u64] = ACTIONS(334), + [anon_sym_isize] = ACTIONS(334), + [anon_sym_usize] = ACTIONS(334), + [anon_sym_f32] = ACTIONS(334), + [anon_sym_f64] = ACTIONS(334), + [anon_sym_c_char] = ACTIONS(334), + [anon_sym_c_schar] = ACTIONS(334), + [anon_sym_c_uchar] = ACTIONS(334), + [anon_sym_c_short] = ACTIONS(334), + [anon_sym_c_ushort] = ACTIONS(334), + [anon_sym_c_int] = ACTIONS(334), + [anon_sym_c_uint] = ACTIONS(334), + [anon_sym_c_long] = ACTIONS(334), + [anon_sym_c_ulong] = ACTIONS(334), + [anon_sym_c_longlong] = ACTIONS(334), + [anon_sym_c_ulonglong] = ACTIONS(334), + [anon_sym_c_float] = ACTIONS(334), + [anon_sym_c_double] = ACTIONS(334), + [anon_sym_c_longdouble] = ACTIONS(334), + [anon_sym_PLUS_EQ] = ACTIONS(309), + [anon_sym_DASH_EQ] = ACTIONS(309), + [anon_sym_STAR_EQ] = ACTIONS(309), + [anon_sym_SLASH_EQ] = ACTIONS(309), + [anon_sym_return] = ACTIONS(314), + [anon_sym_yield] = ACTIONS(314), + [anon_sym_break] = ACTIONS(314), + [anon_sym_continue] = ACTIONS(314), + [anon_sym_defer] = ACTIONS(314), + [anon_sym_errdefer] = ACTIONS(314), + [anon_sym_if] = ACTIONS(314), + [anon_sym_else] = ACTIONS(314), + [anon_sym_while] = ACTIONS(314), + [anon_sym_for] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), + [anon_sym_DOT_DOT] = ACTIONS(314), + [anon_sym_DOT_DOT_EQ] = ACTIONS(309), + [anon_sym_orelse] = ACTIONS(314), + [anon_sym_catch] = ACTIONS(314), + [anon_sym_or] = ACTIONS(314), + [anon_sym_and] = ACTIONS(314), + [anon_sym_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(314), + [anon_sym_LT_EQ] = ACTIONS(309), + [anon_sym_GT] = ACTIONS(314), + [anon_sym_GT_EQ] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(314), + [anon_sym_SLASH] = ACTIONS(314), + [anon_sym_AMP] = ACTIONS(309), + [anon_sym_try] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(314), + [anon_sym_CARET] = ACTIONS(309), + [anon_sym_true] = ACTIONS(314), + [anon_sym_false] = ACTIONS(314), + [sym_none] = ACTIONS(314), + [sym_undefined] = ACTIONS(314), + [sym_sink] = ACTIONS(314), + [sym_integer] = ACTIONS(314), + [sym_float] = ACTIONS(309), + [anon_sym_DQUOTE] = ACTIONS(309), + [sym_multiline_string] = ACTIONS(309), + [sym_character] = ACTIONS(309), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(309), + }, + [STATE(39)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1177), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1177), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(40)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1178), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1178), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(50), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(337), + }, + [STATE(41)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1179), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1179), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(42)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1179), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1179), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(53), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(339), + }, + [STATE(43)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1262), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1262), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -12662,730 +14012,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(32)] = { - [sym_type] = STATE(437), - [sym__type_atom] = STATE(398), - [sym_named_type] = STATE(398), - [sym_optional_type] = STATE(398), - [sym_pointer_type] = STATE(398), - [sym_array_type] = STATE(398), - [sym_function_type] = STATE(398), - [sym_builtin_type] = STATE(398), - [sym_qualified_identifier] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(267), - [sym_identifier] = ACTIONS(319), - [anon_sym_import] = ACTIONS(271), - [anon_sym_func] = ACTIONS(322), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(271), - [anon_sym_struct] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_RPAREN] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(271), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_PIPE] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(325), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(328), - [anon_sym_mut] = ACTIONS(331), - [anon_sym_LBRACK] = ACTIONS(333), - [anon_sym_void] = ACTIONS(336), - [anon_sym_anyopaque] = ACTIONS(336), - [anon_sym_bool] = ACTIONS(336), - [anon_sym_int] = ACTIONS(336), - [anon_sym_float] = ACTIONS(336), - [anon_sym_range] = ACTIONS(336), - [anon_sym_i8] = ACTIONS(336), - [anon_sym_i16] = ACTIONS(336), - [anon_sym_i32] = ACTIONS(336), - [anon_sym_i64] = ACTIONS(336), - [anon_sym_u8] = ACTIONS(336), - [anon_sym_u16] = ACTIONS(336), - [anon_sym_u32] = ACTIONS(336), - [anon_sym_u64] = ACTIONS(336), - [anon_sym_isize] = ACTIONS(336), - [anon_sym_usize] = ACTIONS(336), - [anon_sym_f32] = ACTIONS(336), - [anon_sym_f64] = ACTIONS(336), - [anon_sym_c_char] = ACTIONS(336), - [anon_sym_c_schar] = ACTIONS(336), - [anon_sym_c_uchar] = ACTIONS(336), - [anon_sym_c_short] = ACTIONS(336), - [anon_sym_c_ushort] = ACTIONS(336), - [anon_sym_c_int] = ACTIONS(336), - [anon_sym_c_uint] = ACTIONS(336), - [anon_sym_c_long] = ACTIONS(336), - [anon_sym_c_ulong] = ACTIONS(336), - [anon_sym_c_longlong] = ACTIONS(336), - [anon_sym_c_ulonglong] = ACTIONS(336), - [anon_sym_c_float] = ACTIONS(336), - [anon_sym_c_double] = ACTIONS(336), - [anon_sym_c_longdouble] = ACTIONS(336), - [anon_sym_PLUS_EQ] = ACTIONS(267), - [anon_sym_DASH_EQ] = ACTIONS(267), - [anon_sym_STAR_EQ] = ACTIONS(267), - [anon_sym_SLASH_EQ] = ACTIONS(267), - [anon_sym_return] = ACTIONS(271), - [anon_sym_yield] = ACTIONS(271), - [anon_sym_break] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_defer] = ACTIONS(271), - [anon_sym_errdefer] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_DOT_DOT] = ACTIONS(271), - [anon_sym_DOT_DOT_EQ] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(267), - [anon_sym_BANG_EQ] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(267), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(267), - [anon_sym_PLUS] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(267), - [anon_sym_try] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_true] = ACTIONS(271), - [anon_sym_false] = ACTIONS(271), - [sym_none] = ACTIONS(271), - [sym_undefined] = ACTIONS(271), - [sym_sink] = ACTIONS(271), - [sym_integer] = ACTIONS(271), - [sym_float] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(267), - [sym_multiline_string] = ACTIONS(267), - [sym_character] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(267), - }, - [STATE(33)] = { - [sym_type] = STATE(441), - [sym__type_atom] = STATE(398), - [sym_named_type] = STATE(398), - [sym_optional_type] = STATE(398), - [sym_pointer_type] = STATE(398), - [sym_array_type] = STATE(398), - [sym_function_type] = STATE(398), - [sym_builtin_type] = STATE(398), - [sym_qualified_identifier] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(267), - [sym_identifier] = ACTIONS(319), - [anon_sym_import] = ACTIONS(271), - [anon_sym_func] = ACTIONS(322), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(271), - [anon_sym_struct] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_RPAREN] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(271), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_PIPE] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(325), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(328), - [anon_sym_mut] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(333), - [anon_sym_void] = ACTIONS(336), - [anon_sym_anyopaque] = ACTIONS(336), - [anon_sym_bool] = ACTIONS(336), - [anon_sym_int] = ACTIONS(336), - [anon_sym_float] = ACTIONS(336), - [anon_sym_range] = ACTIONS(336), - [anon_sym_i8] = ACTIONS(336), - [anon_sym_i16] = ACTIONS(336), - [anon_sym_i32] = ACTIONS(336), - [anon_sym_i64] = ACTIONS(336), - [anon_sym_u8] = ACTIONS(336), - [anon_sym_u16] = ACTIONS(336), - [anon_sym_u32] = ACTIONS(336), - [anon_sym_u64] = ACTIONS(336), - [anon_sym_isize] = ACTIONS(336), - [anon_sym_usize] = ACTIONS(336), - [anon_sym_f32] = ACTIONS(336), - [anon_sym_f64] = ACTIONS(336), - [anon_sym_c_char] = ACTIONS(336), - [anon_sym_c_schar] = ACTIONS(336), - [anon_sym_c_uchar] = ACTIONS(336), - [anon_sym_c_short] = ACTIONS(336), - [anon_sym_c_ushort] = ACTIONS(336), - [anon_sym_c_int] = ACTIONS(336), - [anon_sym_c_uint] = ACTIONS(336), - [anon_sym_c_long] = ACTIONS(336), - [anon_sym_c_ulong] = ACTIONS(336), - [anon_sym_c_longlong] = ACTIONS(336), - [anon_sym_c_ulonglong] = ACTIONS(336), - [anon_sym_c_float] = ACTIONS(336), - [anon_sym_c_double] = ACTIONS(336), - [anon_sym_c_longdouble] = ACTIONS(336), - [anon_sym_PLUS_EQ] = ACTIONS(267), - [anon_sym_DASH_EQ] = ACTIONS(267), - [anon_sym_STAR_EQ] = ACTIONS(267), - [anon_sym_SLASH_EQ] = ACTIONS(267), - [anon_sym_return] = ACTIONS(271), - [anon_sym_yield] = ACTIONS(271), - [anon_sym_break] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_defer] = ACTIONS(271), - [anon_sym_errdefer] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_DOT_DOT] = ACTIONS(271), - [anon_sym_DOT_DOT_EQ] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(267), - [anon_sym_BANG_EQ] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(267), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(267), - [anon_sym_PLUS] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(267), - [anon_sym_try] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_true] = ACTIONS(271), - [anon_sym_false] = ACTIONS(271), - [sym_none] = ACTIONS(271), - [sym_undefined] = ACTIONS(271), - [sym_sink] = ACTIONS(271), - [sym_integer] = ACTIONS(271), - [sym_float] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(267), - [sym_multiline_string] = ACTIONS(267), - [sym_character] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(267), - }, - [STATE(34)] = { - [sym_type] = STATE(428), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(285), - [sym_identifier] = ACTIONS(341), - [anon_sym_import] = ACTIONS(289), - [anon_sym_func] = ACTIONS(341), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_struct] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_PIPE] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_mut] = ACTIONS(345), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_void] = ACTIONS(341), - [anon_sym_anyopaque] = ACTIONS(341), - [anon_sym_bool] = ACTIONS(341), - [anon_sym_int] = ACTIONS(341), - [anon_sym_float] = ACTIONS(341), - [anon_sym_range] = ACTIONS(341), - [anon_sym_i8] = ACTIONS(341), - [anon_sym_i16] = ACTIONS(341), - [anon_sym_i32] = ACTIONS(341), - [anon_sym_i64] = ACTIONS(341), - [anon_sym_u8] = ACTIONS(341), - [anon_sym_u16] = ACTIONS(341), - [anon_sym_u32] = ACTIONS(341), - [anon_sym_u64] = ACTIONS(341), - [anon_sym_isize] = ACTIONS(341), - [anon_sym_usize] = ACTIONS(341), - [anon_sym_f32] = ACTIONS(341), - [anon_sym_f64] = ACTIONS(341), - [anon_sym_c_char] = ACTIONS(341), - [anon_sym_c_schar] = ACTIONS(341), - [anon_sym_c_uchar] = ACTIONS(341), - [anon_sym_c_short] = ACTIONS(341), - [anon_sym_c_ushort] = ACTIONS(341), - [anon_sym_c_int] = ACTIONS(341), - [anon_sym_c_uint] = ACTIONS(341), - [anon_sym_c_long] = ACTIONS(341), - [anon_sym_c_ulong] = ACTIONS(341), - [anon_sym_c_longlong] = ACTIONS(341), - [anon_sym_c_ulonglong] = ACTIONS(341), - [anon_sym_c_float] = ACTIONS(341), - [anon_sym_c_double] = ACTIONS(341), - [anon_sym_c_longdouble] = ACTIONS(341), - [anon_sym_PLUS_EQ] = ACTIONS(285), - [anon_sym_DASH_EQ] = ACTIONS(285), - [anon_sym_STAR_EQ] = ACTIONS(285), - [anon_sym_SLASH_EQ] = ACTIONS(285), - [anon_sym_return] = ACTIONS(341), - [anon_sym_yield] = ACTIONS(341), - [anon_sym_break] = ACTIONS(341), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_defer] = ACTIONS(341), - [anon_sym_errdefer] = ACTIONS(341), - [anon_sym_if] = ACTIONS(341), - [anon_sym_else] = ACTIONS(289), - [anon_sym_while] = ACTIONS(341), - [anon_sym_for] = ACTIONS(341), - [anon_sym_match] = ACTIONS(341), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_DOT_DOT_EQ] = ACTIONS(343), - [anon_sym_orelse] = ACTIONS(341), - [anon_sym_catch] = ACTIONS(341), - [anon_sym_or] = ACTIONS(341), - [anon_sym_and] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(343), - [anon_sym_try] = ACTIONS(341), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_true] = ACTIONS(341), - [anon_sym_false] = ACTIONS(341), - [sym_none] = ACTIONS(341), - [sym_undefined] = ACTIONS(341), - [sym_sink] = ACTIONS(341), - [sym_integer] = ACTIONS(341), - [sym_float] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(343), - [sym_multiline_string] = ACTIONS(343), - [sym_character] = ACTIONS(343), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(343), - }, - [STATE(35)] = { - [sym_type] = STATE(426), - [sym__type_atom] = STATE(398), - [sym_named_type] = STATE(398), - [sym_optional_type] = STATE(398), - [sym_pointer_type] = STATE(398), - [sym_array_type] = STATE(398), - [sym_function_type] = STATE(398), - [sym_builtin_type] = STATE(398), - [sym_qualified_identifier] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(285), - [sym_identifier] = ACTIONS(347), - [anon_sym_import] = ACTIONS(289), - [anon_sym_func] = ACTIONS(350), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(289), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_struct] = ACTIONS(289), - [anon_sym_LPAREN] = ACTIONS(285), - [anon_sym_RPAREN] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_QMARK] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(356), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_void] = ACTIONS(364), - [anon_sym_anyopaque] = ACTIONS(364), - [anon_sym_bool] = ACTIONS(364), - [anon_sym_int] = ACTIONS(364), - [anon_sym_float] = ACTIONS(364), - [anon_sym_range] = ACTIONS(364), - [anon_sym_i8] = ACTIONS(364), - [anon_sym_i16] = ACTIONS(364), - [anon_sym_i32] = ACTIONS(364), - [anon_sym_i64] = ACTIONS(364), - [anon_sym_u8] = ACTIONS(364), - [anon_sym_u16] = ACTIONS(364), - [anon_sym_u32] = ACTIONS(364), - [anon_sym_u64] = ACTIONS(364), - [anon_sym_isize] = ACTIONS(364), - [anon_sym_usize] = ACTIONS(364), - [anon_sym_f32] = ACTIONS(364), - [anon_sym_f64] = ACTIONS(364), - [anon_sym_c_char] = ACTIONS(364), - [anon_sym_c_schar] = ACTIONS(364), - [anon_sym_c_uchar] = ACTIONS(364), - [anon_sym_c_short] = ACTIONS(364), - [anon_sym_c_ushort] = ACTIONS(364), - [anon_sym_c_int] = ACTIONS(364), - [anon_sym_c_uint] = ACTIONS(364), - [anon_sym_c_long] = ACTIONS(364), - [anon_sym_c_ulong] = ACTIONS(364), - [anon_sym_c_longlong] = ACTIONS(364), - [anon_sym_c_ulonglong] = ACTIONS(364), - [anon_sym_c_float] = ACTIONS(364), - [anon_sym_c_double] = ACTIONS(364), - [anon_sym_c_longdouble] = ACTIONS(364), - [anon_sym_PLUS_EQ] = ACTIONS(285), - [anon_sym_DASH_EQ] = ACTIONS(285), - [anon_sym_STAR_EQ] = ACTIONS(285), - [anon_sym_SLASH_EQ] = ACTIONS(285), - [anon_sym_return] = ACTIONS(289), - [anon_sym_yield] = ACTIONS(289), - [anon_sym_break] = ACTIONS(289), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_defer] = ACTIONS(289), - [anon_sym_errdefer] = ACTIONS(289), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(289), - [anon_sym_while] = ACTIONS(289), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(289), - [anon_sym_DOT_DOT] = ACTIONS(289), - [anon_sym_DOT_DOT_EQ] = ACTIONS(285), - [anon_sym_orelse] = ACTIONS(289), - [anon_sym_catch] = ACTIONS(289), - [anon_sym_or] = ACTIONS(289), - [anon_sym_and] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(289), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(289), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_try] = ACTIONS(289), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [sym_none] = ACTIONS(289), - [sym_undefined] = ACTIONS(289), - [sym_sink] = ACTIONS(289), - [sym_integer] = ACTIONS(289), - [sym_float] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [sym_multiline_string] = ACTIONS(285), - [sym_character] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(285), - }, - [STATE(36)] = { - [sym_type] = STATE(428), - [sym__type_atom] = STATE(398), - [sym_named_type] = STATE(398), - [sym_optional_type] = STATE(398), - [sym_pointer_type] = STATE(398), - [sym_array_type] = STATE(398), - [sym_function_type] = STATE(398), - [sym_builtin_type] = STATE(398), - [sym_qualified_identifier] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(285), - [sym_identifier] = ACTIONS(347), - [anon_sym_import] = ACTIONS(289), - [anon_sym_func] = ACTIONS(350), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(289), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_struct] = ACTIONS(289), - [anon_sym_LPAREN] = ACTIONS(285), - [anon_sym_RPAREN] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_QMARK] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(356), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_void] = ACTIONS(364), - [anon_sym_anyopaque] = ACTIONS(364), - [anon_sym_bool] = ACTIONS(364), - [anon_sym_int] = ACTIONS(364), - [anon_sym_float] = ACTIONS(364), - [anon_sym_range] = ACTIONS(364), - [anon_sym_i8] = ACTIONS(364), - [anon_sym_i16] = ACTIONS(364), - [anon_sym_i32] = ACTIONS(364), - [anon_sym_i64] = ACTIONS(364), - [anon_sym_u8] = ACTIONS(364), - [anon_sym_u16] = ACTIONS(364), - [anon_sym_u32] = ACTIONS(364), - [anon_sym_u64] = ACTIONS(364), - [anon_sym_isize] = ACTIONS(364), - [anon_sym_usize] = ACTIONS(364), - [anon_sym_f32] = ACTIONS(364), - [anon_sym_f64] = ACTIONS(364), - [anon_sym_c_char] = ACTIONS(364), - [anon_sym_c_schar] = ACTIONS(364), - [anon_sym_c_uchar] = ACTIONS(364), - [anon_sym_c_short] = ACTIONS(364), - [anon_sym_c_ushort] = ACTIONS(364), - [anon_sym_c_int] = ACTIONS(364), - [anon_sym_c_uint] = ACTIONS(364), - [anon_sym_c_long] = ACTIONS(364), - [anon_sym_c_ulong] = ACTIONS(364), - [anon_sym_c_longlong] = ACTIONS(364), - [anon_sym_c_ulonglong] = ACTIONS(364), - [anon_sym_c_float] = ACTIONS(364), - [anon_sym_c_double] = ACTIONS(364), - [anon_sym_c_longdouble] = ACTIONS(364), - [anon_sym_PLUS_EQ] = ACTIONS(285), - [anon_sym_DASH_EQ] = ACTIONS(285), - [anon_sym_STAR_EQ] = ACTIONS(285), - [anon_sym_SLASH_EQ] = ACTIONS(285), - [anon_sym_return] = ACTIONS(289), - [anon_sym_yield] = ACTIONS(289), - [anon_sym_break] = ACTIONS(289), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_defer] = ACTIONS(289), - [anon_sym_errdefer] = ACTIONS(289), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(289), - [anon_sym_while] = ACTIONS(289), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(289), - [anon_sym_DOT_DOT] = ACTIONS(289), - [anon_sym_DOT_DOT_EQ] = ACTIONS(285), - [anon_sym_orelse] = ACTIONS(289), - [anon_sym_catch] = ACTIONS(289), - [anon_sym_or] = ACTIONS(289), - [anon_sym_and] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(289), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(289), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_try] = ACTIONS(289), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [sym_none] = ACTIONS(289), - [sym_undefined] = ACTIONS(289), - [sym_sink] = ACTIONS(289), - [sym_integer] = ACTIONS(289), - [sym_float] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [sym_multiline_string] = ACTIONS(285), - [sym_character] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(285), - }, - [STATE(37)] = { - [sym_type] = STATE(430), - [sym__type_atom] = STATE(398), - [sym_named_type] = STATE(398), - [sym_optional_type] = STATE(398), - [sym_pointer_type] = STATE(398), - [sym_array_type] = STATE(398), - [sym_function_type] = STATE(398), - [sym_builtin_type] = STATE(398), - [sym_qualified_identifier] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(369), - [sym_identifier] = ACTIONS(371), - [anon_sym_import] = ACTIONS(374), - [anon_sym_func] = ACTIONS(376), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_struct] = ACTIONS(374), - [anon_sym_LPAREN] = ACTIONS(369), - [anon_sym_RPAREN] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(369), - [anon_sym_RBRACE] = ACTIONS(369), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_DOLLAR] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(369), - [anon_sym_QMARK] = ACTIONS(379), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_mut] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_void] = ACTIONS(390), - [anon_sym_anyopaque] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_int] = ACTIONS(390), - [anon_sym_float] = ACTIONS(390), - [anon_sym_range] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_isize] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_f32] = ACTIONS(390), - [anon_sym_f64] = ACTIONS(390), - [anon_sym_c_char] = ACTIONS(390), - [anon_sym_c_schar] = ACTIONS(390), - [anon_sym_c_uchar] = ACTIONS(390), - [anon_sym_c_short] = ACTIONS(390), - [anon_sym_c_ushort] = ACTIONS(390), - [anon_sym_c_int] = ACTIONS(390), - [anon_sym_c_uint] = ACTIONS(390), - [anon_sym_c_long] = ACTIONS(390), - [anon_sym_c_ulong] = ACTIONS(390), - [anon_sym_c_longlong] = ACTIONS(390), - [anon_sym_c_ulonglong] = ACTIONS(390), - [anon_sym_c_float] = ACTIONS(390), - [anon_sym_c_double] = ACTIONS(390), - [anon_sym_c_longdouble] = ACTIONS(390), - [anon_sym_PLUS_EQ] = ACTIONS(369), - [anon_sym_DASH_EQ] = ACTIONS(369), - [anon_sym_STAR_EQ] = ACTIONS(369), - [anon_sym_SLASH_EQ] = ACTIONS(369), - [anon_sym_return] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_break] = ACTIONS(374), - [anon_sym_continue] = ACTIONS(374), - [anon_sym_defer] = ACTIONS(374), - [anon_sym_errdefer] = ACTIONS(374), - [anon_sym_if] = ACTIONS(374), - [anon_sym_else] = ACTIONS(374), - [anon_sym_while] = ACTIONS(374), - [anon_sym_for] = ACTIONS(374), - [anon_sym_match] = ACTIONS(374), - [anon_sym_DOT_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_orelse] = ACTIONS(374), - [anon_sym_catch] = ACTIONS(374), - [anon_sym_or] = ACTIONS(374), - [anon_sym_and] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(369), - [anon_sym_try] = ACTIONS(374), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(369), - [anon_sym_true] = ACTIONS(374), - [anon_sym_false] = ACTIONS(374), - [sym_none] = ACTIONS(374), - [sym_undefined] = ACTIONS(374), - [sym_sink] = ACTIONS(374), - [sym_integer] = ACTIONS(374), - [sym_float] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [sym_multiline_string] = ACTIONS(369), - [sym_character] = ACTIONS(369), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(369), - }, - [STATE(38)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1204), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_error_capture] = STATE(372), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(253), + [STATE(44)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1262), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1262), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(193), [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -13418,24 +14120,4452 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(193), [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), + [sym_sink] = ACTIONS(195), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(341), + }, + [STATE(45)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1267), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1267), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(175), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(195), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(343), + }, + [STATE(46)] = { + [sym_type] = STATE(431), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(345), + [sym_identifier] = ACTIONS(347), + [anon_sym_import] = ACTIONS(349), + [anon_sym_func] = ACTIONS(347), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(347), + [anon_sym_EQ] = ACTIONS(349), + [anon_sym_struct] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_RBRACE] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(347), + [anon_sym_mut] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_void] = ACTIONS(347), + [anon_sym_anyopaque] = ACTIONS(347), + [anon_sym_bool] = ACTIONS(347), + [anon_sym_int] = ACTIONS(347), + [anon_sym_float] = ACTIONS(347), + [anon_sym_range] = ACTIONS(347), + [anon_sym_i8] = ACTIONS(347), + [anon_sym_i16] = ACTIONS(347), + [anon_sym_i32] = ACTIONS(347), + [anon_sym_i64] = ACTIONS(347), + [anon_sym_u8] = ACTIONS(347), + [anon_sym_u16] = ACTIONS(347), + [anon_sym_u32] = ACTIONS(347), + [anon_sym_u64] = ACTIONS(347), + [anon_sym_isize] = ACTIONS(347), + [anon_sym_usize] = ACTIONS(347), + [anon_sym_f32] = ACTIONS(347), + [anon_sym_f64] = ACTIONS(347), + [anon_sym_c_char] = ACTIONS(347), + [anon_sym_c_schar] = ACTIONS(347), + [anon_sym_c_uchar] = ACTIONS(347), + [anon_sym_c_short] = ACTIONS(347), + [anon_sym_c_ushort] = ACTIONS(347), + [anon_sym_c_int] = ACTIONS(347), + [anon_sym_c_uint] = ACTIONS(347), + [anon_sym_c_long] = ACTIONS(347), + [anon_sym_c_ulong] = ACTIONS(347), + [anon_sym_c_longlong] = ACTIONS(347), + [anon_sym_c_ulonglong] = ACTIONS(347), + [anon_sym_c_float] = ACTIONS(347), + [anon_sym_c_double] = ACTIONS(347), + [anon_sym_c_longdouble] = ACTIONS(347), + [anon_sym_PLUS_EQ] = ACTIONS(345), + [anon_sym_DASH_EQ] = ACTIONS(345), + [anon_sym_STAR_EQ] = ACTIONS(345), + [anon_sym_SLASH_EQ] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(347), + [anon_sym_break] = ACTIONS(347), + [anon_sym_continue] = ACTIONS(347), + [anon_sym_defer] = ACTIONS(347), + [anon_sym_errdefer] = ACTIONS(347), + [anon_sym_if] = ACTIONS(347), + [anon_sym_else] = ACTIONS(349), + [anon_sym_while] = ACTIONS(347), + [anon_sym_for] = ACTIONS(347), + [anon_sym_match] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT_EQ] = ACTIONS(351), + [anon_sym_orelse] = ACTIONS(347), + [anon_sym_catch] = ACTIONS(347), + [anon_sym_or] = ACTIONS(347), + [anon_sym_and] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_try] = ACTIONS(347), + [anon_sym_DOT] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(351), + [anon_sym_true] = ACTIONS(347), + [anon_sym_false] = ACTIONS(347), + [sym_none] = ACTIONS(347), + [sym_undefined] = ACTIONS(347), + [sym_sink] = ACTIONS(347), + [sym_integer] = ACTIONS(347), + [sym_float] = ACTIONS(351), + [anon_sym_DQUOTE] = ACTIONS(351), + [sym_multiline_string] = ACTIONS(351), + [sym_character] = ACTIONS(351), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(351), + }, + [STATE(47)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1192), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1192), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(48)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1193), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1193), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(49)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1193), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1193), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(355), + }, + [STATE(50)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1194), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1194), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(51)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1194), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1194), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(357), + }, + [STATE(52)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1195), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1195), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(359), + }, + [STATE(53)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1196), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1196), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(54)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1264), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1264), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(195), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(55)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1265), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1265), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(195), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(56)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1265), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1265), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(175), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(195), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(361), + }, + [STATE(57)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1217), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1217), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(58)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1218), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1218), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(59)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1219), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1219), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(60)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1219), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1219), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(363), + }, + [STATE(61)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1266), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1266), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(195), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(62)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1019), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1019), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(63)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(125), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_block_repeat1] = STATE(125), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(367), + }, + [STATE(64)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1237), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1237), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(67), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(369), + }, + [STATE(65)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1237), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1237), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(66)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(63), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_block_repeat1] = STATE(63), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(371), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(373), + }, + [STATE(67)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1239), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1239), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(68)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1148), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1148), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(375), + }, + [STATE(69)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1240), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1240), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(74), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(377), + }, + [STATE(70)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1240), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1240), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(71)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1163), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1163), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(76), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(379), + }, + [STATE(72)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1164), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1164), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(73)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1164), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1164), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(381), + }, + [STATE(74)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1241), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1241), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(75)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1165), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1165), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(81), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(383), + }, + [STATE(76)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1175), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1175), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(77)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1175), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1175), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(385), + }, + [STATE(78)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1176), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1176), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(84), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(387), + }, + [STATE(79)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1177), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1177), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(80)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1178), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1178), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(389), + }, + [STATE(81)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1179), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1179), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(82)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1179), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1179), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(89), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(391), + }, + [STATE(83)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1192), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1192), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(84)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1193), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1193), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(85)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1193), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1193), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(90), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -13444,271 +18574,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(393), }, - [STATE(39)] = { - [sym_type] = STATE(430), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(369), - [sym_identifier] = ACTIONS(395), - [anon_sym_import] = ACTIONS(374), - [anon_sym_func] = ACTIONS(395), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_struct] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_RBRACE] = ACTIONS(369), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_mut] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_void] = ACTIONS(395), - [anon_sym_anyopaque] = ACTIONS(395), - [anon_sym_bool] = ACTIONS(395), - [anon_sym_int] = ACTIONS(395), - [anon_sym_float] = ACTIONS(395), - [anon_sym_range] = ACTIONS(395), - [anon_sym_i8] = ACTIONS(395), - [anon_sym_i16] = ACTIONS(395), - [anon_sym_i32] = ACTIONS(395), - [anon_sym_i64] = ACTIONS(395), - [anon_sym_u8] = ACTIONS(395), - [anon_sym_u16] = ACTIONS(395), - [anon_sym_u32] = ACTIONS(395), - [anon_sym_u64] = ACTIONS(395), - [anon_sym_isize] = ACTIONS(395), - [anon_sym_usize] = ACTIONS(395), - [anon_sym_f32] = ACTIONS(395), - [anon_sym_f64] = ACTIONS(395), - [anon_sym_c_char] = ACTIONS(395), - [anon_sym_c_schar] = ACTIONS(395), - [anon_sym_c_uchar] = ACTIONS(395), - [anon_sym_c_short] = ACTIONS(395), - [anon_sym_c_ushort] = ACTIONS(395), - [anon_sym_c_int] = ACTIONS(395), - [anon_sym_c_uint] = ACTIONS(395), - [anon_sym_c_long] = ACTIONS(395), - [anon_sym_c_ulong] = ACTIONS(395), - [anon_sym_c_longlong] = ACTIONS(395), - [anon_sym_c_ulonglong] = ACTIONS(395), - [anon_sym_c_float] = ACTIONS(395), - [anon_sym_c_double] = ACTIONS(395), - [anon_sym_c_longdouble] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(369), - [anon_sym_DASH_EQ] = ACTIONS(369), - [anon_sym_STAR_EQ] = ACTIONS(369), - [anon_sym_SLASH_EQ] = ACTIONS(369), - [anon_sym_return] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_defer] = ACTIONS(395), - [anon_sym_errdefer] = ACTIONS(395), - [anon_sym_if] = ACTIONS(395), - [anon_sym_else] = ACTIONS(374), - [anon_sym_while] = ACTIONS(395), - [anon_sym_for] = ACTIONS(395), - [anon_sym_match] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_orelse] = ACTIONS(395), - [anon_sym_catch] = ACTIONS(395), - [anon_sym_or] = ACTIONS(395), - [anon_sym_and] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_try] = ACTIONS(395), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_true] = ACTIONS(395), - [anon_sym_false] = ACTIONS(395), - [sym_none] = ACTIONS(395), - [sym_undefined] = ACTIONS(395), - [sym_sink] = ACTIONS(395), - [sym_integer] = ACTIONS(395), - [sym_float] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(397), - [sym_multiline_string] = ACTIONS(397), - [sym_character] = ACTIONS(397), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(397), - }, - [STATE(40)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1221), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_error_capture] = STATE(363), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), + [STATE(86)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1194), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1194), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(229), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(41)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1204), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_error_capture] = STATE(341), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(42), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_PIPE] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -13742,24 +18656,996 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(87)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1194), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1194), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(91), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(395), + }, + [STATE(88)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1195), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1195), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(397), + }, + [STATE(89)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1196), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1196), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(90)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1217), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1217), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(91)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1218), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1218), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(92)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1219), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1219), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(93)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1219), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1219), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(94), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(399), + }, + [STATE(94)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1019), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1019), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(95)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1572), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1572), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(97), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -13768,163 +19654,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(401), }, - [STATE(42)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1221), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_error_capture] = STATE(343), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), + [STATE(96)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1572), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1572), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(43)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1204), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_error_capture] = STATE(353), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(44), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_PIPE] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -13958,24 +19736,1536 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(97)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1576), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1576), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(98)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1148), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1148), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(102), + [sym_identifier] = ACTIONS(293), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(305), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(403), + }, + [STATE(99)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1577), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1577), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(104), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(405), + }, + [STATE(100)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1577), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1577), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(101)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1163), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1163), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(106), + [sym_identifier] = ACTIONS(293), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(305), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(407), + }, + [STATE(102)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1164), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1164), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(293), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(305), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(103)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1164), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1164), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(109), + [sym_identifier] = ACTIONS(293), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(305), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(409), + }, + [STATE(104)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1578), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1578), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(105)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1165), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1165), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(111), + [sym_identifier] = ACTIONS(293), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(305), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(411), + }, + [STATE(106)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1175), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1175), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(293), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(305), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(107)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1175), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1175), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(113), + [sym_identifier] = ACTIONS(293), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(305), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(413), + }, + [STATE(108)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1176), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1176), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(114), + [sym_identifier] = ACTIONS(293), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(305), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(415), + }, + [STATE(109)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1177), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1177), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(293), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(305), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(110)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1178), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1178), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(116), + [sym_identifier] = ACTIONS(293), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(305), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -13984,55 +21274,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(417), }, - [STATE(44)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1221), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_error_capture] = STATE(357), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(403), + [STATE(111)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1179), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1179), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(293), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_PIPE] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -14066,81 +21356,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), + [sym_sink] = ACTIONS(305), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(45)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1204), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_error_capture] = STATE(333), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(25), - [sym_identifier] = ACTIONS(13), + [STATE(112)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1179), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1179), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(119), + [sym_identifier] = ACTIONS(293), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_PIPE] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -14174,24 +21464,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), + [sym_sink] = ACTIONS(305), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -14200,7226 +21490,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(419), }, - [STATE(46)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1221), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_error_capture] = STATE(368), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(421), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(47)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1204), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_error_capture] = STATE(366), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(421), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(435), - }, - [STATE(48)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1167), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1167), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(421), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(437), - }, - [STATE(49)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1155), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1155), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(50)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1528), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1528), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(52), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(439), - }, - [STATE(51)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1528), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1528), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(52)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1531), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1531), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(53)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1108), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1108), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(58), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(441), - }, - [STATE(54)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1520), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1520), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(443), - }, - [STATE(55)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1520), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1520), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(56)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(177), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_block_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - }, - [STATE(57)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1043), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1043), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(63), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(449), - }, - [STATE(58)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1046), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1046), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(59)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1046), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1046), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(451), - }, - [STATE(60)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1533), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1533), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(61)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1048), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1048), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(453), - }, - [STATE(62)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1266), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1266), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(70), - [sym_identifier] = ACTIONS(149), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(455), - }, - [STATE(63)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(64)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(73), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(457), - }, - [STATE(65)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1158), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1158), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(74), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(459), - }, - [STATE(66)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1163), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1163), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(67)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1165), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1165), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(461), - }, - [STATE(68)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1167), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1167), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(69)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1167), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1167), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(463), - }, - [STATE(70)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1262), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1262), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(149), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(71)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1262), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1262), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(80), - [sym_identifier] = ACTIONS(149), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(465), - }, - [STATE(72)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1263), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1263), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(81), - [sym_identifier] = ACTIONS(149), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(467), - }, - [STATE(73)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1184), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1184), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(74)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1185), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1185), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(75)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1185), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1185), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(469), - }, - [STATE(76)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(77)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(84), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(471), - }, - [STATE(78)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1187), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1187), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(85), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(473), - }, - [STATE(79)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1188), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1188), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(80)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1264), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1264), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(149), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(81)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1261), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1261), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(149), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(82)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1261), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1261), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(87), - [sym_identifier] = ACTIONS(149), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(475), - }, - [STATE(83)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1218), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1218), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(84)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1219), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1219), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(85)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1220), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1220), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(86)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1220), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1220), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(88), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(477), - }, - [STATE(87)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1265), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1265), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(149), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(88)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1155), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1155), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(89)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1238), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1238), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(91), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(479), - }, - [STATE(90)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1238), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1238), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(91)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1240), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1240), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(92)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1108), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1108), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(96), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(481), - }, - [STATE(93)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1235), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1235), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(98), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(483), - }, - [STATE(94)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1235), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1235), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(95)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1043), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1043), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(100), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(485), - }, - [STATE(96)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1046), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1046), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(97)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1046), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1046), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(103), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(487), - }, - [STATE(98)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1243), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1243), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(99)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1048), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1048), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(105), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(489), - }, - [STATE(100)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(101)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(107), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(491), - }, - [STATE(102)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1158), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1158), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(108), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(493), - }, - [STATE(103)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1163), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1163), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(104)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1165), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1165), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(495), - }, - [STATE(105)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1167), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1167), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(106)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1167), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1167), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(497), - }, - [STATE(107)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1184), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1184), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(108)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1185), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1185), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(109)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1185), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1185), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(114), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(499), - }, - [STATE(110)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(111)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(501), - }, - [STATE(112)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1187), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1187), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(503), - }, [STATE(113)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1188), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1188), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(229), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1192), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1192), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(293), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -21452,81 +21572,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), + [sym_sink] = ACTIONS(305), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(114)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1218), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1218), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(229), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1193), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1193), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(293), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -21559,81 +21680,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), + [sym_sink] = ACTIONS(305), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(115)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1219), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1219), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(229), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1193), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1193), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(120), + [sym_identifier] = ACTIONS(293), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -21666,81 +21788,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), + [sym_sink] = ACTIONS(305), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(421), }, [STATE(116)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1220), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1220), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(229), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1194), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1194), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(293), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -21773,81 +21896,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), + [sym_sink] = ACTIONS(305), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(117)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1220), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1220), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(118), - [sym_identifier] = ACTIONS(229), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1194), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1194), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(293), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -21880,81 +22004,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), + [sym_sink] = ACTIONS(305), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(505), + [sym__newline] = ACTIONS(423), }, [STATE(118)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1155), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1155), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(229), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1195), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1195), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(122), + [sym_identifier] = ACTIONS(293), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -21987,80 +22112,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), + [sym_sink] = ACTIONS(305), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(425), }, [STATE(119)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1539), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1539), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(123), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1196), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1196), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(293), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -22094,80 +22220,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), + [sym_sink] = ACTIONS(305), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(507), + [sym__newline] = ACTIONS(227), }, [STATE(120)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1539), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1539), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1217), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1217), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(293), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -22201,80 +22328,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), + [sym_sink] = ACTIONS(305), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(121)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1547), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1547), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1218), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1218), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(293), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -22308,80 +22436,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), + [sym_sink] = ACTIONS(305), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(122)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1108), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1108), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(126), - [sym_identifier] = ACTIONS(421), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1219), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1219), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(293), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -22415,401 +22544,405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(305), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(123)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1219), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1219), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(293), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(305), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(427), + }, + [STATE(124)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1019), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1019), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(293), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(305), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(125)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(125), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_block_repeat1] = STATE(125), + [sym_identifier] = ACTIONS(429), + [anon_sym_func] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(435), + [anon_sym_struct] = ACTIONS(438), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_RBRACE] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_void] = ACTIONS(455), + [anon_sym_anyopaque] = ACTIONS(455), + [anon_sym_bool] = ACTIONS(455), + [anon_sym_int] = ACTIONS(455), + [anon_sym_float] = ACTIONS(455), + [anon_sym_range] = ACTIONS(455), + [anon_sym_i8] = ACTIONS(455), + [anon_sym_i16] = ACTIONS(455), + [anon_sym_i32] = ACTIONS(455), + [anon_sym_i64] = ACTIONS(455), + [anon_sym_u8] = ACTIONS(455), + [anon_sym_u16] = ACTIONS(455), + [anon_sym_u32] = ACTIONS(455), + [anon_sym_u64] = ACTIONS(455), + [anon_sym_isize] = ACTIONS(455), + [anon_sym_usize] = ACTIONS(455), + [anon_sym_f32] = ACTIONS(455), + [anon_sym_f64] = ACTIONS(455), + [anon_sym_c_char] = ACTIONS(455), + [anon_sym_c_schar] = ACTIONS(455), + [anon_sym_c_uchar] = ACTIONS(455), + [anon_sym_c_short] = ACTIONS(455), + [anon_sym_c_ushort] = ACTIONS(455), + [anon_sym_c_int] = ACTIONS(455), + [anon_sym_c_uint] = ACTIONS(455), + [anon_sym_c_long] = ACTIONS(455), + [anon_sym_c_ulong] = ACTIONS(455), + [anon_sym_c_longlong] = ACTIONS(455), + [anon_sym_c_ulonglong] = ACTIONS(455), + [anon_sym_c_float] = ACTIONS(455), + [anon_sym_c_double] = ACTIONS(455), + [anon_sym_c_longdouble] = ACTIONS(455), + [anon_sym_return] = ACTIONS(458), + [anon_sym_yield] = ACTIONS(461), + [anon_sym_break] = ACTIONS(464), + [anon_sym_continue] = ACTIONS(467), + [anon_sym_defer] = ACTIONS(470), + [anon_sym_errdefer] = ACTIONS(473), + [anon_sym_if] = ACTIONS(476), + [anon_sym_while] = ACTIONS(479), + [anon_sym_for] = ACTIONS(482), + [anon_sym_match] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(435), + [anon_sym_try] = ACTIONS(488), + [anon_sym_DOT] = ACTIONS(491), + [anon_sym_true] = ACTIONS(494), + [anon_sym_false] = ACTIONS(494), + [sym_none] = ACTIONS(497), + [sym_undefined] = ACTIONS(497), + [sym_sink] = ACTIONS(500), + [sym_integer] = ACTIONS(497), + [sym_float] = ACTIONS(503), + [anon_sym_DQUOTE] = ACTIONS(506), + [sym_multiline_string] = ACTIONS(503), + [sym_character] = ACTIONS(503), + [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(509), }, - [STATE(123)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1548), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1548), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(128), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(511), - }, - [STATE(124)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1548), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1548), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(125)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1043), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1043), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(130), - [sym_identifier] = ACTIONS(421), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(513), - }, [STATE(126)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1046), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1046), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(421), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1533), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1533), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -22843,81 +22976,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(85), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(512), }, [STATE(127)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1046), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1046), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(421), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1259), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1259), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(130), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -22950,81 +23084,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(515), + [sym__newline] = ACTIONS(514), }, [STATE(128)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1549), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1549), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1259), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1259), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -23057,80 +23192,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(129)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1048), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1048), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(421), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1533), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1533), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -23164,81 +23300,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(85), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(517), + [sym__newline] = ACTIONS(227), }, [STATE(130)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(421), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1258), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1258), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -23271,81 +23408,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(131)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(421), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1148), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1148), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -23378,81 +23516,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(519), + [sym__newline] = ACTIONS(516), }, [STATE(132)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1158), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1158), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1260), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1260), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), [aux_sym_import_declaration_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(421), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -23485,81 +23624,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(521), + [sym__newline] = ACTIONS(518), }, [STATE(133)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1163), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1163), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(421), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1260), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1260), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -23592,81 +23732,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(134)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1165), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1165), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1163), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1163), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), [aux_sym_import_declaration_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(421), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -23699,81 +23840,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(523), + [sym__newline] = ACTIONS(520), }, [STATE(135)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1167), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1167), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(421), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1164), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1164), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -23806,81 +23948,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(136)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1184), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1184), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(421), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1164), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1164), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -23913,81 +24056,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(522), }, [STATE(137)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1185), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1185), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(421), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1261), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1261), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -24020,81 +24164,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(138)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1185), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1185), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(421), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1165), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1165), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -24127,81 +24272,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(525), + [sym__newline] = ACTIONS(524), }, [STATE(139)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(421), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1175), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1175), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -24234,81 +24380,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(140)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(421), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1175), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1175), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(146), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -24341,81 +24488,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(527), + [sym__newline] = ACTIONS(526), }, [STATE(141)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1187), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1187), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(145), - [sym_identifier] = ACTIONS(421), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1176), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1176), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(147), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -24448,81 +24596,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(529), + [sym__newline] = ACTIONS(528), }, [STATE(142)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1188), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1188), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(421), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1177), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1177), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -24555,81 +24704,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(143)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1218), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1218), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(421), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1178), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1178), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -24662,81 +24812,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(530), }, [STATE(144)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1219), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1219), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(421), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1179), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1179), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -24769,81 +24920,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(145)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1220), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1220), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(421), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1179), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1179), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(152), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -24876,81 +25028,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(532), }, [STATE(146)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1220), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1220), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(147), - [sym_identifier] = ACTIONS(421), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1192), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1192), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -24983,81 +25136,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(531), + [sym__newline] = ACTIONS(227), }, [STATE(147)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1155), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1155), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(421), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1193), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1193), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -25090,80 +25244,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(148)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1257), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1257), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(150), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1193), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1193), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -25197,80 +25352,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(533), + [sym__newline] = ACTIONS(534), }, [STATE(149)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1257), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1257), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1194), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1194), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -25304,80 +25460,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(150)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1260), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1260), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1194), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1194), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(154), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -25411,80 +25568,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(536), }, [STATE(151)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1108), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1108), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1195), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1195), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), [aux_sym_import_declaration_repeat1] = STATE(155), - [sym_identifier] = ACTIONS(149), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -25518,80 +25676,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(535), + [sym__newline] = ACTIONS(538), }, [STATE(152)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1256), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1256), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(157), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1196), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1196), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -25625,80 +25784,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(537), + [sym__newline] = ACTIONS(227), }, [STATE(153)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1256), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1256), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1217), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1217), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -25732,80 +25892,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(154)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1043), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1043), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(159), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1218), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1218), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -25839,80 +26000,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(539), + [sym__newline] = ACTIONS(227), }, [STATE(155)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1046), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1046), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1219), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1219), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -25946,80 +26108,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(156)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1046), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1046), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1219), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1219), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(157), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -26053,80 +26216,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(541), + [sym__newline] = ACTIONS(540), }, [STATE(157)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1258), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1258), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1019), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1019), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -26160,81 +26324,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(158)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1048), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1048), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(164), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1527), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1527), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(161), + [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -26267,81 +26432,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(85), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(543), + [sym__newline] = ACTIONS(542), }, [STATE(159)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1527), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1527), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -26374,81 +26540,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(85), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(160)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(166), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1523), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1523), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -26481,81 +26648,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(85), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(545), + [sym__newline] = ACTIONS(227), }, [STATE(161)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1158), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1158), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(167), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1536), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1536), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -26588,81 +26756,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(85), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(547), + [sym__newline] = ACTIONS(227), }, [STATE(162)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1163), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1163), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1148), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1148), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(166), + [sym_identifier] = ACTIONS(255), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -26695,81 +26864,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(267), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(544), }, [STATE(163)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1165), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1165), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1535), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1535), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(168), + [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -26802,81 +26972,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(85), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(549), + [sym__newline] = ACTIONS(546), }, [STATE(164)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1167), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1167), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1535), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1535), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -26909,81 +27080,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(85), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(165)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1167), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1167), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1163), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1163), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(255), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -27016,81 +27188,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(267), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(551), + [sym__newline] = ACTIONS(548), }, [STATE(166)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1184), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1184), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1164), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1164), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(255), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -27123,81 +27296,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(267), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(167)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1185), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1185), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1164), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1164), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(173), + [sym_identifier] = ACTIONS(255), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -27230,81 +27404,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(267), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(550), }, [STATE(168)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1185), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1185), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1530), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1530), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -27337,81 +27512,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(85), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(553), + [sym__newline] = ACTIONS(227), }, [STATE(169)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1165), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1165), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(255), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -27444,81 +27620,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(267), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(552), }, [STATE(170)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(174), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1175), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1175), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(255), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -27551,81 +27728,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(267), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(555), + [sym__newline] = ACTIONS(227), }, [STATE(171)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1187), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1187), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(175), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1175), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1175), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(255), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -27658,81 +27836,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(267), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(557), + [sym__newline] = ACTIONS(554), }, [STATE(172)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1188), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1188), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1176), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1176), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(255), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -27765,81 +27944,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(267), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(556), }, [STATE(173)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1218), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1218), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1177), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1177), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(255), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -27872,81 +28052,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(267), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(174)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1219), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1219), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1178), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1178), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(180), + [sym_identifier] = ACTIONS(255), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -27979,81 +28160,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(267), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(558), }, [STATE(175)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1220), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1220), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1179), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1179), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(255), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -28086,72 +28268,2557 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(267), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(176)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1155), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1155), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1179), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1179), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(183), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(560), + }, + [STATE(177)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1192), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1192), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(178)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1193), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1193), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(179)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1193), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1193), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(184), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(562), + }, + [STATE(180)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1194), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1194), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(181)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1194), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1194), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(564), + }, + [STATE(182)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1195), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1195), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(566), + }, + [STATE(183)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1196), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1196), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(184)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1217), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1217), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(185)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1218), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1218), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(186)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1219), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1219), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(187)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1219), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1219), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(188), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(568), + }, + [STATE(188)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1019), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1019), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(189)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1148), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1148), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(210), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(570), + }, + [STATE(190)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1524), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1524), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(13), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(572), + }, + [STATE(191)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1243), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1243), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(574), + }, + [STATE(192)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1243), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1243), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(193)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1524), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1524), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(13), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(194)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1245), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1245), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(195)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1246), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1246), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(196)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1235), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1235), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(197)] = { + [sym_type] = STATE(408), + [sym__type_atom] = STATE(398), + [sym_named_type] = STATE(398), + [sym_optional_type] = STATE(398), + [sym_pointer_type] = STATE(398), + [sym_array_type] = STATE(398), + [sym_function_type] = STATE(398), + [sym_builtin_type] = STATE(398), + [sym_qualified_identifier] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(576), + [sym_identifier] = ACTIONS(578), + [anon_sym_import] = ACTIONS(581), + [anon_sym_func] = ACTIONS(583), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_RPAREN] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_RBRACE] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(589), + [anon_sym_mut] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_void] = ACTIONS(597), + [anon_sym_anyopaque] = ACTIONS(597), + [anon_sym_bool] = ACTIONS(597), + [anon_sym_int] = ACTIONS(597), + [anon_sym_float] = ACTIONS(597), + [anon_sym_range] = ACTIONS(597), + [anon_sym_i8] = ACTIONS(597), + [anon_sym_i16] = ACTIONS(597), + [anon_sym_i32] = ACTIONS(597), + [anon_sym_i64] = ACTIONS(597), + [anon_sym_u8] = ACTIONS(597), + [anon_sym_u16] = ACTIONS(597), + [anon_sym_u32] = ACTIONS(597), + [anon_sym_u64] = ACTIONS(597), + [anon_sym_isize] = ACTIONS(597), + [anon_sym_usize] = ACTIONS(597), + [anon_sym_f32] = ACTIONS(597), + [anon_sym_f64] = ACTIONS(597), + [anon_sym_c_char] = ACTIONS(597), + [anon_sym_c_schar] = ACTIONS(597), + [anon_sym_c_uchar] = ACTIONS(597), + [anon_sym_c_short] = ACTIONS(597), + [anon_sym_c_ushort] = ACTIONS(597), + [anon_sym_c_int] = ACTIONS(597), + [anon_sym_c_uint] = ACTIONS(597), + [anon_sym_c_long] = ACTIONS(597), + [anon_sym_c_ulong] = ACTIONS(597), + [anon_sym_c_longlong] = ACTIONS(597), + [anon_sym_c_ulonglong] = ACTIONS(597), + [anon_sym_c_float] = ACTIONS(597), + [anon_sym_c_double] = ACTIONS(597), + [anon_sym_c_longdouble] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_return] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_break] = ACTIONS(581), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_defer] = ACTIONS(581), + [anon_sym_errdefer] = ACTIONS(581), + [anon_sym_if] = ACTIONS(581), + [anon_sym_else] = ACTIONS(581), + [anon_sym_while] = ACTIONS(581), + [anon_sym_for] = ACTIONS(581), + [anon_sym_match] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_orelse] = ACTIONS(581), + [anon_sym_catch] = ACTIONS(581), + [anon_sym_or] = ACTIONS(581), + [anon_sym_and] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_try] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [sym_none] = ACTIONS(581), + [sym_undefined] = ACTIONS(581), + [sym_sink] = ACTIONS(581), + [sym_integer] = ACTIONS(581), + [sym_float] = ACTIONS(576), + [anon_sym_DQUOTE] = ACTIONS(576), + [sym_multiline_string] = ACTIONS(576), + [sym_character] = ACTIONS(576), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(576), + }, + [STATE(198)] = { + [sym_type] = STATE(407), + [sym__type_atom] = STATE(398), + [sym_named_type] = STATE(398), + [sym_optional_type] = STATE(398), + [sym_pointer_type] = STATE(398), + [sym_array_type] = STATE(398), + [sym_function_type] = STATE(398), + [sym_builtin_type] = STATE(398), + [sym_qualified_identifier] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(576), + [sym_identifier] = ACTIONS(578), + [anon_sym_import] = ACTIONS(581), + [anon_sym_func] = ACTIONS(583), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_RPAREN] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_RBRACE] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(589), + [anon_sym_mut] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_void] = ACTIONS(597), + [anon_sym_anyopaque] = ACTIONS(597), + [anon_sym_bool] = ACTIONS(597), + [anon_sym_int] = ACTIONS(597), + [anon_sym_float] = ACTIONS(597), + [anon_sym_range] = ACTIONS(597), + [anon_sym_i8] = ACTIONS(597), + [anon_sym_i16] = ACTIONS(597), + [anon_sym_i32] = ACTIONS(597), + [anon_sym_i64] = ACTIONS(597), + [anon_sym_u8] = ACTIONS(597), + [anon_sym_u16] = ACTIONS(597), + [anon_sym_u32] = ACTIONS(597), + [anon_sym_u64] = ACTIONS(597), + [anon_sym_isize] = ACTIONS(597), + [anon_sym_usize] = ACTIONS(597), + [anon_sym_f32] = ACTIONS(597), + [anon_sym_f64] = ACTIONS(597), + [anon_sym_c_char] = ACTIONS(597), + [anon_sym_c_schar] = ACTIONS(597), + [anon_sym_c_uchar] = ACTIONS(597), + [anon_sym_c_short] = ACTIONS(597), + [anon_sym_c_ushort] = ACTIONS(597), + [anon_sym_c_int] = ACTIONS(597), + [anon_sym_c_uint] = ACTIONS(597), + [anon_sym_c_long] = ACTIONS(597), + [anon_sym_c_ulong] = ACTIONS(597), + [anon_sym_c_longlong] = ACTIONS(597), + [anon_sym_c_ulonglong] = ACTIONS(597), + [anon_sym_c_float] = ACTIONS(597), + [anon_sym_c_double] = ACTIONS(597), + [anon_sym_c_longdouble] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_return] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_break] = ACTIONS(581), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_defer] = ACTIONS(581), + [anon_sym_errdefer] = ACTIONS(581), + [anon_sym_if] = ACTIONS(581), + [anon_sym_else] = ACTIONS(581), + [anon_sym_while] = ACTIONS(581), + [anon_sym_for] = ACTIONS(581), + [anon_sym_match] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_orelse] = ACTIONS(581), + [anon_sym_catch] = ACTIONS(581), + [anon_sym_or] = ACTIONS(581), + [anon_sym_and] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_try] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [sym_none] = ACTIONS(581), + [sym_undefined] = ACTIONS(581), + [sym_sink] = ACTIONS(581), + [sym_integer] = ACTIONS(581), + [sym_float] = ACTIONS(576), + [anon_sym_DQUOTE] = ACTIONS(576), + [sym_multiline_string] = ACTIONS(576), + [sym_character] = ACTIONS(576), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(576), + }, + [STATE(199)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1636), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1636), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(204), [sym_identifier] = ACTIONS(149), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(167), @@ -28160,7 +30827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(167), [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -28205,7 +30872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(167), [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -28217,2518 +30884,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(177)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(304), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_block_repeat1] = STATE(304), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(559), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(561), - }, - [STATE(178)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1522), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1522), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(180), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(563), - }, - [STATE(179)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1522), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1522), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(180)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1523), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1523), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(181)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1108), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1108), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(565), - }, - [STATE(182)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1525), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1525), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(187), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(567), - }, - [STATE(183)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1525), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1525), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(184)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1043), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1043), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(189), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(569), - }, - [STATE(185)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1046), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1046), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(186)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1046), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1046), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(571), - }, - [STATE(187)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1521), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1521), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(188)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1048), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1048), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(573), - }, - [STATE(189)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(190)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(196), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(575), - }, - [STATE(191)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1158), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1158), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(197), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(577), - }, - [STATE(192)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1163), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1163), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(193)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1165), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1165), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(579), - }, - [STATE(194)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1167), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1167), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(195)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1167), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1167), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(581), - }, - [STATE(196)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1184), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1184), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(197)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1185), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1185), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(198)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1185), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1185), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(583), - }, - [STATE(199)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(602), }, [STATE(200)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(253), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1636), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1636), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -30761,402 +30968,406 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), + [sym_sink] = ACTIONS(169), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(585), + [sym__newline] = ACTIONS(227), }, [STATE(201)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1187), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1187), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_type] = STATE(408), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(576), + [sym_identifier] = ACTIONS(604), + [anon_sym_import] = ACTIONS(581), + [anon_sym_func] = ACTIONS(604), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(604), + [anon_sym_LPAREN] = ACTIONS(606), + [anon_sym_RPAREN] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_RBRACE] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(604), + [anon_sym_DOLLAR] = ACTIONS(606), + [anon_sym_PIPE] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(606), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_mut] = ACTIONS(608), + [anon_sym_LBRACK] = ACTIONS(606), + [anon_sym_void] = ACTIONS(604), + [anon_sym_anyopaque] = ACTIONS(604), + [anon_sym_bool] = ACTIONS(604), + [anon_sym_int] = ACTIONS(604), + [anon_sym_float] = ACTIONS(604), + [anon_sym_range] = ACTIONS(604), + [anon_sym_i8] = ACTIONS(604), + [anon_sym_i16] = ACTIONS(604), + [anon_sym_i32] = ACTIONS(604), + [anon_sym_i64] = ACTIONS(604), + [anon_sym_u8] = ACTIONS(604), + [anon_sym_u16] = ACTIONS(604), + [anon_sym_u32] = ACTIONS(604), + [anon_sym_u64] = ACTIONS(604), + [anon_sym_isize] = ACTIONS(604), + [anon_sym_usize] = ACTIONS(604), + [anon_sym_f32] = ACTIONS(604), + [anon_sym_f64] = ACTIONS(604), + [anon_sym_c_char] = ACTIONS(604), + [anon_sym_c_schar] = ACTIONS(604), + [anon_sym_c_uchar] = ACTIONS(604), + [anon_sym_c_short] = ACTIONS(604), + [anon_sym_c_ushort] = ACTIONS(604), + [anon_sym_c_int] = ACTIONS(604), + [anon_sym_c_uint] = ACTIONS(604), + [anon_sym_c_long] = ACTIONS(604), + [anon_sym_c_ulong] = ACTIONS(604), + [anon_sym_c_longlong] = ACTIONS(604), + [anon_sym_c_ulonglong] = ACTIONS(604), + [anon_sym_c_float] = ACTIONS(604), + [anon_sym_c_double] = ACTIONS(604), + [anon_sym_c_longdouble] = ACTIONS(604), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_return] = ACTIONS(604), + [anon_sym_yield] = ACTIONS(604), + [anon_sym_break] = ACTIONS(604), + [anon_sym_continue] = ACTIONS(604), + [anon_sym_defer] = ACTIONS(604), + [anon_sym_errdefer] = ACTIONS(604), + [anon_sym_if] = ACTIONS(604), + [anon_sym_else] = ACTIONS(581), + [anon_sym_while] = ACTIONS(604), + [anon_sym_for] = ACTIONS(604), + [anon_sym_match] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(604), + [anon_sym_DOT_DOT_EQ] = ACTIONS(606), + [anon_sym_orelse] = ACTIONS(604), + [anon_sym_catch] = ACTIONS(604), + [anon_sym_or] = ACTIONS(604), + [anon_sym_and] = ACTIONS(604), + [anon_sym_EQ_EQ] = ACTIONS(606), + [anon_sym_BANG_EQ] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(604), + [anon_sym_LT_EQ] = ACTIONS(606), + [anon_sym_GT] = ACTIONS(604), + [anon_sym_GT_EQ] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(604), + [anon_sym_SLASH] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_try] = ACTIONS(604), + [anon_sym_DOT] = ACTIONS(604), + [anon_sym_CARET] = ACTIONS(606), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_none] = ACTIONS(604), + [sym_undefined] = ACTIONS(604), + [sym_sink] = ACTIONS(604), + [sym_integer] = ACTIONS(604), + [sym_float] = ACTIONS(606), + [anon_sym_DQUOTE] = ACTIONS(606), + [sym_multiline_string] = ACTIONS(606), + [sym_character] = ACTIONS(606), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(587), + [sym__newline] = ACTIONS(606), }, [STATE(202)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1188), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1188), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_type] = STATE(418), + [sym__type_atom] = STATE(398), + [sym_named_type] = STATE(398), + [sym_optional_type] = STATE(398), + [sym_pointer_type] = STATE(398), + [sym_array_type] = STATE(398), + [sym_function_type] = STATE(398), + [sym_builtin_type] = STATE(398), + [sym_qualified_identifier] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(610), + [sym_identifier] = ACTIONS(612), + [anon_sym_import] = ACTIONS(615), + [anon_sym_func] = ACTIONS(617), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_RPAREN] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_DOLLAR] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_void] = ACTIONS(631), + [anon_sym_anyopaque] = ACTIONS(631), + [anon_sym_bool] = ACTIONS(631), + [anon_sym_int] = 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(610), + [anon_sym_DASH_EQ] = ACTIONS(610), + [anon_sym_STAR_EQ] = ACTIONS(610), + [anon_sym_SLASH_EQ] = ACTIONS(610), + [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_for] = ACTIONS(615), + [anon_sym_match] = ACTIONS(615), + [anon_sym_DOT_DOT] = ACTIONS(615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(610), + [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(610), + [anon_sym_BANG_EQ] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_try] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(610), + [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(610), + [anon_sym_DQUOTE] = ACTIONS(610), + [sym_multiline_string] = ACTIONS(610), + [sym_character] = ACTIONS(610), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(610), }, [STATE(203)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1218), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1218), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_type] = STATE(420), + [sym__type_atom] = STATE(398), + [sym_named_type] = STATE(398), + [sym_optional_type] = STATE(398), + [sym_pointer_type] = STATE(398), + [sym_array_type] = STATE(398), + [sym_function_type] = STATE(398), + [sym_builtin_type] = STATE(398), + [sym_qualified_identifier] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(610), + [sym_identifier] = ACTIONS(612), + [anon_sym_import] = ACTIONS(615), + [anon_sym_func] = ACTIONS(617), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_RPAREN] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_DOLLAR] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(634), + [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_void] = ACTIONS(631), + [anon_sym_anyopaque] = ACTIONS(631), + [anon_sym_bool] = ACTIONS(631), + [anon_sym_int] = 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(610), + [anon_sym_DASH_EQ] = ACTIONS(610), + [anon_sym_STAR_EQ] = ACTIONS(610), + [anon_sym_SLASH_EQ] = ACTIONS(610), + [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_for] = ACTIONS(615), + [anon_sym_match] = ACTIONS(615), + [anon_sym_DOT_DOT] = ACTIONS(615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(610), + [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(610), + [anon_sym_BANG_EQ] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_try] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(610), + [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(610), + [anon_sym_DQUOTE] = ACTIONS(610), + [sym_multiline_string] = ACTIONS(610), + [sym_character] = ACTIONS(610), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(610), }, [STATE(204)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1219), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1219), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(253), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1639), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1639), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -31189,81 +31400,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), + [sym_sink] = ACTIONS(169), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(205)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1220), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1220), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(253), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1641), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1641), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(208), + [sym_identifier] = ACTIONS(149), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -31296,81 +31508,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), + [sym_sink] = ACTIONS(169), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(636), }, [STATE(206)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1220), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1220), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(253), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1641), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1641), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -31403,188 +31616,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), + [sym_sink] = ACTIONS(169), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(589), + [sym__newline] = ACTIONS(227), }, [STATE(207)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1155), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1155), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_type] = STATE(431), + [sym__type_atom] = STATE(398), + [sym_named_type] = STATE(398), + [sym_optional_type] = STATE(398), + [sym_pointer_type] = STATE(398), + [sym_array_type] = STATE(398), + [sym_function_type] = STATE(398), + [sym_builtin_type] = STATE(398), + [sym_qualified_identifier] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(345), + [sym_identifier] = ACTIONS(638), + [anon_sym_import] = ACTIONS(349), + [anon_sym_func] = ACTIONS(641), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(349), + [anon_sym_struct] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_PIPE] = ACTIONS(345), + [anon_sym_QMARK] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(647), + [anon_sym_mut] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_void] = ACTIONS(655), + [anon_sym_anyopaque] = ACTIONS(655), + [anon_sym_bool] = ACTIONS(655), + [anon_sym_int] = ACTIONS(655), + [anon_sym_float] = ACTIONS(655), + [anon_sym_range] = ACTIONS(655), + [anon_sym_i8] = ACTIONS(655), + [anon_sym_i16] = ACTIONS(655), + [anon_sym_i32] = ACTIONS(655), + [anon_sym_i64] = ACTIONS(655), + [anon_sym_u8] = ACTIONS(655), + [anon_sym_u16] = ACTIONS(655), + [anon_sym_u32] = ACTIONS(655), + [anon_sym_u64] = ACTIONS(655), + [anon_sym_isize] = ACTIONS(655), + [anon_sym_usize] = ACTIONS(655), + [anon_sym_f32] = ACTIONS(655), + [anon_sym_f64] = ACTIONS(655), + [anon_sym_c_char] = ACTIONS(655), + [anon_sym_c_schar] = ACTIONS(655), + [anon_sym_c_uchar] = ACTIONS(655), + [anon_sym_c_short] = ACTIONS(655), + [anon_sym_c_ushort] = ACTIONS(655), + [anon_sym_c_int] = ACTIONS(655), + [anon_sym_c_uint] = ACTIONS(655), + [anon_sym_c_long] = ACTIONS(655), + [anon_sym_c_ulong] = ACTIONS(655), + [anon_sym_c_longlong] = ACTIONS(655), + [anon_sym_c_ulonglong] = ACTIONS(655), + [anon_sym_c_float] = ACTIONS(655), + [anon_sym_c_double] = ACTIONS(655), + [anon_sym_c_longdouble] = ACTIONS(655), + [anon_sym_PLUS_EQ] = ACTIONS(345), + [anon_sym_DASH_EQ] = ACTIONS(345), + [anon_sym_STAR_EQ] = ACTIONS(345), + [anon_sym_SLASH_EQ] = ACTIONS(345), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(349), + [anon_sym_defer] = ACTIONS(349), + [anon_sym_errdefer] = ACTIONS(349), + [anon_sym_if] = ACTIONS(349), + [anon_sym_else] = ACTIONS(349), + [anon_sym_while] = ACTIONS(349), + [anon_sym_for] = ACTIONS(349), + [anon_sym_match] = ACTIONS(349), + [anon_sym_DOT_DOT] = ACTIONS(349), + [anon_sym_DOT_DOT_EQ] = ACTIONS(345), + [anon_sym_orelse] = ACTIONS(349), + [anon_sym_catch] = ACTIONS(349), + [anon_sym_or] = ACTIONS(349), + [anon_sym_and] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(345), + [anon_sym_BANG_EQ] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(345), + [anon_sym_GT] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(345), + [anon_sym_try] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_CARET] = ACTIONS(345), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [sym_none] = ACTIONS(349), + [sym_undefined] = ACTIONS(349), + [sym_sink] = ACTIONS(349), + [sym_integer] = ACTIONS(349), + [sym_float] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [sym_multiline_string] = ACTIONS(345), + [sym_character] = ACTIONS(345), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(345), }, [STATE(208)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1236), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1236), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(210), - [sym_identifier] = ACTIONS(95), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1644), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1644), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -31617,81 +31832,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), + [sym_sink] = ACTIONS(169), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(591), + [sym__newline] = ACTIONS(227), }, [STATE(209)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1236), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1236), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1163), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1163), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(277), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -31724,81 +31940,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), + [sym_sink] = ACTIONS(289), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(658), }, [STATE(210)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1242), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1242), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1164), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1164), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(277), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -31831,81 +32048,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), + [sym_sink] = ACTIONS(289), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(211)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1244), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1244), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1784), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1784), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), [aux_sym_import_declaration_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(95), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -31938,81 +32156,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(593), + [sym__newline] = ACTIONS(660), }, [STATE(212)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1244), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1244), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1784), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1784), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -32045,81 +32264,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(213)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1237), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1237), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1789), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1789), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -32152,81 +32372,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(214)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1543), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1543), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1791), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1791), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), [aux_sym_import_declaration_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(123), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -32259,81 +32480,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(595), + [sym__newline] = ACTIONS(662), }, [STATE(215)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1543), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1543), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1791), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1791), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -32366,81 +32588,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(216)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1546), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1546), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1797), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1797), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -32473,80 +32696,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(217)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1552), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1552), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1164), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1164), [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(123), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(39), + [sym_identifier] = ACTIONS(277), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -32580,81 +32804,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), + [sym_sink] = ACTIONS(289), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(597), + [sym__newline] = ACTIONS(664), }, [STATE(218)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1552), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1552), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1674), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1674), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(220), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -32687,80 +32912,621 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(666), }, [STATE(219)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1553), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1553), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1674), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1674), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(115), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(220)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1683), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1683), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(115), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(221)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1684), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1684), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(223), + [sym_identifier] = ACTIONS(93), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(115), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(668), + }, + [STATE(222)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1684), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1684), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(115), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(223)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1685), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1685), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(115), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(224)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1521), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1521), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(13), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -32794,616 +33560,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), + [sym_sink] = ACTIONS(85), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(220)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1740), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1740), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(175), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(599), - }, - [STATE(221)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1740), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1740), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(222)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1748), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1748), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(223)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1751), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1751), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(225), - [sym_identifier] = ACTIONS(175), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(601), - }, - [STATE(224)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1751), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1751), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(225)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1760), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1760), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1165), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1165), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(41), + [sym_identifier] = ACTIONS(277), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -33436,81 +33668,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(289), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(670), }, [STATE(226)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1797), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1797), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1148), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1148), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), [aux_sym_import_declaration_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(175), + [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -33543,81 +33776,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(85), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(603), + [sym__newline] = ACTIONS(672), }, [STATE(227)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1797), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1797), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1163), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1163), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(231), + [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -33650,81 +33884,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(85), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(674), }, [STATE(228)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1806), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1806), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1164), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1164), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -33757,392 +33992,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(85), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(229)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1807), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1807), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(231), - [sym_identifier] = ACTIONS(175), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(605), - }, - [STATE(230)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1807), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1807), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(231)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1810), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1810), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(232)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1108), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1108), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1164), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1164), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), [aux_sym_import_declaration_repeat1] = STATE(234), [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), @@ -34197,7 +34112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -34209,48 +34124,373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(607), + [sym__newline] = ACTIONS(676), + }, + [STATE(230)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1165), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1165), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(236), + [sym_identifier] = ACTIONS(13), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(678), + }, + [STATE(231)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1175), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1175), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(13), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(232)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1175), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1175), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(238), + [sym_identifier] = ACTIONS(13), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(680), }, [STATE(233)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1043), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1043), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(237), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1176), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1176), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(239), [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), @@ -34304,7 +34544,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -34316,48 +34556,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(609), + [sym__newline] = ACTIONS(682), }, [STATE(234)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1046), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1046), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1177), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1177), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), @@ -34411,7 +34652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -34423,48 +34664,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(235)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1046), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1046), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(240), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1178), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1178), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(241), [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), @@ -34518,7 +34760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -34530,48 +34772,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(611), + [sym__newline] = ACTIONS(684), }, [STATE(236)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1048), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1048), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(242), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1179), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1179), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), @@ -34625,7 +34868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -34637,154 +34880,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(613), + [sym__newline] = ACTIONS(227), }, [STATE(237)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(238)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1179), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1179), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), [aux_sym_import_declaration_repeat1] = STATE(244), [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), @@ -34839,7 +34976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -34851,47 +34988,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(615), + [sym__newline] = ACTIONS(686), + }, + [STATE(238)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1192), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1192), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(13), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), }, [STATE(239)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1158), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1158), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1193), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1193), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(13), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(240)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1193), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1193), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), [aux_sym_import_declaration_repeat1] = STATE(245), [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), @@ -34946,7 +35300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -34958,48 +35312,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(617), + [sym__newline] = ACTIONS(688), }, - [STATE(240)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1163), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1163), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), + [STATE(241)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1194), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1194), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), @@ -35053,7 +35408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -35065,47 +35420,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(241)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1165), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1165), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), + [STATE(242)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1194), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1194), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(246), + [sym_identifier] = ACTIONS(13), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(690), + }, + [STATE(243)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1195), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1195), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), [aux_sym_import_declaration_repeat1] = STATE(247), [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), @@ -35160,7 +35624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -35172,262 +35636,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(619), - }, - [STATE(242)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1167), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1167), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(243)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1167), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1167), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(250), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(621), + [sym__newline] = ACTIONS(692), }, [STATE(244)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1184), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1184), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1196), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1196), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), @@ -35481,7 +35732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -35493,48 +35744,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(245)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1185), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1185), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1217), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1217), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), @@ -35588,7 +35840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -35600,48 +35852,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(246)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1185), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1185), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(251), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1218), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1218), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), @@ -35695,7 +35948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -35707,48 +35960,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(623), + [sym__newline] = ACTIONS(227), }, [STATE(247)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1219), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1219), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), @@ -35802,7 +36056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -35814,48 +36068,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(248)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(252), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1219), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1219), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(249), [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), @@ -35909,7 +36164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -35921,48 +36176,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(625), + [sym__newline] = ACTIONS(694), }, [STATE(249)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1187), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1187), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(253), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1019), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1019), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), @@ -36016,7 +36272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -36028,5942 +36284,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(627), + [sym__newline] = ACTIONS(227), }, [STATE(250)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1188), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1188), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(251)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1218), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1218), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(252)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1219), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1219), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(253)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1220), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1220), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(254)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1220), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1220), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(255), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(629), - }, - [STATE(255)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1155), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1155), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(256)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1108), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1108), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(631), - }, - [STATE(257)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1043), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1043), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(633), - }, - [STATE(258)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1046), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1046), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(259)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1046), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1046), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(635), - }, - [STATE(260)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1048), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1048), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(637), - }, - [STATE(261)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(262)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(268), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(639), - }, - [STATE(263)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1158), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1158), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(641), - }, - [STATE(264)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1163), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1163), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(265)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1165), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1165), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(643), - }, - [STATE(266)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1167), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1167), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(267)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1167), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1167), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(645), - }, - [STATE(268)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1184), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1184), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(269)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1185), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1185), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(270)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1185), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1185), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(647), - }, - [STATE(271)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(272)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(649), - }, - [STATE(273)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1187), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1187), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(277), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(651), - }, - [STATE(274)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1188), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1188), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(275)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1218), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1218), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(276)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1219), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1219), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(277)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1220), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1220), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(278)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1220), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1220), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(653), - }, - [STATE(279)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1155), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1155), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(280)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1108), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1108), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(655), - }, - [STATE(281)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1043), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1043), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(285), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(657), - }, - [STATE(282)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1046), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1046), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(283)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1046), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1046), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(288), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(659), - }, - [STATE(284)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1048), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1048), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(661), - }, - [STATE(285)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(286)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(663), - }, - [STATE(287)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1158), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1158), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(293), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(665), - }, - [STATE(288)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1163), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1163), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(289)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1165), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1165), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(295), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(667), - }, - [STATE(290)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1167), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1167), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(291)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1167), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1167), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(298), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(669), - }, - [STATE(292)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1184), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1184), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(293)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1185), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1185), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(294)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1185), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1185), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(299), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(671), - }, - [STATE(295)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(296)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(300), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(673), - }, - [STATE(297)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1187), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1187), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(301), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(675), - }, - [STATE(298)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1188), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1188), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(299)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1218), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1218), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(300)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1219), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1219), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(301)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1220), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1220), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(302)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1220), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1220), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(677), - }, - [STATE(303)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1155), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1155), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(304)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(304), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_block_repeat1] = STATE(304), - [sym_identifier] = ACTIONS(679), - [anon_sym_func] = ACTIONS(682), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(688), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_void] = ACTIONS(705), - [anon_sym_anyopaque] = ACTIONS(705), - [anon_sym_bool] = ACTIONS(705), - [anon_sym_int] = ACTIONS(705), - [anon_sym_float] = ACTIONS(705), - [anon_sym_range] = ACTIONS(705), - [anon_sym_i8] = ACTIONS(705), - [anon_sym_i16] = ACTIONS(705), - [anon_sym_i32] = ACTIONS(705), - [anon_sym_i64] = ACTIONS(705), - [anon_sym_u8] = ACTIONS(705), - [anon_sym_u16] = ACTIONS(705), - [anon_sym_u32] = ACTIONS(705), - [anon_sym_u64] = ACTIONS(705), - [anon_sym_isize] = ACTIONS(705), - [anon_sym_usize] = ACTIONS(705), - [anon_sym_f32] = ACTIONS(705), - [anon_sym_f64] = ACTIONS(705), - [anon_sym_c_char] = ACTIONS(705), - [anon_sym_c_schar] = ACTIONS(705), - [anon_sym_c_uchar] = ACTIONS(705), - [anon_sym_c_short] = ACTIONS(705), - [anon_sym_c_ushort] = ACTIONS(705), - [anon_sym_c_int] = ACTIONS(705), - [anon_sym_c_uint] = ACTIONS(705), - [anon_sym_c_long] = ACTIONS(705), - [anon_sym_c_ulong] = ACTIONS(705), - [anon_sym_c_longlong] = ACTIONS(705), - [anon_sym_c_ulonglong] = ACTIONS(705), - [anon_sym_c_float] = ACTIONS(705), - [anon_sym_c_double] = ACTIONS(705), - [anon_sym_c_longdouble] = ACTIONS(705), - [anon_sym_return] = ACTIONS(708), - [anon_sym_yield] = ACTIONS(711), - [anon_sym_break] = ACTIONS(714), - [anon_sym_continue] = ACTIONS(717), - [anon_sym_defer] = ACTIONS(720), - [anon_sym_errdefer] = ACTIONS(723), - [anon_sym_if] = ACTIONS(726), - [anon_sym_while] = ACTIONS(729), - [anon_sym_for] = ACTIONS(732), - [anon_sym_match] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_try] = ACTIONS(738), - [anon_sym_DOT] = ACTIONS(741), - [anon_sym_true] = ACTIONS(744), - [anon_sym_false] = ACTIONS(744), - [sym_none] = ACTIONS(747), - [sym_undefined] = ACTIONS(747), - [sym_sink] = ACTIONS(750), - [sym_integer] = ACTIONS(747), - [sym_float] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(756), - [sym_multiline_string] = ACTIONS(753), - [sym_character] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(759), - }, - [STATE(305)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1108), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1108), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(307), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1263), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1263), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(43), [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(193), [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -41996,24 +36368,5856 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(193), [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(195), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(696), + }, + [STATE(251)] = { + [sym_type] = STATE(418), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(610), + [sym_identifier] = ACTIONS(698), + [anon_sym_import] = ACTIONS(615), + [anon_sym_func] = ACTIONS(698), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(700), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_mut] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_void] = ACTIONS(698), + [anon_sym_anyopaque] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_int] = ACTIONS(698), + [anon_sym_float] = ACTIONS(698), + [anon_sym_range] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_c_char] = ACTIONS(698), + [anon_sym_c_schar] = ACTIONS(698), + [anon_sym_c_uchar] = ACTIONS(698), + [anon_sym_c_short] = ACTIONS(698), + [anon_sym_c_ushort] = ACTIONS(698), + [anon_sym_c_int] = ACTIONS(698), + [anon_sym_c_uint] = ACTIONS(698), + [anon_sym_c_long] = ACTIONS(698), + [anon_sym_c_ulong] = ACTIONS(698), + [anon_sym_c_longlong] = ACTIONS(698), + [anon_sym_c_ulonglong] = ACTIONS(698), + [anon_sym_c_float] = ACTIONS(698), + [anon_sym_c_double] = ACTIONS(698), + [anon_sym_c_longdouble] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(610), + [anon_sym_DASH_EQ] = ACTIONS(610), + [anon_sym_STAR_EQ] = ACTIONS(610), + [anon_sym_SLASH_EQ] = ACTIONS(610), + [anon_sym_return] = ACTIONS(698), + [anon_sym_yield] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_defer] = ACTIONS(698), + [anon_sym_errdefer] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_else] = ACTIONS(615), + [anon_sym_while] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_EQ] = ACTIONS(700), + [anon_sym_orelse] = ACTIONS(698), + [anon_sym_catch] = ACTIONS(698), + [anon_sym_or] = ACTIONS(698), + [anon_sym_and] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(700), + [anon_sym_BANG_EQ] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_LT_EQ] = ACTIONS(700), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_try] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [sym_none] = ACTIONS(698), + [sym_undefined] = ACTIONS(698), + [sym_sink] = ACTIONS(698), + [sym_integer] = ACTIONS(698), + [sym_float] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(700), + [sym_multiline_string] = ACTIONS(700), + [sym_character] = ACTIONS(700), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(700), + }, + [STATE(252)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1148), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1148), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(254), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(704), + }, + [STATE(253)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1163), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1163), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(257), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(706), + }, + [STATE(254)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1164), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1164), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(255)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1164), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1164), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(708), + }, + [STATE(256)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1165), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1165), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(262), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(710), + }, + [STATE(257)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1175), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1175), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(258)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1175), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1175), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(712), + }, + [STATE(259)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1176), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1176), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(265), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(714), + }, + [STATE(260)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1177), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1177), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(261)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1178), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1178), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(716), + }, + [STATE(262)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1179), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1179), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(263)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1179), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1179), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(270), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(718), + }, + [STATE(264)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1192), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1192), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(265)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1193), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1193), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(266)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1193), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1193), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(720), + }, + [STATE(267)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1194), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1194), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(268)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1194), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1194), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(722), + }, + [STATE(269)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1195), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1195), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(724), + }, + [STATE(270)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1196), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1196), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(271)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1217), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1217), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(272)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1218), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1218), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(273)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1219), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1219), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(274)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1219), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1219), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(726), + }, + [STATE(275)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1019), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1019), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(276)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1148), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1148), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(278), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(728), + }, + [STATE(277)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1163), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1163), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(281), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(730), + }, + [STATE(278)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1164), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1164), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(279)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1164), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1164), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(732), + }, + [STATE(280)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1165), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1165), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(734), + }, + [STATE(281)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1175), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1175), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(282)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1175), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1175), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(288), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(736), + }, + [STATE(283)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1176), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1176), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(738), + }, + [STATE(284)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1177), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1177), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(285)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1178), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1178), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(291), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(740), + }, + [STATE(286)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1179), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1179), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(287)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1179), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1179), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(294), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(742), + }, + [STATE(288)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1192), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1192), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(289)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1193), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1193), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(290)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1193), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1193), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(295), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(744), + }, + [STATE(291)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1194), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1194), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(292)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1194), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1194), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(746), + }, + [STATE(293)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1195), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1195), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(297), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(748), + }, + [STATE(294)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1196), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1196), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(295)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1217), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1217), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(296)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1218), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1218), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(297)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1219), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1219), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(298)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1219), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1219), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(299), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(750), + }, + [STATE(299)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1019), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1019), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(300)] = { + [sym_type] = STATE(420), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(610), + [sym_identifier] = ACTIONS(752), + [anon_sym_import] = ACTIONS(615), + [anon_sym_func] = ACTIONS(752), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(752), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(754), + [anon_sym_RPAREN] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(754), + [anon_sym_PIPE] = ACTIONS(754), + [anon_sym_QMARK] = ACTIONS(754), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_mut] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(754), + [anon_sym_void] = ACTIONS(752), + [anon_sym_anyopaque] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_int] = ACTIONS(752), + [anon_sym_float] = ACTIONS(752), + [anon_sym_range] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_c_char] = ACTIONS(752), + [anon_sym_c_schar] = ACTIONS(752), + [anon_sym_c_uchar] = ACTIONS(752), + [anon_sym_c_short] = ACTIONS(752), + [anon_sym_c_ushort] = ACTIONS(752), + [anon_sym_c_int] = ACTIONS(752), + [anon_sym_c_uint] = ACTIONS(752), + [anon_sym_c_long] = ACTIONS(752), + [anon_sym_c_ulong] = ACTIONS(752), + [anon_sym_c_longlong] = ACTIONS(752), + [anon_sym_c_ulonglong] = ACTIONS(752), + [anon_sym_c_float] = ACTIONS(752), + [anon_sym_c_double] = ACTIONS(752), + [anon_sym_c_longdouble] = ACTIONS(752), + [anon_sym_PLUS_EQ] = ACTIONS(610), + [anon_sym_DASH_EQ] = ACTIONS(610), + [anon_sym_STAR_EQ] = ACTIONS(610), + [anon_sym_SLASH_EQ] = ACTIONS(610), + [anon_sym_return] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(752), + [anon_sym_break] = ACTIONS(752), + [anon_sym_continue] = ACTIONS(752), + [anon_sym_defer] = ACTIONS(752), + [anon_sym_errdefer] = ACTIONS(752), + [anon_sym_if] = ACTIONS(752), + [anon_sym_else] = ACTIONS(615), + [anon_sym_while] = ACTIONS(752), + [anon_sym_for] = ACTIONS(752), + [anon_sym_match] = ACTIONS(752), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(754), + [anon_sym_orelse] = ACTIONS(752), + [anon_sym_catch] = ACTIONS(752), + [anon_sym_or] = ACTIONS(752), + [anon_sym_and] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(754), + [anon_sym_BANG_EQ] = ACTIONS(754), + [anon_sym_LT] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(754), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_GT_EQ] = ACTIONS(754), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_AMP] = ACTIONS(754), + [anon_sym_try] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(754), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [sym_none] = ACTIONS(752), + [sym_undefined] = ACTIONS(752), + [sym_sink] = ACTIONS(752), + [sym_integer] = ACTIONS(752), + [sym_float] = ACTIONS(754), + [anon_sym_DQUOTE] = ACTIONS(754), + [sym_multiline_string] = ACTIONS(754), + [sym_character] = ACTIONS(754), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(754), + }, + [STATE(301)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1175), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1175), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(302)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1175), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1175), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(47), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(758), + }, + [STATE(303)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1148), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1148), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(93), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(115), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(760), + }, + [STATE(304)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1163), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1163), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(308), + [sym_identifier] = ACTIONS(93), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -42022,55 +42226,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(762), }, - [STATE(306)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1043), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1043), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(310), - [sym_identifier] = ACTIONS(175), + [STATE(305)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1164), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1164), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -42103,24 +42308,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(115), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(306)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1164), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1164), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(311), + [sym_identifier] = ACTIONS(93), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -42130,161 +42443,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(764), }, [STATE(307)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1046), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1046), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(308)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1046), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1046), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1165), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1165), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), [aux_sym_import_declaration_repeat1] = STATE(313), - [sym_identifier] = ACTIONS(175), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -42317,24 +42524,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -42343,55 +42550,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(766), }, - [STATE(309)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1048), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1048), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(175), + [STATE(308)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1175), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1175), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -42424,24 +42632,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(115), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(309)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1175), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1175), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(93), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -42451,54 +42767,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(768), }, [STATE(310)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1176), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1176), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(316), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -42531,131 +42848,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(311)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(317), - [sym_identifier] = ACTIONS(175), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -42664,55 +42874,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(770), }, - [STATE(312)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1158), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1158), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(318), - [sym_identifier] = ACTIONS(175), + [STATE(311)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1177), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1177), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -42745,24 +42956,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(115), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(312)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1178), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1178), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(318), + [sym_identifier] = ACTIONS(93), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -42772,54 +43091,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(772), }, [STATE(313)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1163), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1163), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1179), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1179), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -42852,81 +43172,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(314)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1165), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1165), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(320), - [sym_identifier] = ACTIONS(175), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1179), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1179), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(321), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -42959,24 +43280,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -42986,54 +43307,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(774), }, [STATE(315)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1167), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1167), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1192), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1192), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -43066,81 +43388,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(316)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1167), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1167), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(323), - [sym_identifier] = ACTIONS(175), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1193), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1193), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -43173,24 +43496,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(115), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(317)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1193), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1193), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(322), + [sym_identifier] = ACTIONS(93), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -43199,162 +43630,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(776), }, - [STATE(317)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1184), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1184), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, [STATE(318)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1185), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1185), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1194), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1194), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -43387,81 +43712,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(319)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1185), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1185), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(324), - [sym_identifier] = ACTIONS(175), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1194), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1194), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(323), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -43494,24 +43820,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -43521,54 +43847,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(778), }, [STATE(320)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1195), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1195), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(324), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -43601,131 +43928,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(321)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(325), - [sym_identifier] = ACTIONS(175), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -43734,55 +43954,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(780), }, - [STATE(322)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1187), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1187), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(175), + [STATE(321)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1196), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1196), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -43815,24 +44036,456 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(115), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(322)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1217), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1217), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(115), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(323)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1218), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1218), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(115), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(324)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1219), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1219), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(115), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(325)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1219), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1219), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(326), + [sym_identifier] = ACTIONS(93), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -43841,376 +44494,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(782), }, - [STATE(323)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1188), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1188), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(324)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1218), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1218), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(325)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1219), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1219), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, [STATE(326)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1220), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1220), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1019), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1019), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -44243,81 +44576,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(327)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1220), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1220), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(175), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1176), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1176), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(48), + [sym_identifier] = ACTIONS(277), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -44350,24 +44684,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(289), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -44377,53 +44711,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(784), }, [STATE(328)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1220), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym__branch_body] = STATE(1220), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(176), - [sym_identifier] = ACTIONS(149), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1246), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym__branch_body] = STATE(1246), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(121), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -44457,24 +44792,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(143), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -44484,52 +44819,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(786), }, [STATE(329)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1088), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(334), - [sym_identifier] = ACTIONS(229), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1215), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(255), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(330)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1215), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -44563,24 +45006,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(331)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1216), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(332), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -44589,54 +45139,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(788), }, - [STATE(330)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1204), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(253), + [STATE(332)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1141), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -44669,24 +45220,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(333)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1142), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(334), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -44695,53 +45353,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(790), }, - [STATE(331)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1204), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(332), - [sym_identifier] = ACTIONS(13), + [STATE(334)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1159), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(121), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(335)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1215), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -44775,24 +45541,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), + [sym_sink] = ACTIONS(169), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(336)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1216), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(351), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -44801,54 +45674,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(792), }, - [STATE(332)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1221), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(13), + [STATE(337)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1159), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -44881,80 +45755,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(333)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1154), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(13), + [STATE(338)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1150), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(340), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -44987,24 +45862,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -45013,53 +45888,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(794), }, - [STATE(334)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1180), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(229), + [STATE(339)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1215), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(340)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1215), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(115), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(341)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1216), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(343), + [sym_identifier] = ACTIONS(93), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(115), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(796), + }, + [STATE(342)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1150), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(373), + [sym_identifier] = ACTIONS(229), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -45103,8 +46300,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -45117,374 +46314,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(335)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1087), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(336)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1088), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(338), - [sym_identifier] = ACTIONS(13), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(796), - }, - [STATE(337)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1204), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(175), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(798), }, - [STATE(338)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1180), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1397), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(13), + [STATE(343)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1141), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -45517,80 +46397,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(41), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(47), - [anon_sym_errdefer] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(85), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(339)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1204), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(340), - [sym_identifier] = ACTIONS(95), + [STATE(344)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1142), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(345), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -45623,24 +46504,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -45649,54 +46530,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(800), }, - [STATE(340)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1221), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), + [STATE(345)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1159), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(93), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -45729,79 +46611,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), + [anon_sym_return] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_errdefer] = ACTIONS(109), + [anon_sym_if] = ACTIONS(111), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), + [sym_sink] = ACTIONS(115), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(341)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1154), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(95), + [STATE(346)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1159), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(229), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -45835,24 +46718,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(347)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1150), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(335), + [sym_identifier] = ACTIONS(149), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(161), + [anon_sym_errdefer] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(169), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -45861,53 +46851,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(802), }, - [STATE(342)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1087), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), + [STATE(348)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1141), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(229), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -45941,79 +46932,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), + [sym_sink] = ACTIONS(243), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(343)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1088), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(95), + [STATE(349)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1142), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(229), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -46047,24 +47039,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), + [sym_sink] = ACTIONS(243), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -46073,54 +47065,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(804), }, - [STATE(344)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1180), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(567), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(95), + [STATE(350)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1216), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -46153,130 +47146,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(105), - [anon_sym_yield] = ACTIONS(107), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(109), - [anon_sym_errdefer] = ACTIONS(111), - [anon_sym_if] = ACTIONS(113), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(117), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(345)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1204), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(346), - [sym_identifier] = ACTIONS(149), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(85), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -46285,45 +47172,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(806), }, - [STATE(346)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1221), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), + [STATE(351)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1141), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), [sym_identifier] = ACTIONS(149), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(167), @@ -46332,7 +47220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(167), [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -46377,7 +47265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(167), [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -46389,48 +47277,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(347)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1154), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(149), + [STATE(352)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1215), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(293), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), @@ -46438,7 +47327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(167), [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -46471,24 +47360,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(167), [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), + [sym_sink] = ACTIONS(305), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(353)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1216), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(355), + [sym_identifier] = ACTIONS(293), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(305), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -46497,45 +47493,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(808), }, - [STATE(348)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1087), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), + [STATE(354)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1142), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(372), [sym_identifier] = ACTIONS(149), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(167), @@ -46544,7 +47541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(167), [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -46589,113 +47586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(167), [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(169), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(349)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1088), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(350), - [sym_identifier] = ACTIONS(149), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(159), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(161), - [anon_sym_errdefer] = ACTIONS(163), - [anon_sym_if] = ACTIONS(165), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -46709,45 +47600,1865 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(810), }, - [STATE(350)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1180), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(718), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), + [STATE(355)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1141), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(293), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(305), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(356)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1142), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(357), + [sym_identifier] = ACTIONS(293), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(305), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(812), + }, + [STATE(357)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1159), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(293), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(305), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(358)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1150), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(293), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(295), + [anon_sym_yield] = ACTIONS(297), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(299), + [anon_sym_errdefer] = ACTIONS(301), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(305), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(814), + }, + [STATE(359)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1142), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(382), + [sym_identifier] = ACTIONS(13), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(816), + }, + [STATE(360)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1150), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(121), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(133), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(135), + [anon_sym_errdefer] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(143), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(818), + }, + [STATE(361)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1216), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(363), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(820), + }, + [STATE(362)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1150), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(822), + }, + [STATE(363)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1141), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(364)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1142), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(365), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(824), + }, + [STATE(365)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1159), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(366)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1215), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(367)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1216), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(368), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(826), + }, + [STATE(368)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1141), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(369)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1142), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(828), + }, + [STATE(370)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1150), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(374), + [sym_identifier] = ACTIONS(175), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(195), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(830), + }, + [STATE(371)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1159), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(277), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(279), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(283), + [anon_sym_errdefer] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(289), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(372)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1159), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), [sym_identifier] = ACTIONS(149), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(167), @@ -46756,7 +49467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(167), [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -46801,7 +49512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(167), [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -46813,373 +49524,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(351)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1204), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(812), - }, - [STATE(352)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1221), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(353)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1154), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(356), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(814), - }, - [STATE(354)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1221), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), + [STATE(373)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1215), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), [sym_identifier] = ACTIONS(229), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -47223,8 +49617,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -47237,1752 +49631,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(355)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1154), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(229), + [STATE(374)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1215), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(816), - }, - [STATE(356)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1087), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(357)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1088), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(818), - }, - [STATE(358)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1180), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1406), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(403), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(405), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(409), - [anon_sym_errdefer] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(415), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(359)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1221), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(360)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1154), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(362), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(820), - }, - [STATE(361)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1204), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(354), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(822), - }, - [STATE(362)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1087), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(363)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1088), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(824), - }, - [STATE(364)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1180), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(365)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1221), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(421), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(366)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1154), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(367), - [sym_identifier] = ACTIONS(421), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(826), - }, - [STATE(367)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1087), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(421), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(368)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1088), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(421), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(828), - }, - [STATE(369)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1180), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(421), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(370)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1204), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(365), - [sym_identifier] = ACTIONS(421), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(425), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_errdefer] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(433), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(830), - }, - [STATE(371)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1221), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(193), [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -49015,80 +49714,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(193), [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(372)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1154), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(373), - [sym_identifier] = ACTIONS(253), + [STATE(375)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1216), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(378), + [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(193), [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -49121,24 +49821,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(193), [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -49147,54 +49847,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(832), }, - [STATE(373)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1087), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(253), + [STATE(376)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1216), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(613), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(229), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -49227,130 +49928,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), + [anon_sym_return] = ACTIONS(233), + [anon_sym_yield] = ACTIONS(235), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), + [anon_sym_defer] = ACTIONS(237), + [anon_sym_errdefer] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(374)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1088), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), + [sym_sink] = ACTIONS(243), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -49359,266 +49954,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(834), }, - [STATE(375)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1180), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1413), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(253), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(255), - [anon_sym_yield] = ACTIONS(257), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(259), - [anon_sym_errdefer] = ACTIONS(261), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(265), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(376)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1221), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, [STATE(377)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1154), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(378), - [sym_identifier] = ACTIONS(175), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1150), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(339), + [sym_identifier] = ACTIONS(13), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -49651,24 +50035,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), + [sym_sink] = ACTIONS(85), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -49678,476 +50062,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(836), }, [STATE(378)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1087), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1141), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), [sym_identifier] = ACTIONS(175), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(193), [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(379)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1088), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(380), - [sym_identifier] = ACTIONS(175), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(838), - }, - [STATE(380)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1180), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1410), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(175), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(185), - [anon_sym_yield] = ACTIONS(187), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(189), - [anon_sym_errdefer] = ACTIONS(191), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(197), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(381)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1204), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(1407), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(359), - [sym_identifier] = ACTIONS(123), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(135), - [anon_sym_errdefer] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(143), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(840), - }, - [STATE(382)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1183), - [sym_statement] = STATE(1087), - [sym_constant_declaration] = STATE(1183), - [sym_variable_declaration] = STATE(1183), - [sym_assignment_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_yield_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_defer_statement] = STATE(1183), - [sym_labeled_block] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_match_statement] = STATE(1183), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(229), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -50181,2699 +50142,2927 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(235), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), [anon_sym_break] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_defer] = ACTIONS(237), - [anon_sym_errdefer] = ACTIONS(239), - [anon_sym_if] = ACTIONS(241), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(243), + [sym_sink] = ACTIONS(195), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), + }, + [STATE(379)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1142), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(721), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(337), + [sym_identifier] = ACTIONS(175), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(185), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(187), + [anon_sym_errdefer] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(195), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(838), + }, + [STATE(380)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1150), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(329), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(840), + }, + [STATE(381)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1141), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(13), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(382)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1156), + [sym_statement] = STATE(1159), + [sym_constant_declaration] = STATE(1156), + [sym_variable_declaration] = STATE(1156), + [sym_assignment_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_yield_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_defer_statement] = STATE(1156), + [sym_labeled_block] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_match_statement] = STATE(1156), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(13), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_defer] = ACTIONS(47), + [anon_sym_errdefer] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), }, [STATE(383)] = { - [sym_type] = STATE(2067), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), + [sym_type] = STATE(2069), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), [sym_identifier] = ACTIONS(842), [anon_sym_COLON_COLON] = ACTIONS(845), [anon_sym_func] = ACTIONS(847), - [anon_sym_c_func] = ACTIONS(273), + [anon_sym_c_func] = ACTIONS(319), [anon_sym_BANG] = ACTIONS(850), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(852), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_void] = ACTIONS(866), - [anon_sym_anyopaque] = ACTIONS(866), - [anon_sym_bool] = ACTIONS(866), - [anon_sym_int] = ACTIONS(866), - [anon_sym_float] = ACTIONS(866), - [anon_sym_range] = ACTIONS(866), - [anon_sym_i8] = ACTIONS(866), - [anon_sym_i16] = ACTIONS(866), - [anon_sym_i32] = ACTIONS(866), - [anon_sym_i64] = ACTIONS(866), - [anon_sym_u8] = ACTIONS(866), - [anon_sym_u16] = ACTIONS(866), - [anon_sym_u32] = ACTIONS(866), - [anon_sym_u64] = ACTIONS(866), - [anon_sym_isize] = ACTIONS(866), - [anon_sym_usize] = ACTIONS(866), - [anon_sym_f32] = ACTIONS(866), - [anon_sym_f64] = ACTIONS(866), - [anon_sym_c_char] = ACTIONS(866), - [anon_sym_c_schar] = ACTIONS(866), - [anon_sym_c_uchar] = ACTIONS(866), - [anon_sym_c_short] = ACTIONS(866), - [anon_sym_c_ushort] = ACTIONS(866), - [anon_sym_c_int] = ACTIONS(866), - [anon_sym_c_uint] = ACTIONS(866), - [anon_sym_c_long] = ACTIONS(866), - [anon_sym_c_ulong] = ACTIONS(866), - [anon_sym_c_longlong] = ACTIONS(866), - [anon_sym_c_ulonglong] = ACTIONS(866), - [anon_sym_c_float] = ACTIONS(866), - [anon_sym_c_double] = ACTIONS(866), - [anon_sym_c_longdouble] = ACTIONS(866), - [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(850), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_defer] = ACTIONS(850), - [anon_sym_errdefer] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_else] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_match] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_AMP] = ACTIONS(855), - [anon_sym_try] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(871), - [anon_sym_CARET] = ACTIONS(855), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [sym_none] = ACTIONS(850), - [sym_undefined] = ACTIONS(850), - [sym_sink] = ACTIONS(850), - [sym_integer] = ACTIONS(850), - [sym_float] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [sym_multiline_string] = ACTIONS(855), - [sym_character] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_struct] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_DOLLAR] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_void] = ACTIONS(868), + [anon_sym_anyopaque] = ACTIONS(868), + [anon_sym_bool] = ACTIONS(868), + [anon_sym_int] = ACTIONS(868), + [anon_sym_float] = ACTIONS(868), + [anon_sym_range] = ACTIONS(868), + [anon_sym_i8] = ACTIONS(868), + [anon_sym_i16] = ACTIONS(868), + [anon_sym_i32] = ACTIONS(868), + [anon_sym_i64] = ACTIONS(868), + [anon_sym_u8] = ACTIONS(868), + [anon_sym_u16] = ACTIONS(868), + [anon_sym_u32] = ACTIONS(868), + [anon_sym_u64] = ACTIONS(868), + [anon_sym_isize] = ACTIONS(868), + [anon_sym_usize] = ACTIONS(868), + [anon_sym_f32] = ACTIONS(868), + [anon_sym_f64] = ACTIONS(868), + [anon_sym_c_char] = ACTIONS(868), + [anon_sym_c_schar] = ACTIONS(868), + [anon_sym_c_uchar] = ACTIONS(868), + [anon_sym_c_short] = ACTIONS(868), + [anon_sym_c_ushort] = ACTIONS(868), + [anon_sym_c_int] = ACTIONS(868), + [anon_sym_c_uint] = ACTIONS(868), + [anon_sym_c_long] = ACTIONS(868), + [anon_sym_c_ulong] = ACTIONS(868), + [anon_sym_c_longlong] = ACTIONS(868), + [anon_sym_c_ulonglong] = ACTIONS(868), + [anon_sym_c_float] = ACTIONS(868), + [anon_sym_c_double] = ACTIONS(868), + [anon_sym_c_longdouble] = ACTIONS(868), + [anon_sym_PLUS_EQ] = ACTIONS(857), + [anon_sym_DASH_EQ] = ACTIONS(857), + [anon_sym_STAR_EQ] = ACTIONS(857), + [anon_sym_SLASH_EQ] = ACTIONS(857), + [anon_sym_return] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(852), + [anon_sym_COLON] = ACTIONS(871), + [anon_sym_break] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(852), + [anon_sym_defer] = ACTIONS(852), + [anon_sym_errdefer] = ACTIONS(852), + [anon_sym_if] = ACTIONS(852), + [anon_sym_else] = ACTIONS(852), + [anon_sym_while] = ACTIONS(852), + [anon_sym_for] = ACTIONS(852), + [anon_sym_match] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_try] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_true] = ACTIONS(852), + [anon_sym_false] = ACTIONS(852), + [sym_none] = ACTIONS(852), + [sym_undefined] = ACTIONS(852), + [sym_sink] = ACTIONS(852), + [sym_integer] = ACTIONS(852), + [sym_float] = ACTIONS(857), + [anon_sym_DQUOTE] = ACTIONS(857), + [sym_multiline_string] = ACTIONS(857), + [sym_character] = ACTIONS(857), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), + [sym__newline] = ACTIONS(857), }, [STATE(384)] = { - [sym_type] = STATE(453), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(297), - [anon_sym_func] = ACTIONS(302), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(300), - [anon_sym_EQ] = ACTIONS(300), - [anon_sym_struct] = ACTIONS(300), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_RBRACE] = ACTIONS(295), - [anon_sym_DASH] = ACTIONS(300), - [anon_sym_DOLLAR] = ACTIONS(295), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_mut] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_void] = ACTIONS(316), - [anon_sym_anyopaque] = ACTIONS(316), - [anon_sym_bool] = ACTIONS(316), - [anon_sym_int] = ACTIONS(316), - [anon_sym_float] = ACTIONS(316), - [anon_sym_range] = ACTIONS(316), - [anon_sym_i8] = ACTIONS(316), - [anon_sym_i16] = ACTIONS(316), - [anon_sym_i32] = ACTIONS(316), - [anon_sym_i64] = ACTIONS(316), - [anon_sym_u8] = ACTIONS(316), - [anon_sym_u16] = ACTIONS(316), - [anon_sym_u32] = ACTIONS(316), - [anon_sym_u64] = ACTIONS(316), - [anon_sym_isize] = ACTIONS(316), - [anon_sym_usize] = ACTIONS(316), - [anon_sym_f32] = ACTIONS(316), - [anon_sym_f64] = ACTIONS(316), - [anon_sym_c_char] = ACTIONS(316), - [anon_sym_c_schar] = ACTIONS(316), - [anon_sym_c_uchar] = ACTIONS(316), - [anon_sym_c_short] = ACTIONS(316), - [anon_sym_c_ushort] = ACTIONS(316), - [anon_sym_c_int] = ACTIONS(316), - [anon_sym_c_uint] = ACTIONS(316), - [anon_sym_c_long] = ACTIONS(316), - [anon_sym_c_ulong] = ACTIONS(316), - [anon_sym_c_longlong] = ACTIONS(316), - [anon_sym_c_ulonglong] = ACTIONS(316), - [anon_sym_c_float] = ACTIONS(316), - [anon_sym_c_double] = ACTIONS(316), - [anon_sym_c_longdouble] = ACTIONS(316), - [anon_sym_PLUS_EQ] = ACTIONS(295), - [anon_sym_DASH_EQ] = ACTIONS(295), - [anon_sym_STAR_EQ] = ACTIONS(295), - [anon_sym_SLASH_EQ] = ACTIONS(295), - [anon_sym_return] = ACTIONS(300), - [anon_sym_yield] = ACTIONS(300), - [anon_sym_break] = ACTIONS(300), - [anon_sym_continue] = ACTIONS(300), - [anon_sym_defer] = ACTIONS(300), - [anon_sym_errdefer] = ACTIONS(300), - [anon_sym_if] = ACTIONS(300), - [anon_sym_else] = ACTIONS(300), - [anon_sym_while] = ACTIONS(300), - [anon_sym_for] = ACTIONS(300), - [anon_sym_match] = ACTIONS(300), - [anon_sym_DOT_DOT] = ACTIONS(300), - [anon_sym_DOT_DOT_EQ] = ACTIONS(295), - [anon_sym_orelse] = ACTIONS(300), - [anon_sym_catch] = ACTIONS(300), - [anon_sym_or] = ACTIONS(300), - [anon_sym_and] = ACTIONS(300), - [anon_sym_EQ_EQ] = ACTIONS(295), - [anon_sym_BANG_EQ] = ACTIONS(295), - [anon_sym_LT] = ACTIONS(300), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT] = ACTIONS(300), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_PLUS] = ACTIONS(300), - [anon_sym_SLASH] = ACTIONS(300), - [anon_sym_AMP] = ACTIONS(295), - [anon_sym_try] = ACTIONS(300), - [anon_sym_DOT] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(295), - [anon_sym_true] = ACTIONS(300), - [anon_sym_false] = ACTIONS(300), - [sym_none] = ACTIONS(300), - [sym_undefined] = ACTIONS(300), - [sym_sink] = ACTIONS(300), - [sym_integer] = ACTIONS(300), - [sym_float] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [sym_multiline_string] = ACTIONS(295), - [sym_character] = ACTIONS(295), + [sym_type] = STATE(2062), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(842), + [anon_sym_COLON_COLON] = ACTIONS(876), + [anon_sym_func] = ACTIONS(847), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_struct] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_DOLLAR] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_void] = ACTIONS(868), + [anon_sym_anyopaque] = ACTIONS(868), + [anon_sym_bool] = ACTIONS(868), + [anon_sym_int] = ACTIONS(868), + [anon_sym_float] = ACTIONS(868), + [anon_sym_range] = ACTIONS(868), + [anon_sym_i8] = ACTIONS(868), + [anon_sym_i16] = ACTIONS(868), + [anon_sym_i32] = ACTIONS(868), + [anon_sym_i64] = ACTIONS(868), + [anon_sym_u8] = ACTIONS(868), + [anon_sym_u16] = ACTIONS(868), + [anon_sym_u32] = ACTIONS(868), + [anon_sym_u64] = ACTIONS(868), + [anon_sym_isize] = ACTIONS(868), + [anon_sym_usize] = ACTIONS(868), + [anon_sym_f32] = ACTIONS(868), + [anon_sym_f64] = ACTIONS(868), + [anon_sym_c_char] = ACTIONS(868), + [anon_sym_c_schar] = ACTIONS(868), + [anon_sym_c_uchar] = ACTIONS(868), + [anon_sym_c_short] = ACTIONS(868), + [anon_sym_c_ushort] = ACTIONS(868), + [anon_sym_c_int] = ACTIONS(868), + [anon_sym_c_uint] = ACTIONS(868), + [anon_sym_c_long] = ACTIONS(868), + [anon_sym_c_ulong] = ACTIONS(868), + [anon_sym_c_longlong] = ACTIONS(868), + [anon_sym_c_ulonglong] = ACTIONS(868), + [anon_sym_c_float] = ACTIONS(868), + [anon_sym_c_double] = ACTIONS(868), + [anon_sym_c_longdouble] = ACTIONS(868), + [anon_sym_PLUS_EQ] = ACTIONS(857), + [anon_sym_DASH_EQ] = ACTIONS(857), + [anon_sym_STAR_EQ] = ACTIONS(857), + [anon_sym_SLASH_EQ] = ACTIONS(857), + [anon_sym_return] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(852), + [anon_sym_COLON] = ACTIONS(871), + [anon_sym_break] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(852), + [anon_sym_defer] = ACTIONS(852), + [anon_sym_errdefer] = ACTIONS(852), + [anon_sym_if] = ACTIONS(852), + [anon_sym_while] = ACTIONS(852), + [anon_sym_for] = ACTIONS(852), + [anon_sym_match] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_try] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_true] = ACTIONS(852), + [anon_sym_false] = ACTIONS(852), + [sym_none] = ACTIONS(852), + [sym_undefined] = ACTIONS(852), + [sym_sink] = ACTIONS(852), + [sym_integer] = ACTIONS(852), + [sym_float] = ACTIONS(857), + [anon_sym_DQUOTE] = ACTIONS(857), + [sym_multiline_string] = ACTIONS(857), + [sym_character] = ACTIONS(857), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(857), }, [STATE(385)] = { - [sym_type] = STATE(437), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(319), - [anon_sym_func] = ACTIONS(322), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(271), - [anon_sym_struct] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(271), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(325), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(328), - [anon_sym_mut] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(333), - [anon_sym_void] = ACTIONS(336), - [anon_sym_anyopaque] = ACTIONS(336), - [anon_sym_bool] = ACTIONS(336), - [anon_sym_int] = ACTIONS(336), - [anon_sym_float] = ACTIONS(336), - [anon_sym_range] = ACTIONS(336), - [anon_sym_i8] = ACTIONS(336), - [anon_sym_i16] = ACTIONS(336), - [anon_sym_i32] = ACTIONS(336), - [anon_sym_i64] = ACTIONS(336), - [anon_sym_u8] = ACTIONS(336), - [anon_sym_u16] = ACTIONS(336), - [anon_sym_u32] = ACTIONS(336), - [anon_sym_u64] = ACTIONS(336), - [anon_sym_isize] = ACTIONS(336), - [anon_sym_usize] = ACTIONS(336), - [anon_sym_f32] = ACTIONS(336), - [anon_sym_f64] = ACTIONS(336), - [anon_sym_c_char] = ACTIONS(336), - [anon_sym_c_schar] = ACTIONS(336), - [anon_sym_c_uchar] = ACTIONS(336), - [anon_sym_c_short] = ACTIONS(336), - [anon_sym_c_ushort] = ACTIONS(336), - [anon_sym_c_int] = ACTIONS(336), - [anon_sym_c_uint] = ACTIONS(336), - [anon_sym_c_long] = ACTIONS(336), - [anon_sym_c_ulong] = ACTIONS(336), - [anon_sym_c_longlong] = ACTIONS(336), - [anon_sym_c_ulonglong] = ACTIONS(336), - [anon_sym_c_float] = ACTIONS(336), - [anon_sym_c_double] = ACTIONS(336), - [anon_sym_c_longdouble] = ACTIONS(336), - [anon_sym_PLUS_EQ] = ACTIONS(267), - [anon_sym_DASH_EQ] = ACTIONS(267), - [anon_sym_STAR_EQ] = ACTIONS(267), - [anon_sym_SLASH_EQ] = ACTIONS(267), - [anon_sym_return] = ACTIONS(271), - [anon_sym_yield] = ACTIONS(271), - [anon_sym_break] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_defer] = ACTIONS(271), - [anon_sym_errdefer] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_DOT_DOT] = ACTIONS(271), - [anon_sym_DOT_DOT_EQ] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(267), - [anon_sym_BANG_EQ] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(267), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(267), - [anon_sym_PLUS] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(267), - [anon_sym_try] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_true] = ACTIONS(271), - [anon_sym_false] = ACTIONS(271), - [sym_none] = ACTIONS(271), - [sym_undefined] = ACTIONS(271), - [sym_sink] = ACTIONS(271), - [sym_integer] = ACTIONS(271), - [sym_float] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(267), - [sym_multiline_string] = ACTIONS(267), - [sym_character] = ACTIONS(267), + [sym_type] = STATE(456), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(311), + [anon_sym_func] = ACTIONS(316), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(314), + [anon_sym_EQ] = ACTIONS(314), + [anon_sym_struct] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_DASH] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(326), + [anon_sym_mut] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(331), + [anon_sym_void] = ACTIONS(334), + [anon_sym_anyopaque] = ACTIONS(334), + [anon_sym_bool] = ACTIONS(334), + [anon_sym_int] = ACTIONS(334), + [anon_sym_float] = ACTIONS(334), + [anon_sym_range] = ACTIONS(334), + [anon_sym_i8] = ACTIONS(334), + [anon_sym_i16] = ACTIONS(334), + [anon_sym_i32] = ACTIONS(334), + [anon_sym_i64] = ACTIONS(334), + [anon_sym_u8] = ACTIONS(334), + [anon_sym_u16] = ACTIONS(334), + [anon_sym_u32] = ACTIONS(334), + [anon_sym_u64] = ACTIONS(334), + [anon_sym_isize] = ACTIONS(334), + [anon_sym_usize] = ACTIONS(334), + [anon_sym_f32] = ACTIONS(334), + [anon_sym_f64] = ACTIONS(334), + [anon_sym_c_char] = ACTIONS(334), + [anon_sym_c_schar] = ACTIONS(334), + [anon_sym_c_uchar] = ACTIONS(334), + [anon_sym_c_short] = ACTIONS(334), + [anon_sym_c_ushort] = ACTIONS(334), + [anon_sym_c_int] = ACTIONS(334), + [anon_sym_c_uint] = ACTIONS(334), + [anon_sym_c_long] = ACTIONS(334), + [anon_sym_c_ulong] = ACTIONS(334), + [anon_sym_c_longlong] = ACTIONS(334), + [anon_sym_c_ulonglong] = ACTIONS(334), + [anon_sym_c_float] = ACTIONS(334), + [anon_sym_c_double] = ACTIONS(334), + [anon_sym_c_longdouble] = ACTIONS(334), + [anon_sym_PLUS_EQ] = ACTIONS(309), + [anon_sym_DASH_EQ] = ACTIONS(309), + [anon_sym_STAR_EQ] = ACTIONS(309), + [anon_sym_SLASH_EQ] = ACTIONS(309), + [anon_sym_return] = ACTIONS(314), + [anon_sym_yield] = ACTIONS(314), + [anon_sym_break] = ACTIONS(314), + [anon_sym_continue] = ACTIONS(314), + [anon_sym_defer] = ACTIONS(314), + [anon_sym_errdefer] = ACTIONS(314), + [anon_sym_if] = ACTIONS(314), + [anon_sym_else] = ACTIONS(314), + [anon_sym_while] = ACTIONS(314), + [anon_sym_for] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), + [anon_sym_DOT_DOT] = ACTIONS(314), + [anon_sym_DOT_DOT_EQ] = ACTIONS(309), + [anon_sym_orelse] = ACTIONS(314), + [anon_sym_catch] = ACTIONS(314), + [anon_sym_or] = ACTIONS(314), + [anon_sym_and] = ACTIONS(314), + [anon_sym_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(314), + [anon_sym_LT_EQ] = ACTIONS(309), + [anon_sym_GT] = ACTIONS(314), + [anon_sym_GT_EQ] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(314), + [anon_sym_SLASH] = ACTIONS(314), + [anon_sym_AMP] = ACTIONS(309), + [anon_sym_try] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(314), + [anon_sym_CARET] = ACTIONS(309), + [anon_sym_true] = ACTIONS(314), + [anon_sym_false] = ACTIONS(314), + [sym_none] = ACTIONS(314), + [sym_undefined] = ACTIONS(314), + [sym_sink] = ACTIONS(314), + [sym_integer] = ACTIONS(314), + [sym_float] = ACTIONS(309), + [anon_sym_DQUOTE] = ACTIONS(309), + [sym_multiline_string] = ACTIONS(309), + [sym_character] = ACTIONS(309), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(267), + [sym__newline] = ACTIONS(309), }, [STATE(386)] = { - [sym_type] = STATE(441), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(319), - [anon_sym_func] = ACTIONS(322), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(271), - [anon_sym_struct] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(271), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(325), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(328), - [anon_sym_mut] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(333), - [anon_sym_void] = ACTIONS(336), - [anon_sym_anyopaque] = ACTIONS(336), - [anon_sym_bool] = ACTIONS(336), - [anon_sym_int] = ACTIONS(336), - [anon_sym_float] = ACTIONS(336), - [anon_sym_range] = ACTIONS(336), - [anon_sym_i8] = ACTIONS(336), - [anon_sym_i16] = ACTIONS(336), - [anon_sym_i32] = ACTIONS(336), - [anon_sym_i64] = ACTIONS(336), - [anon_sym_u8] = ACTIONS(336), - [anon_sym_u16] = ACTIONS(336), - [anon_sym_u32] = ACTIONS(336), - [anon_sym_u64] = ACTIONS(336), - [anon_sym_isize] = ACTIONS(336), - [anon_sym_usize] = ACTIONS(336), - [anon_sym_f32] = ACTIONS(336), - [anon_sym_f64] = ACTIONS(336), - [anon_sym_c_char] = ACTIONS(336), - [anon_sym_c_schar] = ACTIONS(336), - [anon_sym_c_uchar] = ACTIONS(336), - [anon_sym_c_short] = ACTIONS(336), - [anon_sym_c_ushort] = ACTIONS(336), - [anon_sym_c_int] = ACTIONS(336), - [anon_sym_c_uint] = ACTIONS(336), - [anon_sym_c_long] = ACTIONS(336), - [anon_sym_c_ulong] = ACTIONS(336), - [anon_sym_c_longlong] = ACTIONS(336), - [anon_sym_c_ulonglong] = ACTIONS(336), - [anon_sym_c_float] = ACTIONS(336), - [anon_sym_c_double] = ACTIONS(336), - [anon_sym_c_longdouble] = ACTIONS(336), - [anon_sym_PLUS_EQ] = ACTIONS(267), - [anon_sym_DASH_EQ] = ACTIONS(267), - [anon_sym_STAR_EQ] = ACTIONS(267), - [anon_sym_SLASH_EQ] = ACTIONS(267), - [anon_sym_return] = ACTIONS(271), - [anon_sym_yield] = ACTIONS(271), - [anon_sym_break] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_defer] = ACTIONS(271), - [anon_sym_errdefer] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_DOT_DOT] = ACTIONS(271), - [anon_sym_DOT_DOT_EQ] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(267), - [anon_sym_BANG_EQ] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(267), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(267), - [anon_sym_PLUS] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(267), - [anon_sym_try] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_true] = ACTIONS(271), - [anon_sym_false] = ACTIONS(271), - [sym_none] = ACTIONS(271), - [sym_undefined] = ACTIONS(271), - [sym_sink] = ACTIONS(271), - [sym_integer] = ACTIONS(271), - [sym_float] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(267), - [sym_multiline_string] = ACTIONS(267), - [sym_character] = ACTIONS(267), + [sym_type] = STATE(431), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(638), + [anon_sym_func] = ACTIONS(641), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(349), + [anon_sym_struct] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_QMARK] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(647), + [anon_sym_mut] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_void] = ACTIONS(655), + [anon_sym_anyopaque] = ACTIONS(655), + [anon_sym_bool] = ACTIONS(655), + [anon_sym_int] = ACTIONS(655), + [anon_sym_float] = ACTIONS(655), + [anon_sym_range] = ACTIONS(655), + [anon_sym_i8] = ACTIONS(655), + [anon_sym_i16] = ACTIONS(655), + [anon_sym_i32] = ACTIONS(655), + [anon_sym_i64] = ACTIONS(655), + [anon_sym_u8] = ACTIONS(655), + [anon_sym_u16] = ACTIONS(655), + [anon_sym_u32] = ACTIONS(655), + [anon_sym_u64] = ACTIONS(655), + [anon_sym_isize] = ACTIONS(655), + [anon_sym_usize] = ACTIONS(655), + [anon_sym_f32] = ACTIONS(655), + [anon_sym_f64] = ACTIONS(655), + [anon_sym_c_char] = ACTIONS(655), + [anon_sym_c_schar] = ACTIONS(655), + [anon_sym_c_uchar] = ACTIONS(655), + [anon_sym_c_short] = ACTIONS(655), + [anon_sym_c_ushort] = ACTIONS(655), + [anon_sym_c_int] = ACTIONS(655), + [anon_sym_c_uint] = ACTIONS(655), + [anon_sym_c_long] = ACTIONS(655), + [anon_sym_c_ulong] = ACTIONS(655), + [anon_sym_c_longlong] = ACTIONS(655), + [anon_sym_c_ulonglong] = ACTIONS(655), + [anon_sym_c_float] = ACTIONS(655), + [anon_sym_c_double] = ACTIONS(655), + [anon_sym_c_longdouble] = ACTIONS(655), + [anon_sym_PLUS_EQ] = ACTIONS(345), + [anon_sym_DASH_EQ] = ACTIONS(345), + [anon_sym_STAR_EQ] = ACTIONS(345), + [anon_sym_SLASH_EQ] = ACTIONS(345), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(349), + [anon_sym_defer] = ACTIONS(349), + [anon_sym_errdefer] = ACTIONS(349), + [anon_sym_if] = ACTIONS(349), + [anon_sym_else] = ACTIONS(349), + [anon_sym_while] = ACTIONS(349), + [anon_sym_for] = ACTIONS(349), + [anon_sym_match] = ACTIONS(349), + [anon_sym_DOT_DOT] = ACTIONS(349), + [anon_sym_DOT_DOT_EQ] = ACTIONS(345), + [anon_sym_orelse] = ACTIONS(349), + [anon_sym_catch] = ACTIONS(349), + [anon_sym_or] = ACTIONS(349), + [anon_sym_and] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(345), + [anon_sym_BANG_EQ] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(345), + [anon_sym_GT] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(345), + [anon_sym_try] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_CARET] = ACTIONS(345), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [sym_none] = ACTIONS(349), + [sym_undefined] = ACTIONS(349), + [sym_sink] = ACTIONS(349), + [sym_integer] = ACTIONS(349), + [sym_float] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [sym_multiline_string] = ACTIONS(345), + [sym_character] = ACTIONS(345), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(267), + [sym__newline] = ACTIONS(345), }, [STATE(387)] = { - [sym_type] = STATE(426), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(347), - [anon_sym_func] = ACTIONS(350), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(289), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_struct] = ACTIONS(289), - [anon_sym_LPAREN] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_QMARK] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(356), - [anon_sym_mut] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_void] = ACTIONS(364), - [anon_sym_anyopaque] = ACTIONS(364), - [anon_sym_bool] = ACTIONS(364), - [anon_sym_int] = ACTIONS(364), - [anon_sym_float] = ACTIONS(364), - [anon_sym_range] = ACTIONS(364), - [anon_sym_i8] = ACTIONS(364), - [anon_sym_i16] = ACTIONS(364), - [anon_sym_i32] = ACTIONS(364), - [anon_sym_i64] = ACTIONS(364), - [anon_sym_u8] = ACTIONS(364), - [anon_sym_u16] = ACTIONS(364), - [anon_sym_u32] = ACTIONS(364), - [anon_sym_u64] = ACTIONS(364), - [anon_sym_isize] = ACTIONS(364), - [anon_sym_usize] = ACTIONS(364), - [anon_sym_f32] = ACTIONS(364), - [anon_sym_f64] = ACTIONS(364), - [anon_sym_c_char] = ACTIONS(364), - [anon_sym_c_schar] = ACTIONS(364), - [anon_sym_c_uchar] = ACTIONS(364), - [anon_sym_c_short] = ACTIONS(364), - [anon_sym_c_ushort] = ACTIONS(364), - [anon_sym_c_int] = ACTIONS(364), - [anon_sym_c_uint] = ACTIONS(364), - [anon_sym_c_long] = ACTIONS(364), - [anon_sym_c_ulong] = ACTIONS(364), - [anon_sym_c_longlong] = ACTIONS(364), - [anon_sym_c_ulonglong] = ACTIONS(364), - [anon_sym_c_float] = ACTIONS(364), - [anon_sym_c_double] = ACTIONS(364), - [anon_sym_c_longdouble] = ACTIONS(364), - [anon_sym_PLUS_EQ] = ACTIONS(285), - [anon_sym_DASH_EQ] = ACTIONS(285), - [anon_sym_STAR_EQ] = ACTIONS(285), - [anon_sym_SLASH_EQ] = ACTIONS(285), - [anon_sym_return] = ACTIONS(289), - [anon_sym_yield] = ACTIONS(289), - [anon_sym_break] = ACTIONS(289), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_defer] = ACTIONS(289), - [anon_sym_errdefer] = ACTIONS(289), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(289), - [anon_sym_while] = ACTIONS(289), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(289), - [anon_sym_DOT_DOT] = ACTIONS(289), - [anon_sym_DOT_DOT_EQ] = ACTIONS(285), - [anon_sym_orelse] = ACTIONS(289), - [anon_sym_catch] = ACTIONS(289), - [anon_sym_or] = ACTIONS(289), - [anon_sym_and] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(289), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(289), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_try] = ACTIONS(289), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [sym_none] = ACTIONS(289), - [sym_undefined] = ACTIONS(289), - [sym_sink] = ACTIONS(289), - [sym_integer] = ACTIONS(289), - [sym_float] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [sym_multiline_string] = ACTIONS(285), - [sym_character] = ACTIONS(285), + [sym_type] = STATE(408), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(578), + [anon_sym_func] = ACTIONS(583), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_RBRACE] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(589), + [anon_sym_mut] = ACTIONS(608), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_void] = ACTIONS(597), + [anon_sym_anyopaque] = ACTIONS(597), + [anon_sym_bool] = ACTIONS(597), + [anon_sym_int] = ACTIONS(597), + [anon_sym_float] = ACTIONS(597), + [anon_sym_range] = ACTIONS(597), + [anon_sym_i8] = ACTIONS(597), + [anon_sym_i16] = ACTIONS(597), + [anon_sym_i32] = ACTIONS(597), + [anon_sym_i64] = ACTIONS(597), + [anon_sym_u8] = ACTIONS(597), + [anon_sym_u16] = ACTIONS(597), + [anon_sym_u32] = ACTIONS(597), + [anon_sym_u64] = ACTIONS(597), + [anon_sym_isize] = ACTIONS(597), + [anon_sym_usize] = ACTIONS(597), + [anon_sym_f32] = ACTIONS(597), + [anon_sym_f64] = ACTIONS(597), + [anon_sym_c_char] = ACTIONS(597), + [anon_sym_c_schar] = ACTIONS(597), + [anon_sym_c_uchar] = ACTIONS(597), + [anon_sym_c_short] = ACTIONS(597), + [anon_sym_c_ushort] = ACTIONS(597), + [anon_sym_c_int] = ACTIONS(597), + [anon_sym_c_uint] = ACTIONS(597), + [anon_sym_c_long] = ACTIONS(597), + [anon_sym_c_ulong] = ACTIONS(597), + [anon_sym_c_longlong] = ACTIONS(597), + [anon_sym_c_ulonglong] = ACTIONS(597), + [anon_sym_c_float] = ACTIONS(597), + [anon_sym_c_double] = ACTIONS(597), + [anon_sym_c_longdouble] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_return] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_break] = ACTIONS(581), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_defer] = ACTIONS(581), + [anon_sym_errdefer] = ACTIONS(581), + [anon_sym_if] = ACTIONS(581), + [anon_sym_else] = ACTIONS(581), + [anon_sym_while] = ACTIONS(581), + [anon_sym_for] = ACTIONS(581), + [anon_sym_match] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_orelse] = ACTIONS(581), + [anon_sym_catch] = ACTIONS(581), + [anon_sym_or] = ACTIONS(581), + [anon_sym_and] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_try] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [sym_none] = ACTIONS(581), + [sym_undefined] = ACTIONS(581), + [sym_sink] = ACTIONS(581), + [sym_integer] = ACTIONS(581), + [sym_float] = ACTIONS(576), + [anon_sym_DQUOTE] = ACTIONS(576), + [sym_multiline_string] = ACTIONS(576), + [sym_character] = ACTIONS(576), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(285), + [sym__newline] = ACTIONS(576), }, [STATE(388)] = { - [sym_type] = STATE(428), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(347), - [anon_sym_func] = ACTIONS(350), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(289), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_struct] = ACTIONS(289), - [anon_sym_LPAREN] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_QMARK] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(356), - [anon_sym_mut] = ACTIONS(345), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_void] = ACTIONS(364), - [anon_sym_anyopaque] = ACTIONS(364), - [anon_sym_bool] = ACTIONS(364), - [anon_sym_int] = ACTIONS(364), - [anon_sym_float] = ACTIONS(364), - [anon_sym_range] = ACTIONS(364), - [anon_sym_i8] = ACTIONS(364), - [anon_sym_i16] = ACTIONS(364), - [anon_sym_i32] = ACTIONS(364), - [anon_sym_i64] = ACTIONS(364), - [anon_sym_u8] = ACTIONS(364), - [anon_sym_u16] = ACTIONS(364), - [anon_sym_u32] = ACTIONS(364), - [anon_sym_u64] = ACTIONS(364), - [anon_sym_isize] = ACTIONS(364), - [anon_sym_usize] = ACTIONS(364), - [anon_sym_f32] = ACTIONS(364), - [anon_sym_f64] = ACTIONS(364), - [anon_sym_c_char] = ACTIONS(364), - [anon_sym_c_schar] = ACTIONS(364), - [anon_sym_c_uchar] = ACTIONS(364), - [anon_sym_c_short] = ACTIONS(364), - [anon_sym_c_ushort] = ACTIONS(364), - [anon_sym_c_int] = ACTIONS(364), - [anon_sym_c_uint] = ACTIONS(364), - [anon_sym_c_long] = ACTIONS(364), - [anon_sym_c_ulong] = ACTIONS(364), - [anon_sym_c_longlong] = ACTIONS(364), - [anon_sym_c_ulonglong] = ACTIONS(364), - [anon_sym_c_float] = ACTIONS(364), - [anon_sym_c_double] = ACTIONS(364), - [anon_sym_c_longdouble] = ACTIONS(364), - [anon_sym_PLUS_EQ] = ACTIONS(285), - [anon_sym_DASH_EQ] = ACTIONS(285), - [anon_sym_STAR_EQ] = ACTIONS(285), - [anon_sym_SLASH_EQ] = ACTIONS(285), - [anon_sym_return] = ACTIONS(289), - [anon_sym_yield] = ACTIONS(289), - [anon_sym_break] = ACTIONS(289), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_defer] = ACTIONS(289), - [anon_sym_errdefer] = ACTIONS(289), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(289), - [anon_sym_while] = ACTIONS(289), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(289), - [anon_sym_DOT_DOT] = ACTIONS(289), - [anon_sym_DOT_DOT_EQ] = ACTIONS(285), - [anon_sym_orelse] = ACTIONS(289), - [anon_sym_catch] = ACTIONS(289), - [anon_sym_or] = ACTIONS(289), - [anon_sym_and] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(289), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(289), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_try] = ACTIONS(289), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [sym_none] = ACTIONS(289), - [sym_undefined] = ACTIONS(289), - [sym_sink] = ACTIONS(289), - [sym_integer] = ACTIONS(289), - [sym_float] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [sym_multiline_string] = ACTIONS(285), - [sym_character] = ACTIONS(285), + [sym_type] = STATE(407), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(578), + [anon_sym_func] = ACTIONS(583), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_RBRACE] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(589), + [anon_sym_mut] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_void] = ACTIONS(597), + [anon_sym_anyopaque] = ACTIONS(597), + [anon_sym_bool] = ACTIONS(597), + [anon_sym_int] = ACTIONS(597), + [anon_sym_float] = ACTIONS(597), + [anon_sym_range] = ACTIONS(597), + [anon_sym_i8] = ACTIONS(597), + [anon_sym_i16] = ACTIONS(597), + [anon_sym_i32] = ACTIONS(597), + [anon_sym_i64] = ACTIONS(597), + [anon_sym_u8] = ACTIONS(597), + [anon_sym_u16] = ACTIONS(597), + [anon_sym_u32] = ACTIONS(597), + [anon_sym_u64] = ACTIONS(597), + [anon_sym_isize] = ACTIONS(597), + [anon_sym_usize] = ACTIONS(597), + [anon_sym_f32] = ACTIONS(597), + [anon_sym_f64] = ACTIONS(597), + [anon_sym_c_char] = ACTIONS(597), + [anon_sym_c_schar] = ACTIONS(597), + [anon_sym_c_uchar] = ACTIONS(597), + [anon_sym_c_short] = ACTIONS(597), + [anon_sym_c_ushort] = ACTIONS(597), + [anon_sym_c_int] = ACTIONS(597), + [anon_sym_c_uint] = ACTIONS(597), + [anon_sym_c_long] = ACTIONS(597), + [anon_sym_c_ulong] = ACTIONS(597), + [anon_sym_c_longlong] = ACTIONS(597), + [anon_sym_c_ulonglong] = ACTIONS(597), + [anon_sym_c_float] = ACTIONS(597), + [anon_sym_c_double] = ACTIONS(597), + [anon_sym_c_longdouble] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_return] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_break] = ACTIONS(581), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_defer] = ACTIONS(581), + [anon_sym_errdefer] = ACTIONS(581), + [anon_sym_if] = ACTIONS(581), + [anon_sym_else] = ACTIONS(581), + [anon_sym_while] = ACTIONS(581), + [anon_sym_for] = ACTIONS(581), + [anon_sym_match] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_orelse] = ACTIONS(581), + [anon_sym_catch] = ACTIONS(581), + [anon_sym_or] = ACTIONS(581), + [anon_sym_and] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_try] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [sym_none] = ACTIONS(581), + [sym_undefined] = ACTIONS(581), + [sym_sink] = ACTIONS(581), + [sym_integer] = ACTIONS(581), + [sym_float] = ACTIONS(576), + [anon_sym_DQUOTE] = ACTIONS(576), + [sym_multiline_string] = ACTIONS(576), + [sym_character] = ACTIONS(576), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(285), + [sym__newline] = ACTIONS(576), }, [STATE(389)] = { - [sym_type] = STATE(430), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(371), - [anon_sym_func] = ACTIONS(376), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_struct] = ACTIONS(374), - [anon_sym_LPAREN] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(369), - [anon_sym_RBRACE] = ACTIONS(369), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_DOLLAR] = ACTIONS(369), - [anon_sym_QMARK] = ACTIONS(379), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_mut] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_void] = ACTIONS(390), - [anon_sym_anyopaque] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_int] = ACTIONS(390), - [anon_sym_float] = ACTIONS(390), - [anon_sym_range] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_isize] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_f32] = ACTIONS(390), - [anon_sym_f64] = ACTIONS(390), - [anon_sym_c_char] = ACTIONS(390), - [anon_sym_c_schar] = ACTIONS(390), - [anon_sym_c_uchar] = ACTIONS(390), - [anon_sym_c_short] = ACTIONS(390), - [anon_sym_c_ushort] = ACTIONS(390), - [anon_sym_c_int] = ACTIONS(390), - [anon_sym_c_uint] = ACTIONS(390), - [anon_sym_c_long] = ACTIONS(390), - [anon_sym_c_ulong] = ACTIONS(390), - [anon_sym_c_longlong] = ACTIONS(390), - [anon_sym_c_ulonglong] = ACTIONS(390), - [anon_sym_c_float] = ACTIONS(390), - [anon_sym_c_double] = ACTIONS(390), - [anon_sym_c_longdouble] = ACTIONS(390), - [anon_sym_PLUS_EQ] = ACTIONS(369), - [anon_sym_DASH_EQ] = ACTIONS(369), - [anon_sym_STAR_EQ] = ACTIONS(369), - [anon_sym_SLASH_EQ] = ACTIONS(369), - [anon_sym_return] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_break] = ACTIONS(374), - [anon_sym_continue] = ACTIONS(374), - [anon_sym_defer] = ACTIONS(374), - [anon_sym_errdefer] = ACTIONS(374), - [anon_sym_if] = ACTIONS(374), - [anon_sym_else] = ACTIONS(374), - [anon_sym_while] = ACTIONS(374), - [anon_sym_for] = ACTIONS(374), - [anon_sym_match] = ACTIONS(374), - [anon_sym_DOT_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_orelse] = ACTIONS(374), - [anon_sym_catch] = ACTIONS(374), - [anon_sym_or] = ACTIONS(374), - [anon_sym_and] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(369), - [anon_sym_try] = ACTIONS(374), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(369), - [anon_sym_true] = ACTIONS(374), - [anon_sym_false] = ACTIONS(374), - [sym_none] = ACTIONS(374), - [sym_undefined] = ACTIONS(374), - [sym_sink] = ACTIONS(374), - [sym_integer] = ACTIONS(374), - [sym_float] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [sym_multiline_string] = ACTIONS(369), - [sym_character] = ACTIONS(369), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(369), - }, - [STATE(390)] = { - [sym_type] = STATE(2067), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), + [sym_type] = STATE(2069), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), [sym_identifier] = ACTIONS(842), [anon_sym_COLON_COLON] = ACTIONS(845), [anon_sym_func] = ACTIONS(847), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(855), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_void] = ACTIONS(866), - [anon_sym_anyopaque] = ACTIONS(866), - [anon_sym_bool] = ACTIONS(866), - [anon_sym_int] = ACTIONS(866), - [anon_sym_float] = ACTIONS(866), - [anon_sym_range] = ACTIONS(866), - [anon_sym_i8] = ACTIONS(866), - [anon_sym_i16] = ACTIONS(866), - [anon_sym_i32] = ACTIONS(866), - [anon_sym_i64] = ACTIONS(866), - [anon_sym_u8] = ACTIONS(866), - [anon_sym_u16] = ACTIONS(866), - [anon_sym_u32] = ACTIONS(866), - [anon_sym_u64] = ACTIONS(866), - [anon_sym_isize] = ACTIONS(866), - [anon_sym_usize] = ACTIONS(866), - [anon_sym_f32] = ACTIONS(866), - [anon_sym_f64] = ACTIONS(866), - [anon_sym_c_char] = ACTIONS(866), - [anon_sym_c_schar] = ACTIONS(866), - [anon_sym_c_uchar] = ACTIONS(866), - [anon_sym_c_short] = ACTIONS(866), - [anon_sym_c_ushort] = ACTIONS(866), - [anon_sym_c_int] = ACTIONS(866), - [anon_sym_c_uint] = ACTIONS(866), - [anon_sym_c_long] = ACTIONS(866), - [anon_sym_c_ulong] = ACTIONS(866), - [anon_sym_c_longlong] = ACTIONS(866), - [anon_sym_c_ulonglong] = ACTIONS(866), - [anon_sym_c_float] = ACTIONS(866), - [anon_sym_c_double] = ACTIONS(866), - [anon_sym_c_longdouble] = ACTIONS(866), - [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(850), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_defer] = ACTIONS(850), - [anon_sym_errdefer] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_else] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_match] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_AMP] = ACTIONS(855), - [anon_sym_try] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(855), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [sym_none] = ACTIONS(850), - [sym_undefined] = ACTIONS(850), - [sym_sink] = ACTIONS(850), - [sym_integer] = ACTIONS(850), - [sym_float] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [sym_multiline_string] = ACTIONS(855), - [sym_character] = ACTIONS(855), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_struct] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_DOLLAR] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_void] = ACTIONS(868), + [anon_sym_anyopaque] = ACTIONS(868), + [anon_sym_bool] = ACTIONS(868), + [anon_sym_int] = ACTIONS(868), + [anon_sym_float] = ACTIONS(868), + [anon_sym_range] = ACTIONS(868), + [anon_sym_i8] = ACTIONS(868), + [anon_sym_i16] = ACTIONS(868), + [anon_sym_i32] = ACTIONS(868), + [anon_sym_i64] = ACTIONS(868), + [anon_sym_u8] = ACTIONS(868), + [anon_sym_u16] = ACTIONS(868), + [anon_sym_u32] = ACTIONS(868), + [anon_sym_u64] = ACTIONS(868), + [anon_sym_isize] = ACTIONS(868), + [anon_sym_usize] = ACTIONS(868), + [anon_sym_f32] = ACTIONS(868), + [anon_sym_f64] = ACTIONS(868), + [anon_sym_c_char] = ACTIONS(868), + [anon_sym_c_schar] = ACTIONS(868), + [anon_sym_c_uchar] = ACTIONS(868), + [anon_sym_c_short] = ACTIONS(868), + [anon_sym_c_ushort] = ACTIONS(868), + [anon_sym_c_int] = ACTIONS(868), + [anon_sym_c_uint] = ACTIONS(868), + [anon_sym_c_long] = ACTIONS(868), + [anon_sym_c_ulong] = ACTIONS(868), + [anon_sym_c_longlong] = ACTIONS(868), + [anon_sym_c_ulonglong] = ACTIONS(868), + [anon_sym_c_float] = ACTIONS(868), + [anon_sym_c_double] = ACTIONS(868), + [anon_sym_c_longdouble] = ACTIONS(868), + [anon_sym_PLUS_EQ] = ACTIONS(857), + [anon_sym_DASH_EQ] = ACTIONS(857), + [anon_sym_STAR_EQ] = ACTIONS(857), + [anon_sym_SLASH_EQ] = ACTIONS(857), + [anon_sym_return] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(852), + [anon_sym_break] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(852), + [anon_sym_defer] = ACTIONS(852), + [anon_sym_errdefer] = ACTIONS(852), + [anon_sym_if] = ACTIONS(852), + [anon_sym_else] = ACTIONS(852), + [anon_sym_while] = ACTIONS(852), + [anon_sym_for] = ACTIONS(852), + [anon_sym_match] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_try] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(852), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_true] = ACTIONS(852), + [anon_sym_false] = ACTIONS(852), + [sym_none] = ACTIONS(852), + [sym_undefined] = ACTIONS(852), + [sym_sink] = ACTIONS(852), + [sym_integer] = ACTIONS(852), + [sym_float] = ACTIONS(857), + [anon_sym_DQUOTE] = ACTIONS(857), + [sym_multiline_string] = ACTIONS(857), + [sym_character] = ACTIONS(857), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), + [sym__newline] = ACTIONS(857), + }, + [STATE(390)] = { + [sym_struct_type] = STATE(1479), + [sym_c_struct_type] = STATE(1855), + [sym_distinct_type] = STATE(1855), + [sym_alias_type] = STATE(1855), + [sym_union_type] = STATE(1855), + [sym_enum_type] = STATE(1855), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1690), + [sym_labeled_block] = STATE(1690), + [sym_if_statement] = STATE(1690), + [sym_while_statement] = STATE(1690), + [sym_for_statement] = STATE(1690), + [sym_match_statement] = STATE(1690), + [sym__value] = STATE(1690), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), + [anon_sym_import] = ACTIONS(884), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_c_struct] = ACTIONS(886), + [sym_opaque_type] = ACTIONS(888), + [anon_sym_distinct] = ACTIONS(890), + [anon_sym_alias] = ACTIONS(892), + [anon_sym_union] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_enum] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), }, [STATE(391)] = { - [sym_type] = STATE(2076), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(842), - [anon_sym_COLON_COLON] = ACTIONS(878), - [anon_sym_func] = ACTIONS(847), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(852), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_void] = ACTIONS(866), - [anon_sym_anyopaque] = ACTIONS(866), - [anon_sym_bool] = ACTIONS(866), - [anon_sym_int] = ACTIONS(866), - [anon_sym_float] = ACTIONS(866), - [anon_sym_range] = ACTIONS(866), - [anon_sym_i8] = ACTIONS(866), - [anon_sym_i16] = ACTIONS(866), - [anon_sym_i32] = ACTIONS(866), - [anon_sym_i64] = ACTIONS(866), - [anon_sym_u8] = ACTIONS(866), - [anon_sym_u16] = ACTIONS(866), - [anon_sym_u32] = ACTIONS(866), - [anon_sym_u64] = ACTIONS(866), - [anon_sym_isize] = ACTIONS(866), - [anon_sym_usize] = ACTIONS(866), - [anon_sym_f32] = ACTIONS(866), - [anon_sym_f64] = ACTIONS(866), - [anon_sym_c_char] = ACTIONS(866), - [anon_sym_c_schar] = ACTIONS(866), - [anon_sym_c_uchar] = ACTIONS(866), - [anon_sym_c_short] = ACTIONS(866), - [anon_sym_c_ushort] = ACTIONS(866), - [anon_sym_c_int] = ACTIONS(866), - [anon_sym_c_uint] = ACTIONS(866), - [anon_sym_c_long] = ACTIONS(866), - [anon_sym_c_ulong] = ACTIONS(866), - [anon_sym_c_longlong] = ACTIONS(866), - [anon_sym_c_ulonglong] = ACTIONS(866), - [anon_sym_c_float] = ACTIONS(866), - [anon_sym_c_double] = ACTIONS(866), - [anon_sym_c_longdouble] = ACTIONS(866), - [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(850), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_defer] = ACTIONS(850), - [anon_sym_errdefer] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_match] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_AMP] = ACTIONS(855), - [anon_sym_try] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(871), - [anon_sym_CARET] = ACTIONS(855), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [sym_none] = ACTIONS(850), - [sym_undefined] = ACTIONS(850), - [sym_sink] = ACTIONS(850), - [sym_integer] = ACTIONS(850), - [sym_float] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [sym_multiline_string] = ACTIONS(855), - [sym_character] = ACTIONS(855), + [sym_struct_type] = STATE(1477), + [sym_c_struct_type] = STATE(1832), + [sym_distinct_type] = STATE(1832), + [sym_alias_type] = STATE(1832), + [sym_union_type] = STATE(1832), + [sym_enum_type] = STATE(1832), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1812), + [sym_labeled_block] = STATE(1812), + [sym_if_statement] = STATE(1812), + [sym_while_statement] = STATE(1812), + [sym_for_statement] = STATE(1812), + [sym_match_statement] = STATE(1812), + [sym__value] = STATE(1812), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(390), + [sym_identifier] = ACTIONS(882), + [anon_sym_import] = ACTIONS(898), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_c_struct] = ACTIONS(886), + [sym_opaque_type] = ACTIONS(900), + [anon_sym_distinct] = ACTIONS(890), + [anon_sym_alias] = ACTIONS(892), + [anon_sym_union] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_enum] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), + [sym__newline] = ACTIONS(902), }, [STATE(392)] = { - [sym_struct_type] = STATE(1471), - [sym_c_struct_type] = STATE(1791), - [sym_distinct_type] = STATE(1791), - [sym_alias_type] = STATE(1791), - [sym_union_type] = STATE(1791), - [sym_enum_type] = STATE(1791), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1804), - [sym_labeled_block] = STATE(1804), - [sym_if_statement] = STATE(1804), - [sym_while_statement] = STATE(1804), - [sym_for_statement] = STATE(1804), - [sym_match_statement] = STATE(1804), - [sym__value] = STATE(1804), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), - [anon_sym_import] = ACTIONS(882), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_c_struct] = ACTIONS(884), - [sym_opaque_type] = ACTIONS(886), - [anon_sym_distinct] = ACTIONS(888), - [anon_sym_alias] = ACTIONS(890), - [anon_sym_union] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_enum] = ACTIONS(894), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_type] = STATE(420), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(612), + [anon_sym_func] = ACTIONS(617), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_DOLLAR] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_void] = ACTIONS(631), + [anon_sym_anyopaque] = ACTIONS(631), + [anon_sym_bool] = ACTIONS(631), + [anon_sym_int] = 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(610), + [anon_sym_DASH_EQ] = ACTIONS(610), + [anon_sym_STAR_EQ] = ACTIONS(610), + [anon_sym_SLASH_EQ] = ACTIONS(610), + [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_for] = ACTIONS(615), + [anon_sym_match] = ACTIONS(615), + [anon_sym_DOT_DOT] = ACTIONS(615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(610), + [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(610), + [anon_sym_BANG_EQ] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_try] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(610), + [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(610), + [anon_sym_DQUOTE] = ACTIONS(610), + [sym_multiline_string] = ACTIONS(610), + [sym_character] = ACTIONS(610), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(610), }, [STATE(393)] = { - [sym_type] = STATE(2076), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(842), - [anon_sym_COLON_COLON] = ACTIONS(878), - [anon_sym_func] = ACTIONS(847), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(855), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_void] = ACTIONS(866), - [anon_sym_anyopaque] = ACTIONS(866), - [anon_sym_bool] = ACTIONS(866), - [anon_sym_int] = ACTIONS(866), - [anon_sym_float] = ACTIONS(866), - [anon_sym_range] = ACTIONS(866), - [anon_sym_i8] = ACTIONS(866), - [anon_sym_i16] = ACTIONS(866), - [anon_sym_i32] = ACTIONS(866), - [anon_sym_i64] = ACTIONS(866), - [anon_sym_u8] = ACTIONS(866), - [anon_sym_u16] = ACTIONS(866), - [anon_sym_u32] = ACTIONS(866), - [anon_sym_u64] = ACTIONS(866), - [anon_sym_isize] = ACTIONS(866), - [anon_sym_usize] = ACTIONS(866), - [anon_sym_f32] = ACTIONS(866), - [anon_sym_f64] = ACTIONS(866), - [anon_sym_c_char] = ACTIONS(866), - [anon_sym_c_schar] = ACTIONS(866), - [anon_sym_c_uchar] = ACTIONS(866), - [anon_sym_c_short] = ACTIONS(866), - [anon_sym_c_ushort] = ACTIONS(866), - [anon_sym_c_int] = ACTIONS(866), - [anon_sym_c_uint] = ACTIONS(866), - [anon_sym_c_long] = ACTIONS(866), - [anon_sym_c_ulong] = ACTIONS(866), - [anon_sym_c_longlong] = ACTIONS(866), - [anon_sym_c_ulonglong] = ACTIONS(866), - [anon_sym_c_float] = ACTIONS(866), - [anon_sym_c_double] = ACTIONS(866), - [anon_sym_c_longdouble] = ACTIONS(866), - [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(850), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_defer] = ACTIONS(850), - [anon_sym_errdefer] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_match] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_AMP] = ACTIONS(855), - [anon_sym_try] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(855), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [sym_none] = ACTIONS(850), - [sym_undefined] = ACTIONS(850), - [sym_sink] = ACTIONS(850), - [sym_integer] = ACTIONS(850), - [sym_float] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [sym_multiline_string] = ACTIONS(855), - [sym_character] = ACTIONS(855), + [sym_type] = STATE(418), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(612), + [anon_sym_func] = ACTIONS(617), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_DOLLAR] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_void] = ACTIONS(631), + [anon_sym_anyopaque] = ACTIONS(631), + [anon_sym_bool] = ACTIONS(631), + [anon_sym_int] = 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(610), + [anon_sym_DASH_EQ] = ACTIONS(610), + [anon_sym_STAR_EQ] = ACTIONS(610), + [anon_sym_SLASH_EQ] = ACTIONS(610), + [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_for] = ACTIONS(615), + [anon_sym_match] = ACTIONS(615), + [anon_sym_DOT_DOT] = ACTIONS(615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(610), + [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(610), + [anon_sym_BANG_EQ] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_try] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(610), + [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(610), + [anon_sym_DQUOTE] = ACTIONS(610), + [sym_multiline_string] = ACTIONS(610), + [sym_character] = ACTIONS(610), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), + [sym__newline] = ACTIONS(610), }, [STATE(394)] = { - [sym_struct_type] = STATE(1461), - [sym_c_struct_type] = STATE(1879), - [sym_distinct_type] = STATE(1879), - [sym_alias_type] = STATE(1879), - [sym_union_type] = STATE(1879), - [sym_enum_type] = STATE(1879), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1711), - [sym_labeled_block] = STATE(1711), - [sym_if_statement] = STATE(1711), - [sym_while_statement] = STATE(1711), - [sym_for_statement] = STATE(1711), - [sym_match_statement] = STATE(1711), - [sym__value] = STATE(1711), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(392), - [sym_identifier] = ACTIONS(880), - [anon_sym_import] = ACTIONS(896), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_c_struct] = ACTIONS(884), - [sym_opaque_type] = ACTIONS(898), - [anon_sym_distinct] = ACTIONS(888), - [anon_sym_alias] = ACTIONS(890), - [anon_sym_union] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_enum] = ACTIONS(894), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_type] = STATE(2062), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(842), + [anon_sym_COLON_COLON] = ACTIONS(876), + [anon_sym_func] = ACTIONS(847), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_struct] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_DOLLAR] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_void] = ACTIONS(868), + [anon_sym_anyopaque] = ACTIONS(868), + [anon_sym_bool] = ACTIONS(868), + [anon_sym_int] = ACTIONS(868), + [anon_sym_float] = ACTIONS(868), + [anon_sym_range] = ACTIONS(868), + [anon_sym_i8] = ACTIONS(868), + [anon_sym_i16] = ACTIONS(868), + [anon_sym_i32] = ACTIONS(868), + [anon_sym_i64] = ACTIONS(868), + [anon_sym_u8] = ACTIONS(868), + [anon_sym_u16] = ACTIONS(868), + [anon_sym_u32] = ACTIONS(868), + [anon_sym_u64] = ACTIONS(868), + [anon_sym_isize] = ACTIONS(868), + [anon_sym_usize] = ACTIONS(868), + [anon_sym_f32] = ACTIONS(868), + [anon_sym_f64] = ACTIONS(868), + [anon_sym_c_char] = ACTIONS(868), + [anon_sym_c_schar] = ACTIONS(868), + [anon_sym_c_uchar] = ACTIONS(868), + [anon_sym_c_short] = ACTIONS(868), + [anon_sym_c_ushort] = ACTIONS(868), + [anon_sym_c_int] = ACTIONS(868), + [anon_sym_c_uint] = ACTIONS(868), + [anon_sym_c_long] = ACTIONS(868), + [anon_sym_c_ulong] = ACTIONS(868), + [anon_sym_c_longlong] = ACTIONS(868), + [anon_sym_c_ulonglong] = ACTIONS(868), + [anon_sym_c_float] = ACTIONS(868), + [anon_sym_c_double] = ACTIONS(868), + [anon_sym_c_longdouble] = ACTIONS(868), + [anon_sym_PLUS_EQ] = ACTIONS(857), + [anon_sym_DASH_EQ] = ACTIONS(857), + [anon_sym_STAR_EQ] = ACTIONS(857), + [anon_sym_SLASH_EQ] = ACTIONS(857), + [anon_sym_return] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(852), + [anon_sym_break] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(852), + [anon_sym_defer] = ACTIONS(852), + [anon_sym_errdefer] = ACTIONS(852), + [anon_sym_if] = ACTIONS(852), + [anon_sym_while] = ACTIONS(852), + [anon_sym_for] = ACTIONS(852), + [anon_sym_match] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_try] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(852), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_true] = ACTIONS(852), + [anon_sym_false] = ACTIONS(852), + [sym_none] = ACTIONS(852), + [sym_undefined] = ACTIONS(852), + [sym_sink] = ACTIONS(852), + [sym_integer] = ACTIONS(852), + [sym_float] = ACTIONS(857), + [anon_sym_DQUOTE] = ACTIONS(857), + [sym_multiline_string] = ACTIONS(857), + [sym_character] = ACTIONS(857), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(900), + [sym__newline] = ACTIONS(857), }, [STATE(395)] = { - [aux_sym_type_repeat1] = STATE(397), - [ts_builtin_sym_end] = ACTIONS(902), - [sym_identifier] = ACTIONS(904), - [anon_sym_COLON_COLON] = ACTIONS(902), - [anon_sym_import] = ACTIONS(904), - [anon_sym_func] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_EQ] = ACTIONS(904), - [anon_sym_struct] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(902), - [anon_sym_COMMA] = ACTIONS(902), - [anon_sym_RBRACE] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_DOLLAR] = ACTIONS(902), - [anon_sym_PIPE] = ACTIONS(906), - [anon_sym_QMARK] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_SEMI] = ACTIONS(902), - [anon_sym_RBRACK] = ACTIONS(902), - [anon_sym_void] = ACTIONS(904), - [anon_sym_anyopaque] = ACTIONS(904), - [anon_sym_bool] = ACTIONS(904), - [anon_sym_int] = ACTIONS(904), - [anon_sym_float] = ACTIONS(904), - [anon_sym_range] = ACTIONS(904), - [anon_sym_i8] = ACTIONS(904), - [anon_sym_i16] = ACTIONS(904), - [anon_sym_i32] = ACTIONS(904), - [anon_sym_i64] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(904), - [anon_sym_u16] = ACTIONS(904), - [anon_sym_u32] = ACTIONS(904), - [anon_sym_u64] = ACTIONS(904), - [anon_sym_isize] = ACTIONS(904), - [anon_sym_usize] = ACTIONS(904), - [anon_sym_f32] = ACTIONS(904), - [anon_sym_f64] = ACTIONS(904), - [anon_sym_c_char] = ACTIONS(904), - [anon_sym_c_schar] = ACTIONS(904), - [anon_sym_c_uchar] = ACTIONS(904), - [anon_sym_c_short] = ACTIONS(904), - [anon_sym_c_ushort] = ACTIONS(904), - [anon_sym_c_int] = ACTIONS(904), - [anon_sym_c_uint] = ACTIONS(904), - [anon_sym_c_long] = ACTIONS(904), - [anon_sym_c_ulong] = ACTIONS(904), - [anon_sym_c_longlong] = ACTIONS(904), - [anon_sym_c_ulonglong] = ACTIONS(904), - [anon_sym_c_float] = ACTIONS(904), - [anon_sym_c_double] = ACTIONS(904), - [anon_sym_c_longdouble] = ACTIONS(904), - [anon_sym_PLUS_EQ] = ACTIONS(902), - [anon_sym_DASH_EQ] = ACTIONS(902), - [anon_sym_STAR_EQ] = ACTIONS(902), - [anon_sym_SLASH_EQ] = ACTIONS(902), - [anon_sym_return] = ACTIONS(904), - [anon_sym_yield] = ACTIONS(904), - [anon_sym_COLON] = ACTIONS(904), - [anon_sym_break] = ACTIONS(904), - [anon_sym_continue] = ACTIONS(904), - [anon_sym_defer] = ACTIONS(904), - [anon_sym_errdefer] = ACTIONS(904), - [anon_sym_if] = ACTIONS(904), - [anon_sym_else] = ACTIONS(904), - [anon_sym_while] = ACTIONS(904), - [anon_sym_for] = ACTIONS(904), - [anon_sym_match] = ACTIONS(904), - [anon_sym_DOT_DOT] = ACTIONS(904), - [anon_sym_DOT_DOT_EQ] = ACTIONS(902), - [anon_sym_orelse] = ACTIONS(904), - [anon_sym_catch] = ACTIONS(904), - [anon_sym_or] = ACTIONS(904), - [anon_sym_and] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(902), - [anon_sym_BANG_EQ] = ACTIONS(902), - [anon_sym_LT] = ACTIONS(904), - [anon_sym_LT_EQ] = ACTIONS(902), - [anon_sym_GT] = ACTIONS(904), - [anon_sym_GT_EQ] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(904), - [anon_sym_SLASH] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_try] = ACTIONS(904), - [anon_sym_DOT] = ACTIONS(904), - [anon_sym_CARET] = ACTIONS(902), - [anon_sym_true] = ACTIONS(904), - [anon_sym_false] = ACTIONS(904), - [sym_none] = ACTIONS(904), - [sym_undefined] = ACTIONS(904), - [sym_sink] = ACTIONS(904), - [sym_integer] = ACTIONS(904), - [sym_float] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(902), - [sym_multiline_string] = ACTIONS(902), - [sym_character] = ACTIONS(902), + [aux_sym_type_repeat1] = STATE(395), + [ts_builtin_sym_end] = ACTIONS(904), + [sym_identifier] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(904), + [anon_sym_import] = ACTIONS(906), + [anon_sym_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(908), + [anon_sym_QMARK] = 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_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_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_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(902), + [sym__newline] = ACTIONS(904), }, [STATE(396)] = { - [aux_sym_type_repeat1] = STATE(396), - [ts_builtin_sym_end] = ACTIONS(908), - [sym_identifier] = ACTIONS(910), - [anon_sym_COLON_COLON] = ACTIONS(908), - [anon_sym_import] = ACTIONS(910), - [anon_sym_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(912), - [anon_sym_QMARK] = 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_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_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_argument_list] = STATE(424), + [ts_builtin_sym_end] = ACTIONS(911), + [sym_identifier] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(911), + [anon_sym_import] = ACTIONS(913), + [anon_sym_func] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(913), + [anon_sym_EQ] = ACTIONS(913), + [anon_sym_struct] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RPAREN] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_COMMA] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_QMARK] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_RBRACK] = ACTIONS(911), + [anon_sym_void] = ACTIONS(913), + [anon_sym_anyopaque] = ACTIONS(913), + [anon_sym_bool] = ACTIONS(913), + [anon_sym_int] = ACTIONS(913), + [anon_sym_float] = ACTIONS(913), + [anon_sym_range] = ACTIONS(913), + [anon_sym_i8] = ACTIONS(913), + [anon_sym_i16] = ACTIONS(913), + [anon_sym_i32] = ACTIONS(913), + [anon_sym_i64] = ACTIONS(913), + [anon_sym_u8] = ACTIONS(913), + [anon_sym_u16] = ACTIONS(913), + [anon_sym_u32] = ACTIONS(913), + [anon_sym_u64] = ACTIONS(913), + [anon_sym_isize] = ACTIONS(913), + [anon_sym_usize] = ACTIONS(913), + [anon_sym_f32] = ACTIONS(913), + [anon_sym_f64] = ACTIONS(913), + [anon_sym_c_char] = ACTIONS(913), + [anon_sym_c_schar] = ACTIONS(913), + [anon_sym_c_uchar] = ACTIONS(913), + [anon_sym_c_short] = ACTIONS(913), + [anon_sym_c_ushort] = ACTIONS(913), + [anon_sym_c_int] = ACTIONS(913), + [anon_sym_c_uint] = ACTIONS(913), + [anon_sym_c_long] = ACTIONS(913), + [anon_sym_c_ulong] = ACTIONS(913), + [anon_sym_c_longlong] = ACTIONS(913), + [anon_sym_c_ulonglong] = ACTIONS(913), + [anon_sym_c_float] = ACTIONS(913), + [anon_sym_c_double] = ACTIONS(913), + [anon_sym_c_longdouble] = ACTIONS(913), + [anon_sym_PLUS_EQ] = ACTIONS(911), + [anon_sym_DASH_EQ] = ACTIONS(911), + [anon_sym_STAR_EQ] = ACTIONS(911), + [anon_sym_SLASH_EQ] = ACTIONS(911), + [anon_sym_return] = ACTIONS(913), + [anon_sym_yield] = ACTIONS(913), + [anon_sym_COLON] = ACTIONS(913), + [anon_sym_break] = ACTIONS(913), + [anon_sym_continue] = ACTIONS(913), + [anon_sym_defer] = ACTIONS(913), + [anon_sym_errdefer] = ACTIONS(913), + [anon_sym_if] = ACTIONS(913), + [anon_sym_else] = ACTIONS(913), + [anon_sym_while] = ACTIONS(913), + [anon_sym_for] = ACTIONS(913), + [anon_sym_match] = ACTIONS(913), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_orelse] = ACTIONS(913), + [anon_sym_catch] = ACTIONS(913), + [anon_sym_or] = ACTIONS(913), + [anon_sym_and] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_LT] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_try] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(913), + [anon_sym_CARET] = ACTIONS(911), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [sym_none] = ACTIONS(913), + [sym_undefined] = ACTIONS(913), + [sym_sink] = ACTIONS(913), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym_multiline_string] = ACTIONS(911), + [sym_character] = ACTIONS(911), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(908), + [sym__newline] = ACTIONS(911), }, [STATE(397)] = { - [aux_sym_type_repeat1] = STATE(396), - [ts_builtin_sym_end] = ACTIONS(915), - [sym_identifier] = ACTIONS(917), - [anon_sym_COLON_COLON] = ACTIONS(915), - [anon_sym_import] = ACTIONS(917), - [anon_sym_func] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_struct] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(915), - [anon_sym_RPAREN] = ACTIONS(915), - [anon_sym_LBRACE] = ACTIONS(915), - [anon_sym_COMMA] = ACTIONS(915), - [anon_sym_RBRACE] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(915), - [anon_sym_PIPE] = ACTIONS(906), - [anon_sym_QMARK] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(915), - [anon_sym_RBRACK] = ACTIONS(915), - [anon_sym_void] = ACTIONS(917), - [anon_sym_anyopaque] = ACTIONS(917), - [anon_sym_bool] = ACTIONS(917), - [anon_sym_int] = ACTIONS(917), - [anon_sym_float] = ACTIONS(917), - [anon_sym_range] = ACTIONS(917), - [anon_sym_i8] = ACTIONS(917), - [anon_sym_i16] = ACTIONS(917), - [anon_sym_i32] = ACTIONS(917), - [anon_sym_i64] = ACTIONS(917), - [anon_sym_u8] = ACTIONS(917), - [anon_sym_u16] = ACTIONS(917), - [anon_sym_u32] = ACTIONS(917), - [anon_sym_u64] = ACTIONS(917), - [anon_sym_isize] = ACTIONS(917), - [anon_sym_usize] = ACTIONS(917), - [anon_sym_f32] = ACTIONS(917), - [anon_sym_f64] = ACTIONS(917), - [anon_sym_c_char] = ACTIONS(917), - [anon_sym_c_schar] = ACTIONS(917), - [anon_sym_c_uchar] = ACTIONS(917), - [anon_sym_c_short] = ACTIONS(917), - [anon_sym_c_ushort] = ACTIONS(917), - [anon_sym_c_int] = ACTIONS(917), - [anon_sym_c_uint] = ACTIONS(917), - [anon_sym_c_long] = ACTIONS(917), - [anon_sym_c_ulong] = ACTIONS(917), - [anon_sym_c_longlong] = ACTIONS(917), - [anon_sym_c_ulonglong] = ACTIONS(917), - [anon_sym_c_float] = ACTIONS(917), - [anon_sym_c_double] = ACTIONS(917), - [anon_sym_c_longdouble] = ACTIONS(917), - [anon_sym_PLUS_EQ] = ACTIONS(915), - [anon_sym_DASH_EQ] = ACTIONS(915), - [anon_sym_STAR_EQ] = ACTIONS(915), - [anon_sym_SLASH_EQ] = ACTIONS(915), - [anon_sym_return] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(917), - [anon_sym_COLON] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_defer] = ACTIONS(917), - [anon_sym_errdefer] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_else] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(915), - [anon_sym_orelse] = ACTIONS(917), - [anon_sym_catch] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(915), - [anon_sym_BANG_EQ] = ACTIONS(915), - [anon_sym_LT] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(915), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(915), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_AMP] = ACTIONS(915), - [anon_sym_try] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_CARET] = ACTIONS(915), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [sym_none] = ACTIONS(917), - [sym_undefined] = ACTIONS(917), - [sym_sink] = ACTIONS(917), - [sym_integer] = ACTIONS(917), - [sym_float] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(915), - [sym_multiline_string] = ACTIONS(915), - [sym_character] = ACTIONS(915), + [aux_sym_type_repeat1] = STATE(395), + [ts_builtin_sym_end] = ACTIONS(917), + [sym_identifier] = ACTIONS(919), + [anon_sym_COLON_COLON] = ACTIONS(917), + [anon_sym_import] = 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(917), + [anon_sym_QMARK] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(919), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(917), + [anon_sym_RBRACK] = ACTIONS(917), + [anon_sym_void] = ACTIONS(919), + [anon_sym_anyopaque] = ACTIONS(919), + [anon_sym_bool] = ACTIONS(919), + [anon_sym_int] = 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_return] = ACTIONS(919), + [anon_sym_yield] = ACTIONS(919), + [anon_sym_COLON] = 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_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_PLUS] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_AMP] = 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(915), + [sym__newline] = ACTIONS(917), }, [STATE(398)] = { - [aux_sym_type_repeat1] = STATE(400), - [ts_builtin_sym_end] = ACTIONS(902), - [sym_identifier] = ACTIONS(904), - [anon_sym_COLON_COLON] = ACTIONS(902), - [anon_sym_import] = ACTIONS(904), - [anon_sym_func] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_EQ] = ACTIONS(904), - [anon_sym_struct] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(902), - [anon_sym_COMMA] = ACTIONS(902), - [anon_sym_RBRACE] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_DOLLAR] = ACTIONS(902), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_QMARK] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_SEMI] = ACTIONS(902), - [anon_sym_RBRACK] = ACTIONS(902), - [anon_sym_void] = ACTIONS(904), - [anon_sym_anyopaque] = ACTIONS(904), - [anon_sym_bool] = ACTIONS(904), - [anon_sym_int] = ACTIONS(904), - [anon_sym_float] = ACTIONS(904), - [anon_sym_range] = ACTIONS(904), - [anon_sym_i8] = ACTIONS(904), - [anon_sym_i16] = ACTIONS(904), - [anon_sym_i32] = ACTIONS(904), - [anon_sym_i64] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(904), - [anon_sym_u16] = ACTIONS(904), - [anon_sym_u32] = ACTIONS(904), - [anon_sym_u64] = ACTIONS(904), - [anon_sym_isize] = ACTIONS(904), - [anon_sym_usize] = ACTIONS(904), - [anon_sym_f32] = ACTIONS(904), - [anon_sym_f64] = ACTIONS(904), - [anon_sym_c_char] = ACTIONS(904), - [anon_sym_c_schar] = ACTIONS(904), - [anon_sym_c_uchar] = ACTIONS(904), - [anon_sym_c_short] = ACTIONS(904), - [anon_sym_c_ushort] = ACTIONS(904), - [anon_sym_c_int] = ACTIONS(904), - [anon_sym_c_uint] = ACTIONS(904), - [anon_sym_c_long] = ACTIONS(904), - [anon_sym_c_ulong] = ACTIONS(904), - [anon_sym_c_longlong] = ACTIONS(904), - [anon_sym_c_ulonglong] = ACTIONS(904), - [anon_sym_c_float] = ACTIONS(904), - [anon_sym_c_double] = ACTIONS(904), - [anon_sym_c_longdouble] = ACTIONS(904), - [anon_sym_PLUS_EQ] = ACTIONS(902), - [anon_sym_DASH_EQ] = ACTIONS(902), - [anon_sym_STAR_EQ] = ACTIONS(902), - [anon_sym_SLASH_EQ] = ACTIONS(902), - [anon_sym_return] = ACTIONS(904), - [anon_sym_yield] = ACTIONS(904), - [anon_sym_COLON] = ACTIONS(904), - [anon_sym_break] = ACTIONS(904), - [anon_sym_continue] = ACTIONS(904), - [anon_sym_defer] = ACTIONS(904), - [anon_sym_errdefer] = ACTIONS(904), - [anon_sym_if] = ACTIONS(904), - [anon_sym_else] = ACTIONS(904), - [anon_sym_while] = ACTIONS(904), - [anon_sym_for] = ACTIONS(904), - [anon_sym_match] = ACTIONS(904), - [anon_sym_DOT_DOT] = ACTIONS(904), - [anon_sym_DOT_DOT_EQ] = ACTIONS(902), - [anon_sym_orelse] = ACTIONS(904), - [anon_sym_catch] = ACTIONS(904), - [anon_sym_or] = ACTIONS(904), - [anon_sym_and] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(902), - [anon_sym_BANG_EQ] = ACTIONS(902), - [anon_sym_LT] = ACTIONS(904), - [anon_sym_LT_EQ] = ACTIONS(902), - [anon_sym_GT] = ACTIONS(904), - [anon_sym_GT_EQ] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(904), - [anon_sym_SLASH] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_try] = ACTIONS(904), - [anon_sym_DOT] = ACTIONS(904), - [anon_sym_CARET] = ACTIONS(902), - [anon_sym_true] = ACTIONS(904), - [anon_sym_false] = ACTIONS(904), - [sym_none] = ACTIONS(904), - [sym_undefined] = ACTIONS(904), - [sym_sink] = ACTIONS(904), - [sym_integer] = ACTIONS(904), - [sym_float] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(902), - [sym_multiline_string] = ACTIONS(902), - [sym_character] = ACTIONS(902), + [aux_sym_type_repeat1] = STATE(397), + [ts_builtin_sym_end] = ACTIONS(921), + [sym_identifier] = ACTIONS(923), + [anon_sym_COLON_COLON] = ACTIONS(921), + [anon_sym_import] = 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(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_SEMI] = ACTIONS(921), + [anon_sym_RBRACK] = ACTIONS(921), + [anon_sym_void] = ACTIONS(923), + [anon_sym_anyopaque] = ACTIONS(923), + [anon_sym_bool] = ACTIONS(923), + [anon_sym_int] = 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_return] = ACTIONS(923), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_COLON] = 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_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_PLUS] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_AMP] = 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(902), + [sym__newline] = ACTIONS(921), }, [STATE(399)] = { - [sym_argument_list] = STATE(451), - [ts_builtin_sym_end] = ACTIONS(919), - [sym_identifier] = ACTIONS(921), - [anon_sym_COLON_COLON] = ACTIONS(919), - [anon_sym_import] = ACTIONS(921), - [anon_sym_func] = ACTIONS(921), - [anon_sym_BANG] = ACTIONS(921), - [anon_sym_EQ] = ACTIONS(921), - [anon_sym_struct] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(919), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_COMMA] = ACTIONS(919), - [anon_sym_RBRACE] = ACTIONS(919), - [anon_sym_DASH] = ACTIONS(921), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_QMARK] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(921), - [anon_sym_LBRACK] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(919), - [anon_sym_RBRACK] = ACTIONS(919), - [anon_sym_void] = ACTIONS(921), - [anon_sym_anyopaque] = ACTIONS(921), - [anon_sym_bool] = ACTIONS(921), - [anon_sym_int] = ACTIONS(921), - [anon_sym_float] = ACTIONS(921), - [anon_sym_range] = ACTIONS(921), - [anon_sym_i8] = ACTIONS(921), - [anon_sym_i16] = ACTIONS(921), - [anon_sym_i32] = ACTIONS(921), - [anon_sym_i64] = ACTIONS(921), - [anon_sym_u8] = ACTIONS(921), - [anon_sym_u16] = ACTIONS(921), - [anon_sym_u32] = ACTIONS(921), - [anon_sym_u64] = ACTIONS(921), - [anon_sym_isize] = ACTIONS(921), - [anon_sym_usize] = ACTIONS(921), - [anon_sym_f32] = ACTIONS(921), - [anon_sym_f64] = ACTIONS(921), - [anon_sym_c_char] = ACTIONS(921), - [anon_sym_c_schar] = ACTIONS(921), - [anon_sym_c_uchar] = ACTIONS(921), - [anon_sym_c_short] = ACTIONS(921), - [anon_sym_c_ushort] = ACTIONS(921), - [anon_sym_c_int] = ACTIONS(921), - [anon_sym_c_uint] = ACTIONS(921), - [anon_sym_c_long] = ACTIONS(921), - [anon_sym_c_ulong] = ACTIONS(921), - [anon_sym_c_longlong] = ACTIONS(921), - [anon_sym_c_ulonglong] = ACTIONS(921), - [anon_sym_c_float] = ACTIONS(921), - [anon_sym_c_double] = ACTIONS(921), - [anon_sym_c_longdouble] = ACTIONS(921), - [anon_sym_PLUS_EQ] = ACTIONS(919), - [anon_sym_DASH_EQ] = ACTIONS(919), - [anon_sym_STAR_EQ] = ACTIONS(919), - [anon_sym_SLASH_EQ] = ACTIONS(919), - [anon_sym_return] = ACTIONS(921), - [anon_sym_yield] = ACTIONS(921), - [anon_sym_COLON] = ACTIONS(921), - [anon_sym_break] = ACTIONS(921), - [anon_sym_continue] = ACTIONS(921), - [anon_sym_defer] = ACTIONS(921), - [anon_sym_errdefer] = ACTIONS(921), - [anon_sym_if] = ACTIONS(921), - [anon_sym_else] = ACTIONS(921), - [anon_sym_while] = ACTIONS(921), - [anon_sym_for] = ACTIONS(921), - [anon_sym_match] = ACTIONS(921), - [anon_sym_DOT_DOT] = ACTIONS(921), - [anon_sym_DOT_DOT_EQ] = ACTIONS(919), - [anon_sym_orelse] = ACTIONS(921), - [anon_sym_catch] = ACTIONS(921), - [anon_sym_or] = ACTIONS(921), - [anon_sym_and] = ACTIONS(921), - [anon_sym_EQ_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(921), - [anon_sym_LT_EQ] = ACTIONS(919), - [anon_sym_GT] = ACTIONS(921), - [anon_sym_GT_EQ] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(921), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_AMP] = ACTIONS(919), - [anon_sym_try] = ACTIONS(921), - [anon_sym_DOT] = ACTIONS(921), - [anon_sym_CARET] = ACTIONS(919), - [anon_sym_true] = ACTIONS(921), - [anon_sym_false] = ACTIONS(921), - [sym_none] = ACTIONS(921), - [sym_undefined] = ACTIONS(921), - [sym_sink] = ACTIONS(921), - [sym_integer] = ACTIONS(921), - [sym_float] = ACTIONS(919), - [anon_sym_DQUOTE] = ACTIONS(919), - [sym_multiline_string] = ACTIONS(919), - [sym_character] = ACTIONS(919), + [aux_sym_type_repeat1] = STATE(395), + [ts_builtin_sym_end] = ACTIONS(917), + [sym_identifier] = ACTIONS(919), + [anon_sym_COLON_COLON] = ACTIONS(917), + [anon_sym_import] = 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(925), + [anon_sym_QMARK] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(919), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(917), + [anon_sym_RBRACK] = ACTIONS(917), + [anon_sym_void] = ACTIONS(919), + [anon_sym_anyopaque] = ACTIONS(919), + [anon_sym_bool] = ACTIONS(919), + [anon_sym_int] = 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_return] = ACTIONS(919), + [anon_sym_yield] = ACTIONS(919), + [anon_sym_COLON] = 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_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_PLUS] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_AMP] = 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(919), + [sym__newline] = ACTIONS(917), }, [STATE(400)] = { - [aux_sym_type_repeat1] = STATE(396), - [ts_builtin_sym_end] = ACTIONS(915), - [sym_identifier] = ACTIONS(917), - [anon_sym_COLON_COLON] = ACTIONS(915), - [anon_sym_import] = ACTIONS(917), - [anon_sym_func] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_struct] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(915), - [anon_sym_RPAREN] = ACTIONS(915), - [anon_sym_LBRACE] = ACTIONS(915), - [anon_sym_COMMA] = ACTIONS(915), - [anon_sym_RBRACE] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(915), - [anon_sym_PIPE] = ACTIONS(915), - [anon_sym_QMARK] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(915), - [anon_sym_RBRACK] = ACTIONS(915), - [anon_sym_void] = ACTIONS(917), - [anon_sym_anyopaque] = ACTIONS(917), - [anon_sym_bool] = ACTIONS(917), - [anon_sym_int] = ACTIONS(917), - [anon_sym_float] = ACTIONS(917), - [anon_sym_range] = ACTIONS(917), - [anon_sym_i8] = ACTIONS(917), - [anon_sym_i16] = ACTIONS(917), - [anon_sym_i32] = ACTIONS(917), - [anon_sym_i64] = ACTIONS(917), - [anon_sym_u8] = ACTIONS(917), - [anon_sym_u16] = ACTIONS(917), - [anon_sym_u32] = ACTIONS(917), - [anon_sym_u64] = ACTIONS(917), - [anon_sym_isize] = ACTIONS(917), - [anon_sym_usize] = ACTIONS(917), - [anon_sym_f32] = ACTIONS(917), - [anon_sym_f64] = ACTIONS(917), - [anon_sym_c_char] = ACTIONS(917), - [anon_sym_c_schar] = ACTIONS(917), - [anon_sym_c_uchar] = ACTIONS(917), - [anon_sym_c_short] = ACTIONS(917), - [anon_sym_c_ushort] = ACTIONS(917), - [anon_sym_c_int] = ACTIONS(917), - [anon_sym_c_uint] = ACTIONS(917), - [anon_sym_c_long] = ACTIONS(917), - [anon_sym_c_ulong] = ACTIONS(917), - [anon_sym_c_longlong] = ACTIONS(917), - [anon_sym_c_ulonglong] = ACTIONS(917), - [anon_sym_c_float] = ACTIONS(917), - [anon_sym_c_double] = ACTIONS(917), - [anon_sym_c_longdouble] = ACTIONS(917), - [anon_sym_PLUS_EQ] = ACTIONS(915), - [anon_sym_DASH_EQ] = ACTIONS(915), - [anon_sym_STAR_EQ] = ACTIONS(915), - [anon_sym_SLASH_EQ] = ACTIONS(915), - [anon_sym_return] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(917), - [anon_sym_COLON] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_defer] = ACTIONS(917), - [anon_sym_errdefer] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_else] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(915), - [anon_sym_orelse] = ACTIONS(917), - [anon_sym_catch] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(915), - [anon_sym_BANG_EQ] = ACTIONS(915), - [anon_sym_LT] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(915), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(915), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_AMP] = ACTIONS(915), - [anon_sym_try] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_CARET] = ACTIONS(915), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [sym_none] = ACTIONS(917), - [sym_undefined] = ACTIONS(917), - [sym_sink] = ACTIONS(917), - [sym_integer] = ACTIONS(917), - [sym_float] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(915), - [sym_multiline_string] = ACTIONS(915), - [sym_character] = ACTIONS(915), + [aux_sym_type_repeat1] = STATE(399), + [ts_builtin_sym_end] = ACTIONS(921), + [sym_identifier] = ACTIONS(923), + [anon_sym_COLON_COLON] = ACTIONS(921), + [anon_sym_import] = 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(925), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_SEMI] = ACTIONS(921), + [anon_sym_RBRACK] = ACTIONS(921), + [anon_sym_void] = ACTIONS(923), + [anon_sym_anyopaque] = ACTIONS(923), + [anon_sym_bool] = ACTIONS(923), + [anon_sym_int] = 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_return] = ACTIONS(923), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_COLON] = 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_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_PLUS] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_AMP] = 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(915), + [sym__newline] = ACTIONS(921), }, [STATE(401)] = { - [sym_argument_list] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(925), - [sym_identifier] = ACTIONS(927), - [anon_sym_import] = 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(923), - [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(925), + [sym_argument_list] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(927), + [sym_identifier] = ACTIONS(929), + [anon_sym_import] = ACTIONS(929), + [anon_sym_func] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_struct] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RPAREN] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_COMMA] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_SEMI] = ACTIONS(925), - [anon_sym_RBRACK] = ACTIONS(925), - [anon_sym_void] = ACTIONS(927), - [anon_sym_anyopaque] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_int] = 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_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_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_PLUS] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_try] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(927), + [anon_sym_RBRACK] = ACTIONS(927), + [anon_sym_void] = ACTIONS(929), + [anon_sym_anyopaque] = ACTIONS(929), + [anon_sym_bool] = ACTIONS(929), + [anon_sym_int] = ACTIONS(929), + [anon_sym_float] = ACTIONS(929), + [anon_sym_range] = ACTIONS(929), + [anon_sym_i8] = ACTIONS(929), + [anon_sym_i16] = ACTIONS(929), + [anon_sym_i32] = ACTIONS(929), + [anon_sym_i64] = ACTIONS(929), + [anon_sym_u8] = ACTIONS(929), + [anon_sym_u16] = ACTIONS(929), + [anon_sym_u32] = ACTIONS(929), + [anon_sym_u64] = ACTIONS(929), + [anon_sym_isize] = ACTIONS(929), + [anon_sym_usize] = ACTIONS(929), + [anon_sym_f32] = ACTIONS(929), + [anon_sym_f64] = ACTIONS(929), + [anon_sym_c_char] = ACTIONS(929), + [anon_sym_c_schar] = ACTIONS(929), + [anon_sym_c_uchar] = ACTIONS(929), + [anon_sym_c_short] = ACTIONS(929), + [anon_sym_c_ushort] = ACTIONS(929), + [anon_sym_c_int] = ACTIONS(929), + [anon_sym_c_uint] = ACTIONS(929), + [anon_sym_c_long] = ACTIONS(929), + [anon_sym_c_ulong] = ACTIONS(929), + [anon_sym_c_longlong] = ACTIONS(929), + [anon_sym_c_ulonglong] = ACTIONS(929), + [anon_sym_c_float] = ACTIONS(929), + [anon_sym_c_double] = ACTIONS(929), + [anon_sym_c_longdouble] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(927), + [anon_sym_DASH_EQ] = ACTIONS(927), + [anon_sym_STAR_EQ] = ACTIONS(927), + [anon_sym_SLASH_EQ] = ACTIONS(927), + [anon_sym_return] = ACTIONS(929), + [anon_sym_yield] = ACTIONS(929), + [anon_sym_COLON] = ACTIONS(927), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_defer] = ACTIONS(929), + [anon_sym_errdefer] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(927), + [anon_sym_orelse] = ACTIONS(929), + [anon_sym_catch] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [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), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [sym_none] = ACTIONS(929), + [sym_undefined] = ACTIONS(929), + [sym_sink] = ACTIONS(929), + [sym_integer] = ACTIONS(929), + [sym_float] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym_multiline_string] = ACTIONS(927), + [sym_character] = ACTIONS(927), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(925), + [sym__newline] = ACTIONS(927), }, [STATE(402)] = { - [ts_builtin_sym_end] = ACTIONS(908), - [sym_identifier] = ACTIONS(910), - [anon_sym_COLON_COLON] = ACTIONS(908), - [anon_sym_import] = ACTIONS(910), - [anon_sym_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_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_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_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), + [ts_builtin_sym_end] = ACTIONS(935), + [sym_identifier] = ACTIONS(937), + [anon_sym_COLON_COLON] = ACTIONS(935), + [anon_sym_import] = ACTIONS(937), + [anon_sym_func] = ACTIONS(937), + [anon_sym_BANG] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(937), + [anon_sym_struct] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_QMARK] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_RBRACK] = ACTIONS(935), + [anon_sym_void] = ACTIONS(937), + [anon_sym_anyopaque] = ACTIONS(937), + [anon_sym_bool] = ACTIONS(937), + [anon_sym_int] = ACTIONS(937), + [anon_sym_float] = ACTIONS(937), + [anon_sym_range] = ACTIONS(937), + [anon_sym_i8] = ACTIONS(937), + [anon_sym_i16] = ACTIONS(937), + [anon_sym_i32] = ACTIONS(937), + [anon_sym_i64] = ACTIONS(937), + [anon_sym_u8] = ACTIONS(937), + [anon_sym_u16] = ACTIONS(937), + [anon_sym_u32] = ACTIONS(937), + [anon_sym_u64] = ACTIONS(937), + [anon_sym_isize] = ACTIONS(937), + [anon_sym_usize] = ACTIONS(937), + [anon_sym_f32] = ACTIONS(937), + [anon_sym_f64] = ACTIONS(937), + [anon_sym_c_char] = ACTIONS(937), + [anon_sym_c_schar] = ACTIONS(937), + [anon_sym_c_uchar] = ACTIONS(937), + [anon_sym_c_short] = ACTIONS(937), + [anon_sym_c_ushort] = ACTIONS(937), + [anon_sym_c_int] = ACTIONS(937), + [anon_sym_c_uint] = ACTIONS(937), + [anon_sym_c_long] = ACTIONS(937), + [anon_sym_c_ulong] = ACTIONS(937), + [anon_sym_c_longlong] = ACTIONS(937), + [anon_sym_c_ulonglong] = ACTIONS(937), + [anon_sym_c_float] = ACTIONS(937), + [anon_sym_c_double] = ACTIONS(937), + [anon_sym_c_longdouble] = ACTIONS(937), + [anon_sym_PLUS_EQ] = ACTIONS(935), + [anon_sym_DASH_EQ] = ACTIONS(935), + [anon_sym_STAR_EQ] = ACTIONS(935), + [anon_sym_SLASH_EQ] = ACTIONS(935), + [anon_sym_return] = ACTIONS(937), + [anon_sym_yield] = ACTIONS(937), + [anon_sym_COLON] = ACTIONS(937), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(937), + [anon_sym_defer] = ACTIONS(937), + [anon_sym_errdefer] = ACTIONS(937), + [anon_sym_if] = ACTIONS(937), + [anon_sym_else] = ACTIONS(937), + [anon_sym_while] = ACTIONS(937), + [anon_sym_for] = ACTIONS(937), + [anon_sym_match] = ACTIONS(937), + [anon_sym_DOT_DOT] = ACTIONS(937), + [anon_sym_DOT_DOT_EQ] = ACTIONS(935), + [anon_sym_orelse] = ACTIONS(937), + [anon_sym_catch] = ACTIONS(937), + [anon_sym_or] = ACTIONS(937), + [anon_sym_and] = ACTIONS(937), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(937), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_SLASH] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_try] = ACTIONS(937), + [anon_sym_DOT] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_true] = ACTIONS(937), + [anon_sym_false] = ACTIONS(937), + [sym_none] = ACTIONS(937), + [sym_undefined] = ACTIONS(937), + [sym_sink] = ACTIONS(937), + [sym_integer] = ACTIONS(937), + [sym_float] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_multiline_string] = ACTIONS(935), + [sym_character] = ACTIONS(935), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(908), + [sym__newline] = ACTIONS(935), }, [STATE(403)] = { - [ts_builtin_sym_end] = ACTIONS(933), - [sym_identifier] = ACTIONS(935), - [anon_sym_COLON_COLON] = ACTIONS(933), - [anon_sym_import] = 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(933), - [anon_sym_QMARK] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_RBRACK] = ACTIONS(933), - [anon_sym_void] = ACTIONS(935), - [anon_sym_anyopaque] = ACTIONS(935), - [anon_sym_bool] = ACTIONS(935), - [anon_sym_int] = 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_return] = ACTIONS(935), - [anon_sym_yield] = ACTIONS(935), - [anon_sym_COLON] = 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_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_PLUS] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_AMP] = 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), + [ts_builtin_sym_end] = ACTIONS(939), + [sym_identifier] = ACTIONS(941), + [anon_sym_COLON_COLON] = ACTIONS(939), + [anon_sym_import] = ACTIONS(941), + [anon_sym_func] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_struct] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(939), + [anon_sym_RPAREN] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_COMMA] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(939), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_QMARK] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_RBRACK] = ACTIONS(939), + [anon_sym_void] = ACTIONS(941), + [anon_sym_anyopaque] = ACTIONS(941), + [anon_sym_bool] = ACTIONS(941), + [anon_sym_int] = ACTIONS(941), + [anon_sym_float] = ACTIONS(941), + [anon_sym_range] = ACTIONS(941), + [anon_sym_i8] = ACTIONS(941), + [anon_sym_i16] = ACTIONS(941), + [anon_sym_i32] = ACTIONS(941), + [anon_sym_i64] = ACTIONS(941), + [anon_sym_u8] = ACTIONS(941), + [anon_sym_u16] = ACTIONS(941), + [anon_sym_u32] = ACTIONS(941), + [anon_sym_u64] = ACTIONS(941), + [anon_sym_isize] = ACTIONS(941), + [anon_sym_usize] = ACTIONS(941), + [anon_sym_f32] = ACTIONS(941), + [anon_sym_f64] = ACTIONS(941), + [anon_sym_c_char] = ACTIONS(941), + [anon_sym_c_schar] = ACTIONS(941), + [anon_sym_c_uchar] = ACTIONS(941), + [anon_sym_c_short] = ACTIONS(941), + [anon_sym_c_ushort] = ACTIONS(941), + [anon_sym_c_int] = ACTIONS(941), + [anon_sym_c_uint] = ACTIONS(941), + [anon_sym_c_long] = ACTIONS(941), + [anon_sym_c_ulong] = ACTIONS(941), + [anon_sym_c_longlong] = ACTIONS(941), + [anon_sym_c_ulonglong] = ACTIONS(941), + [anon_sym_c_float] = ACTIONS(941), + [anon_sym_c_double] = ACTIONS(941), + [anon_sym_c_longdouble] = ACTIONS(941), + [anon_sym_PLUS_EQ] = ACTIONS(939), + [anon_sym_DASH_EQ] = ACTIONS(939), + [anon_sym_STAR_EQ] = ACTIONS(939), + [anon_sym_SLASH_EQ] = ACTIONS(939), + [anon_sym_return] = ACTIONS(941), + [anon_sym_yield] = ACTIONS(941), + [anon_sym_COLON] = ACTIONS(941), + [anon_sym_break] = ACTIONS(941), + [anon_sym_continue] = ACTIONS(941), + [anon_sym_defer] = ACTIONS(941), + [anon_sym_errdefer] = ACTIONS(941), + [anon_sym_if] = ACTIONS(941), + [anon_sym_else] = ACTIONS(941), + [anon_sym_while] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_match] = ACTIONS(941), + [anon_sym_DOT_DOT] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ] = ACTIONS(939), + [anon_sym_orelse] = ACTIONS(941), + [anon_sym_catch] = ACTIONS(941), + [anon_sym_or] = ACTIONS(941), + [anon_sym_and] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(939), + [anon_sym_BANG_EQ] = ACTIONS(939), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_LT_EQ] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(941), + [anon_sym_GT_EQ] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_SLASH] = ACTIONS(941), + [anon_sym_AMP] = ACTIONS(939), + [anon_sym_try] = ACTIONS(941), + [anon_sym_DOT] = ACTIONS(941), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_true] = ACTIONS(941), + [anon_sym_false] = ACTIONS(941), + [sym_none] = ACTIONS(941), + [sym_undefined] = ACTIONS(941), + [sym_sink] = ACTIONS(941), + [sym_integer] = ACTIONS(941), + [sym_float] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(939), + [sym_multiline_string] = ACTIONS(939), + [sym_character] = ACTIONS(939), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(933), + [sym__newline] = ACTIONS(939), }, [STATE(404)] = { - [ts_builtin_sym_end] = ACTIONS(937), - [sym_identifier] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(937), - [anon_sym_import] = 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(937), - [anon_sym_QMARK] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_RBRACK] = ACTIONS(937), - [anon_sym_void] = ACTIONS(939), - [anon_sym_anyopaque] = ACTIONS(939), - [anon_sym_bool] = ACTIONS(939), - [anon_sym_int] = 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_return] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(939), - [anon_sym_COLON] = 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_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_PLUS] = ACTIONS(939), - [anon_sym_SLASH] = ACTIONS(939), - [anon_sym_AMP] = 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), + [ts_builtin_sym_end] = ACTIONS(943), + [sym_identifier] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(943), + [anon_sym_import] = ACTIONS(945), + [anon_sym_func] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_EQ] = ACTIONS(945), + [anon_sym_struct] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_RPAREN] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_QMARK] = ACTIONS(943), + [anon_sym_STAR] = ACTIONS(945), + [anon_sym_LBRACK] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_RBRACK] = ACTIONS(943), + [anon_sym_void] = ACTIONS(945), + [anon_sym_anyopaque] = ACTIONS(945), + [anon_sym_bool] = ACTIONS(945), + [anon_sym_int] = ACTIONS(945), + [anon_sym_float] = ACTIONS(945), + [anon_sym_range] = ACTIONS(945), + [anon_sym_i8] = ACTIONS(945), + [anon_sym_i16] = ACTIONS(945), + [anon_sym_i32] = ACTIONS(945), + [anon_sym_i64] = ACTIONS(945), + [anon_sym_u8] = ACTIONS(945), + [anon_sym_u16] = ACTIONS(945), + [anon_sym_u32] = ACTIONS(945), + [anon_sym_u64] = ACTIONS(945), + [anon_sym_isize] = ACTIONS(945), + [anon_sym_usize] = ACTIONS(945), + [anon_sym_f32] = ACTIONS(945), + [anon_sym_f64] = ACTIONS(945), + [anon_sym_c_char] = ACTIONS(945), + [anon_sym_c_schar] = ACTIONS(945), + [anon_sym_c_uchar] = ACTIONS(945), + [anon_sym_c_short] = ACTIONS(945), + [anon_sym_c_ushort] = ACTIONS(945), + [anon_sym_c_int] = ACTIONS(945), + [anon_sym_c_uint] = ACTIONS(945), + [anon_sym_c_long] = ACTIONS(945), + [anon_sym_c_ulong] = ACTIONS(945), + [anon_sym_c_longlong] = ACTIONS(945), + [anon_sym_c_ulonglong] = ACTIONS(945), + [anon_sym_c_float] = ACTIONS(945), + [anon_sym_c_double] = ACTIONS(945), + [anon_sym_c_longdouble] = ACTIONS(945), + [anon_sym_PLUS_EQ] = ACTIONS(943), + [anon_sym_DASH_EQ] = ACTIONS(943), + [anon_sym_STAR_EQ] = ACTIONS(943), + [anon_sym_SLASH_EQ] = ACTIONS(943), + [anon_sym_return] = ACTIONS(945), + [anon_sym_yield] = ACTIONS(945), + [anon_sym_COLON] = ACTIONS(945), + [anon_sym_break] = ACTIONS(945), + [anon_sym_continue] = ACTIONS(945), + [anon_sym_defer] = ACTIONS(945), + [anon_sym_errdefer] = ACTIONS(945), + [anon_sym_if] = ACTIONS(945), + [anon_sym_else] = ACTIONS(945), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(945), + [anon_sym_match] = ACTIONS(945), + [anon_sym_DOT_DOT] = ACTIONS(945), + [anon_sym_DOT_DOT_EQ] = ACTIONS(943), + [anon_sym_orelse] = ACTIONS(945), + [anon_sym_catch] = ACTIONS(945), + [anon_sym_or] = ACTIONS(945), + [anon_sym_and] = ACTIONS(945), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(945), + [anon_sym_AMP] = ACTIONS(943), + [anon_sym_try] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_CARET] = ACTIONS(943), + [anon_sym_true] = ACTIONS(945), + [anon_sym_false] = ACTIONS(945), + [sym_none] = ACTIONS(945), + [sym_undefined] = ACTIONS(945), + [sym_sink] = ACTIONS(945), + [sym_integer] = ACTIONS(945), + [sym_float] = ACTIONS(943), + [anon_sym_DQUOTE] = ACTIONS(943), + [sym_multiline_string] = ACTIONS(943), + [sym_character] = ACTIONS(943), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(937), + [sym__newline] = ACTIONS(943), }, [STATE(405)] = { - [sym_argument_list] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(941), - [sym_identifier] = ACTIONS(943), - [anon_sym_import] = ACTIONS(943), - [anon_sym_func] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(943), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(941), - [anon_sym_COMMA] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_PIPE] = ACTIONS(941), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_SEMI] = ACTIONS(941), - [anon_sym_RBRACK] = ACTIONS(941), - [anon_sym_void] = ACTIONS(943), - [anon_sym_anyopaque] = ACTIONS(943), - [anon_sym_bool] = ACTIONS(943), - [anon_sym_int] = ACTIONS(943), - [anon_sym_float] = ACTIONS(943), - [anon_sym_range] = ACTIONS(943), - [anon_sym_i8] = ACTIONS(943), - [anon_sym_i16] = ACTIONS(943), - [anon_sym_i32] = ACTIONS(943), - [anon_sym_i64] = ACTIONS(943), - [anon_sym_u8] = ACTIONS(943), - [anon_sym_u16] = ACTIONS(943), - [anon_sym_u32] = ACTIONS(943), - [anon_sym_u64] = ACTIONS(943), - [anon_sym_isize] = ACTIONS(943), - [anon_sym_usize] = ACTIONS(943), - [anon_sym_f32] = ACTIONS(943), - [anon_sym_f64] = ACTIONS(943), - [anon_sym_c_char] = ACTIONS(943), - [anon_sym_c_schar] = ACTIONS(943), - [anon_sym_c_uchar] = ACTIONS(943), - [anon_sym_c_short] = ACTIONS(943), - [anon_sym_c_ushort] = ACTIONS(943), - [anon_sym_c_int] = ACTIONS(943), - [anon_sym_c_uint] = ACTIONS(943), - [anon_sym_c_long] = ACTIONS(943), - [anon_sym_c_ulong] = ACTIONS(943), - [anon_sym_c_longlong] = ACTIONS(943), - [anon_sym_c_ulonglong] = ACTIONS(943), - [anon_sym_c_float] = ACTIONS(943), - [anon_sym_c_double] = ACTIONS(943), - [anon_sym_c_longdouble] = ACTIONS(943), - [anon_sym_PLUS_EQ] = ACTIONS(941), - [anon_sym_DASH_EQ] = ACTIONS(941), - [anon_sym_STAR_EQ] = ACTIONS(941), - [anon_sym_SLASH_EQ] = ACTIONS(941), - [anon_sym_return] = ACTIONS(943), - [anon_sym_yield] = ACTIONS(943), - [anon_sym_COLON] = ACTIONS(941), - [anon_sym_break] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_defer] = ACTIONS(943), - [anon_sym_errdefer] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_else] = ACTIONS(943), - [anon_sym_while] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(941), - [anon_sym_orelse] = ACTIONS(943), - [anon_sym_catch] = ACTIONS(943), - [anon_sym_or] = ACTIONS(943), - [anon_sym_and] = ACTIONS(943), - [anon_sym_EQ_EQ] = ACTIONS(941), - [anon_sym_BANG_EQ] = ACTIONS(941), - [anon_sym_LT] = ACTIONS(943), - [anon_sym_LT_EQ] = ACTIONS(941), - [anon_sym_GT] = ACTIONS(943), - [anon_sym_GT_EQ] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(943), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_try] = ACTIONS(943), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [sym_none] = ACTIONS(943), - [sym_undefined] = ACTIONS(943), - [sym_sink] = ACTIONS(943), - [sym_integer] = ACTIONS(943), - [sym_float] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_multiline_string] = ACTIONS(941), - [sym_character] = ACTIONS(941), + [ts_builtin_sym_end] = ACTIONS(947), + [sym_identifier] = ACTIONS(949), + [anon_sym_COLON_COLON] = ACTIONS(947), + [anon_sym_import] = 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(947), + [anon_sym_QMARK] = ACTIONS(947), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(947), + [anon_sym_RBRACK] = ACTIONS(947), + [anon_sym_void] = ACTIONS(949), + [anon_sym_anyopaque] = ACTIONS(949), + [anon_sym_bool] = ACTIONS(949), + [anon_sym_int] = 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_return] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(949), + [anon_sym_COLON] = 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_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_PLUS] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_AMP] = 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(941), + [sym__newline] = ACTIONS(947), }, [STATE(406)] = { - [ts_builtin_sym_end] = ACTIONS(945), - [sym_identifier] = ACTIONS(947), - [anon_sym_COLON_COLON] = ACTIONS(945), - [anon_sym_import] = ACTIONS(947), - [anon_sym_func] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_EQ] = ACTIONS(947), - [anon_sym_struct] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_RPAREN] = ACTIONS(945), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_QMARK] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_SEMI] = ACTIONS(945), - [anon_sym_RBRACK] = ACTIONS(945), - [anon_sym_void] = ACTIONS(947), - [anon_sym_anyopaque] = ACTIONS(947), - [anon_sym_bool] = ACTIONS(947), - [anon_sym_int] = ACTIONS(947), - [anon_sym_float] = ACTIONS(947), - [anon_sym_range] = ACTIONS(947), - [anon_sym_i8] = ACTIONS(947), - [anon_sym_i16] = ACTIONS(947), - [anon_sym_i32] = ACTIONS(947), - [anon_sym_i64] = ACTIONS(947), - [anon_sym_u8] = ACTIONS(947), - [anon_sym_u16] = ACTIONS(947), - [anon_sym_u32] = ACTIONS(947), - [anon_sym_u64] = ACTIONS(947), - [anon_sym_isize] = ACTIONS(947), - [anon_sym_usize] = ACTIONS(947), - [anon_sym_f32] = ACTIONS(947), - [anon_sym_f64] = ACTIONS(947), - [anon_sym_c_char] = ACTIONS(947), - [anon_sym_c_schar] = ACTIONS(947), - [anon_sym_c_uchar] = ACTIONS(947), - [anon_sym_c_short] = ACTIONS(947), - [anon_sym_c_ushort] = ACTIONS(947), - [anon_sym_c_int] = ACTIONS(947), - [anon_sym_c_uint] = ACTIONS(947), - [anon_sym_c_long] = ACTIONS(947), - [anon_sym_c_ulong] = ACTIONS(947), - [anon_sym_c_longlong] = ACTIONS(947), - [anon_sym_c_ulonglong] = ACTIONS(947), - [anon_sym_c_float] = ACTIONS(947), - [anon_sym_c_double] = ACTIONS(947), - [anon_sym_c_longdouble] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(945), - [anon_sym_DASH_EQ] = ACTIONS(945), - [anon_sym_STAR_EQ] = ACTIONS(945), - [anon_sym_SLASH_EQ] = ACTIONS(945), - [anon_sym_return] = ACTIONS(947), - [anon_sym_yield] = ACTIONS(947), - [anon_sym_COLON] = ACTIONS(947), - [anon_sym_break] = ACTIONS(947), - [anon_sym_continue] = ACTIONS(947), - [anon_sym_defer] = ACTIONS(947), - [anon_sym_errdefer] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_else] = ACTIONS(947), - [anon_sym_while] = ACTIONS(947), - [anon_sym_for] = ACTIONS(947), - [anon_sym_match] = ACTIONS(947), - [anon_sym_DOT_DOT] = ACTIONS(947), - [anon_sym_DOT_DOT_EQ] = ACTIONS(945), - [anon_sym_orelse] = ACTIONS(947), - [anon_sym_catch] = ACTIONS(947), - [anon_sym_or] = ACTIONS(947), - [anon_sym_and] = ACTIONS(947), - [anon_sym_EQ_EQ] = ACTIONS(945), - [anon_sym_BANG_EQ] = ACTIONS(945), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(945), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_EQ] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_AMP] = ACTIONS(945), - [anon_sym_try] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(947), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_true] = ACTIONS(947), - [anon_sym_false] = ACTIONS(947), - [sym_none] = ACTIONS(947), - [sym_undefined] = ACTIONS(947), - [sym_sink] = ACTIONS(947), - [sym_integer] = ACTIONS(947), - [sym_float] = ACTIONS(945), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym_multiline_string] = ACTIONS(945), - [sym_character] = ACTIONS(945), + [ts_builtin_sym_end] = ACTIONS(951), + [sym_identifier] = ACTIONS(953), + [anon_sym_COLON_COLON] = ACTIONS(951), + [anon_sym_import] = ACTIONS(953), + [anon_sym_func] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(955), + [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(951), + [anon_sym_QMARK] = ACTIONS(951), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_RBRACK] = ACTIONS(951), + [anon_sym_void] = ACTIONS(953), + [anon_sym_anyopaque] = ACTIONS(953), + [anon_sym_bool] = ACTIONS(953), + [anon_sym_int] = 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_return] = ACTIONS(953), + [anon_sym_yield] = ACTIONS(953), + [anon_sym_COLON] = 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_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_PLUS] = ACTIONS(953), + [anon_sym_SLASH] = ACTIONS(953), + [anon_sym_AMP] = 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(945), + [sym__newline] = ACTIONS(951), }, [STATE(407)] = { - [ts_builtin_sym_end] = ACTIONS(949), - [sym_identifier] = ACTIONS(951), - [anon_sym_COLON_COLON] = ACTIONS(949), - [anon_sym_import] = ACTIONS(951), - [anon_sym_func] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(951), - [anon_sym_EQ] = ACTIONS(951), - [anon_sym_struct] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(949), - [anon_sym_RPAREN] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_COMMA] = ACTIONS(949), - [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(949), - [anon_sym_PIPE] = ACTIONS(949), - [anon_sym_QMARK] = ACTIONS(949), - [anon_sym_STAR] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(949), - [anon_sym_SEMI] = ACTIONS(949), - [anon_sym_RBRACK] = ACTIONS(949), - [anon_sym_void] = ACTIONS(951), - [anon_sym_anyopaque] = ACTIONS(951), - [anon_sym_bool] = ACTIONS(951), - [anon_sym_int] = ACTIONS(951), - [anon_sym_float] = ACTIONS(951), - [anon_sym_range] = ACTIONS(951), - [anon_sym_i8] = ACTIONS(951), - [anon_sym_i16] = ACTIONS(951), - [anon_sym_i32] = ACTIONS(951), - [anon_sym_i64] = ACTIONS(951), - [anon_sym_u8] = ACTIONS(951), - [anon_sym_u16] = ACTIONS(951), - [anon_sym_u32] = ACTIONS(951), - [anon_sym_u64] = ACTIONS(951), - [anon_sym_isize] = ACTIONS(951), - [anon_sym_usize] = ACTIONS(951), - [anon_sym_f32] = ACTIONS(951), - [anon_sym_f64] = ACTIONS(951), - [anon_sym_c_char] = ACTIONS(951), - [anon_sym_c_schar] = ACTIONS(951), - [anon_sym_c_uchar] = ACTIONS(951), - [anon_sym_c_short] = ACTIONS(951), - [anon_sym_c_ushort] = ACTIONS(951), - [anon_sym_c_int] = ACTIONS(951), - [anon_sym_c_uint] = ACTIONS(951), - [anon_sym_c_long] = ACTIONS(951), - [anon_sym_c_ulong] = ACTIONS(951), - [anon_sym_c_longlong] = ACTIONS(951), - [anon_sym_c_ulonglong] = ACTIONS(951), - [anon_sym_c_float] = ACTIONS(951), - [anon_sym_c_double] = ACTIONS(951), - [anon_sym_c_longdouble] = ACTIONS(951), - [anon_sym_PLUS_EQ] = ACTIONS(949), - [anon_sym_DASH_EQ] = ACTIONS(949), - [anon_sym_STAR_EQ] = ACTIONS(949), - [anon_sym_SLASH_EQ] = ACTIONS(949), - [anon_sym_return] = ACTIONS(951), - [anon_sym_yield] = ACTIONS(951), - [anon_sym_COLON] = ACTIONS(951), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_defer] = ACTIONS(951), - [anon_sym_errdefer] = ACTIONS(951), - [anon_sym_if] = ACTIONS(951), - [anon_sym_else] = ACTIONS(951), - [anon_sym_while] = ACTIONS(951), - [anon_sym_for] = ACTIONS(951), - [anon_sym_match] = ACTIONS(951), - [anon_sym_DOT_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(949), - [anon_sym_orelse] = ACTIONS(951), - [anon_sym_catch] = ACTIONS(951), - [anon_sym_or] = ACTIONS(951), - [anon_sym_and] = ACTIONS(951), - [anon_sym_EQ_EQ] = ACTIONS(949), - [anon_sym_BANG_EQ] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(951), - [anon_sym_LT_EQ] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_SLASH] = ACTIONS(951), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_try] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(951), - [anon_sym_CARET] = ACTIONS(949), - [anon_sym_true] = ACTIONS(951), - [anon_sym_false] = ACTIONS(951), - [sym_none] = ACTIONS(951), - [sym_undefined] = ACTIONS(951), - [sym_sink] = ACTIONS(951), - [sym_integer] = ACTIONS(951), - [sym_float] = ACTIONS(949), - [anon_sym_DQUOTE] = ACTIONS(949), - [sym_multiline_string] = ACTIONS(949), - [sym_character] = ACTIONS(949), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(949), - }, - [STATE(408)] = { - [ts_builtin_sym_end] = ACTIONS(953), - [sym_identifier] = ACTIONS(955), - [anon_sym_COLON_COLON] = ACTIONS(953), - [anon_sym_import] = ACTIONS(955), - [anon_sym_func] = ACTIONS(955), - [anon_sym_BANG] = ACTIONS(955), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_struct] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(953), - [anon_sym_PIPE] = ACTIONS(953), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_STAR] = ACTIONS(955), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_RBRACK] = ACTIONS(953), - [anon_sym_void] = ACTIONS(955), - [anon_sym_anyopaque] = ACTIONS(955), - [anon_sym_bool] = ACTIONS(955), - [anon_sym_int] = ACTIONS(955), - [anon_sym_float] = ACTIONS(955), - [anon_sym_range] = ACTIONS(955), - [anon_sym_i8] = ACTIONS(955), - [anon_sym_i16] = ACTIONS(955), - [anon_sym_i32] = ACTIONS(955), - [anon_sym_i64] = ACTIONS(955), - [anon_sym_u8] = ACTIONS(955), - [anon_sym_u16] = ACTIONS(955), - [anon_sym_u32] = ACTIONS(955), - [anon_sym_u64] = ACTIONS(955), - [anon_sym_isize] = ACTIONS(955), - [anon_sym_usize] = ACTIONS(955), - [anon_sym_f32] = ACTIONS(955), - [anon_sym_f64] = ACTIONS(955), - [anon_sym_c_char] = ACTIONS(955), - [anon_sym_c_schar] = ACTIONS(955), - [anon_sym_c_uchar] = ACTIONS(955), - [anon_sym_c_short] = ACTIONS(955), - [anon_sym_c_ushort] = ACTIONS(955), - [anon_sym_c_int] = ACTIONS(955), - [anon_sym_c_uint] = ACTIONS(955), - [anon_sym_c_long] = ACTIONS(955), - [anon_sym_c_ulong] = ACTIONS(955), - [anon_sym_c_longlong] = ACTIONS(955), - [anon_sym_c_ulonglong] = ACTIONS(955), - [anon_sym_c_float] = ACTIONS(955), - [anon_sym_c_double] = ACTIONS(955), - [anon_sym_c_longdouble] = ACTIONS(955), - [anon_sym_PLUS_EQ] = ACTIONS(953), - [anon_sym_DASH_EQ] = ACTIONS(953), - [anon_sym_STAR_EQ] = ACTIONS(953), - [anon_sym_SLASH_EQ] = ACTIONS(953), - [anon_sym_return] = ACTIONS(955), - [anon_sym_yield] = ACTIONS(955), - [anon_sym_COLON] = ACTIONS(955), - [anon_sym_break] = ACTIONS(955), - [anon_sym_continue] = ACTIONS(955), - [anon_sym_defer] = ACTIONS(955), - [anon_sym_errdefer] = ACTIONS(955), - [anon_sym_if] = ACTIONS(955), - [anon_sym_else] = ACTIONS(955), - [anon_sym_while] = ACTIONS(955), - [anon_sym_for] = ACTIONS(955), - [anon_sym_match] = ACTIONS(955), - [anon_sym_DOT_DOT] = ACTIONS(955), - [anon_sym_DOT_DOT_EQ] = ACTIONS(953), - [anon_sym_orelse] = ACTIONS(955), - [anon_sym_catch] = ACTIONS(955), - [anon_sym_or] = ACTIONS(955), - [anon_sym_and] = ACTIONS(955), - [anon_sym_EQ_EQ] = ACTIONS(953), - [anon_sym_BANG_EQ] = ACTIONS(953), - [anon_sym_LT] = ACTIONS(955), - [anon_sym_LT_EQ] = ACTIONS(953), - [anon_sym_GT] = ACTIONS(955), - [anon_sym_GT_EQ] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(953), - [anon_sym_try] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(955), - [anon_sym_CARET] = ACTIONS(953), - [anon_sym_true] = ACTIONS(955), - [anon_sym_false] = ACTIONS(955), - [sym_none] = ACTIONS(955), - [sym_undefined] = ACTIONS(955), - [sym_sink] = ACTIONS(955), - [sym_integer] = ACTIONS(955), - [sym_float] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(953), - [sym_multiline_string] = ACTIONS(953), - [sym_character] = ACTIONS(953), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(953), - }, - [STATE(409)] = { [ts_builtin_sym_end] = ACTIONS(957), [sym_identifier] = ACTIONS(959), [anon_sym_COLON_COLON] = ACTIONS(957), @@ -52974,7 +53163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(957), }, - [STATE(410)] = { + [STATE(408)] = { [ts_builtin_sym_end] = ACTIONS(961), [sym_identifier] = ACTIONS(963), [anon_sym_COLON_COLON] = ACTIONS(961), @@ -53075,7 +53264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(961), }, - [STATE(411)] = { + [STATE(409)] = { [ts_builtin_sym_end] = ACTIONS(965), [sym_identifier] = ACTIONS(967), [anon_sym_COLON_COLON] = ACTIONS(965), @@ -53176,7 +53365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(965), }, - [STATE(412)] = { + [STATE(410)] = { [ts_builtin_sym_end] = ACTIONS(969), [sym_identifier] = ACTIONS(971), [anon_sym_COLON_COLON] = ACTIONS(969), @@ -53277,7 +53466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(969), }, - [STATE(413)] = { + [STATE(411)] = { [ts_builtin_sym_end] = ACTIONS(973), [sym_identifier] = ACTIONS(975), [anon_sym_COLON_COLON] = ACTIONS(973), @@ -53378,7 +53567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(973), }, - [STATE(414)] = { + [STATE(412)] = { [ts_builtin_sym_end] = ACTIONS(977), [sym_identifier] = ACTIONS(979), [anon_sym_COLON_COLON] = ACTIONS(977), @@ -53464,7 +53653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(979), [anon_sym_AMP] = ACTIONS(977), [anon_sym_try] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), + [anon_sym_DOT] = ACTIONS(981), [anon_sym_CARET] = ACTIONS(977), [anon_sym_true] = ACTIONS(979), [anon_sym_false] = ACTIONS(979), @@ -53479,512 +53668,411 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(977), }, - [STATE(415)] = { - [sym_argument_list] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(981), - [sym_identifier] = ACTIONS(983), - [anon_sym_import] = ACTIONS(983), - [anon_sym_func] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_EQ] = ACTIONS(983), - [anon_sym_struct] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(981), - [anon_sym_LBRACE] = ACTIONS(981), - [anon_sym_COMMA] = ACTIONS(981), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOLLAR] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(981), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_RBRACK] = ACTIONS(981), - [anon_sym_void] = ACTIONS(983), - [anon_sym_anyopaque] = ACTIONS(983), - [anon_sym_bool] = ACTIONS(983), - [anon_sym_int] = ACTIONS(983), - [anon_sym_float] = ACTIONS(983), - [anon_sym_range] = ACTIONS(983), - [anon_sym_i8] = ACTIONS(983), - [anon_sym_i16] = ACTIONS(983), - [anon_sym_i32] = ACTIONS(983), - [anon_sym_i64] = ACTIONS(983), - [anon_sym_u8] = ACTIONS(983), - [anon_sym_u16] = ACTIONS(983), - [anon_sym_u32] = ACTIONS(983), - [anon_sym_u64] = ACTIONS(983), - [anon_sym_isize] = ACTIONS(983), - [anon_sym_usize] = ACTIONS(983), - [anon_sym_f32] = ACTIONS(983), - [anon_sym_f64] = ACTIONS(983), - [anon_sym_c_char] = ACTIONS(983), - [anon_sym_c_schar] = ACTIONS(983), - [anon_sym_c_uchar] = ACTIONS(983), - [anon_sym_c_short] = ACTIONS(983), - [anon_sym_c_ushort] = ACTIONS(983), - [anon_sym_c_int] = ACTIONS(983), - [anon_sym_c_uint] = ACTIONS(983), - [anon_sym_c_long] = ACTIONS(983), - [anon_sym_c_ulong] = ACTIONS(983), - [anon_sym_c_longlong] = ACTIONS(983), - [anon_sym_c_ulonglong] = ACTIONS(983), - [anon_sym_c_float] = ACTIONS(983), - [anon_sym_c_double] = ACTIONS(983), - [anon_sym_c_longdouble] = ACTIONS(983), - [anon_sym_PLUS_EQ] = ACTIONS(981), - [anon_sym_DASH_EQ] = ACTIONS(981), - [anon_sym_STAR_EQ] = ACTIONS(981), - [anon_sym_SLASH_EQ] = ACTIONS(981), - [anon_sym_return] = ACTIONS(983), - [anon_sym_yield] = ACTIONS(983), - [anon_sym_COLON] = ACTIONS(981), - [anon_sym_break] = ACTIONS(983), - [anon_sym_continue] = ACTIONS(983), - [anon_sym_defer] = ACTIONS(983), - [anon_sym_errdefer] = ACTIONS(983), - [anon_sym_if] = ACTIONS(983), - [anon_sym_else] = ACTIONS(983), - [anon_sym_while] = ACTIONS(983), - [anon_sym_for] = ACTIONS(983), - [anon_sym_match] = ACTIONS(983), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(981), - [anon_sym_orelse] = ACTIONS(983), - [anon_sym_catch] = ACTIONS(983), - [anon_sym_or] = ACTIONS(983), - [anon_sym_and] = ACTIONS(983), - [anon_sym_EQ_EQ] = ACTIONS(981), - [anon_sym_BANG_EQ] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_LT_EQ] = ACTIONS(981), - [anon_sym_GT] = ACTIONS(983), - [anon_sym_GT_EQ] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_try] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(983), - [anon_sym_false] = ACTIONS(983), - [sym_none] = ACTIONS(983), - [sym_undefined] = ACTIONS(983), - [sym_sink] = ACTIONS(983), - [sym_integer] = ACTIONS(983), - [sym_float] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(981), - [sym_multiline_string] = ACTIONS(981), - [sym_character] = ACTIONS(981), + [STATE(413)] = { + [ts_builtin_sym_end] = ACTIONS(983), + [sym_identifier] = ACTIONS(985), + [anon_sym_COLON_COLON] = ACTIONS(983), + [anon_sym_import] = 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(983), + [anon_sym_QMARK] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_RBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(985), + [anon_sym_anyopaque] = ACTIONS(985), + [anon_sym_bool] = ACTIONS(985), + [anon_sym_int] = 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_return] = ACTIONS(985), + [anon_sym_yield] = ACTIONS(985), + [anon_sym_COLON] = 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_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_PLUS] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_AMP] = 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(981), + [sym__newline] = ACTIONS(983), + }, + [STATE(414)] = { + [ts_builtin_sym_end] = ACTIONS(987), + [sym_identifier] = ACTIONS(989), + [anon_sym_COLON_COLON] = ACTIONS(987), + [anon_sym_import] = ACTIONS(989), + [anon_sym_func] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_EQ] = ACTIONS(989), + [anon_sym_struct] = ACTIONS(989), + [anon_sym_LPAREN] = ACTIONS(987), + [anon_sym_RPAREN] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_COMMA] = ACTIONS(987), + [anon_sym_RBRACE] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_DOLLAR] = ACTIONS(987), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_LBRACK] = ACTIONS(987), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_RBRACK] = ACTIONS(987), + [anon_sym_void] = ACTIONS(989), + [anon_sym_anyopaque] = ACTIONS(989), + [anon_sym_bool] = ACTIONS(989), + [anon_sym_int] = ACTIONS(989), + [anon_sym_float] = ACTIONS(989), + [anon_sym_range] = ACTIONS(989), + [anon_sym_i8] = ACTIONS(989), + [anon_sym_i16] = ACTIONS(989), + [anon_sym_i32] = ACTIONS(989), + [anon_sym_i64] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(989), + [anon_sym_u16] = ACTIONS(989), + [anon_sym_u32] = ACTIONS(989), + [anon_sym_u64] = ACTIONS(989), + [anon_sym_isize] = ACTIONS(989), + [anon_sym_usize] = ACTIONS(989), + [anon_sym_f32] = ACTIONS(989), + [anon_sym_f64] = ACTIONS(989), + [anon_sym_c_char] = ACTIONS(989), + [anon_sym_c_schar] = ACTIONS(989), + [anon_sym_c_uchar] = ACTIONS(989), + [anon_sym_c_short] = ACTIONS(989), + [anon_sym_c_ushort] = ACTIONS(989), + [anon_sym_c_int] = ACTIONS(989), + [anon_sym_c_uint] = ACTIONS(989), + [anon_sym_c_long] = ACTIONS(989), + [anon_sym_c_ulong] = ACTIONS(989), + [anon_sym_c_longlong] = ACTIONS(989), + [anon_sym_c_ulonglong] = ACTIONS(989), + [anon_sym_c_float] = ACTIONS(989), + [anon_sym_c_double] = ACTIONS(989), + [anon_sym_c_longdouble] = ACTIONS(989), + [anon_sym_PLUS_EQ] = ACTIONS(987), + [anon_sym_DASH_EQ] = ACTIONS(987), + [anon_sym_STAR_EQ] = ACTIONS(987), + [anon_sym_SLASH_EQ] = ACTIONS(987), + [anon_sym_return] = ACTIONS(989), + [anon_sym_yield] = ACTIONS(989), + [anon_sym_COLON] = ACTIONS(989), + [anon_sym_break] = ACTIONS(989), + [anon_sym_continue] = ACTIONS(989), + [anon_sym_defer] = ACTIONS(989), + [anon_sym_errdefer] = ACTIONS(989), + [anon_sym_if] = ACTIONS(989), + [anon_sym_else] = ACTIONS(989), + [anon_sym_while] = ACTIONS(989), + [anon_sym_for] = ACTIONS(989), + [anon_sym_match] = ACTIONS(989), + [anon_sym_DOT_DOT] = ACTIONS(989), + [anon_sym_DOT_DOT_EQ] = ACTIONS(987), + [anon_sym_orelse] = ACTIONS(989), + [anon_sym_catch] = ACTIONS(989), + [anon_sym_or] = ACTIONS(989), + [anon_sym_and] = ACTIONS(989), + [anon_sym_EQ_EQ] = ACTIONS(987), + [anon_sym_BANG_EQ] = ACTIONS(987), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_LT_EQ] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(989), + [anon_sym_GT_EQ] = ACTIONS(987), + [anon_sym_PLUS] = ACTIONS(989), + [anon_sym_SLASH] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_try] = ACTIONS(989), + [anon_sym_DOT] = ACTIONS(989), + [anon_sym_CARET] = ACTIONS(987), + [anon_sym_true] = ACTIONS(989), + [anon_sym_false] = ACTIONS(989), + [sym_none] = ACTIONS(989), + [sym_undefined] = ACTIONS(989), + [sym_sink] = ACTIONS(989), + [sym_integer] = ACTIONS(989), + [sym_float] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(987), + [sym_multiline_string] = ACTIONS(987), + [sym_character] = ACTIONS(987), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(987), + }, + [STATE(415)] = { + [sym_argument_list] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(991), + [sym_identifier] = ACTIONS(993), + [anon_sym_import] = ACTIONS(993), + [anon_sym_func] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RPAREN] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_RBRACK] = ACTIONS(991), + [anon_sym_void] = ACTIONS(993), + [anon_sym_anyopaque] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_int] = ACTIONS(993), + [anon_sym_float] = ACTIONS(993), + [anon_sym_range] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_c_char] = ACTIONS(993), + [anon_sym_c_schar] = ACTIONS(993), + [anon_sym_c_uchar] = ACTIONS(993), + [anon_sym_c_short] = ACTIONS(993), + [anon_sym_c_ushort] = ACTIONS(993), + [anon_sym_c_int] = ACTIONS(993), + [anon_sym_c_uint] = ACTIONS(993), + [anon_sym_c_long] = ACTIONS(993), + [anon_sym_c_ulong] = ACTIONS(993), + [anon_sym_c_longlong] = ACTIONS(993), + [anon_sym_c_ulonglong] = ACTIONS(993), + [anon_sym_c_float] = ACTIONS(993), + [anon_sym_c_double] = ACTIONS(993), + [anon_sym_c_longdouble] = ACTIONS(993), + [anon_sym_PLUS_EQ] = ACTIONS(991), + [anon_sym_DASH_EQ] = ACTIONS(991), + [anon_sym_STAR_EQ] = ACTIONS(991), + [anon_sym_SLASH_EQ] = ACTIONS(991), + [anon_sym_return] = ACTIONS(993), + [anon_sym_yield] = ACTIONS(993), + [anon_sym_COLON] = ACTIONS(991), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_defer] = ACTIONS(993), + [anon_sym_errdefer] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_match] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(991), + [anon_sym_orelse] = ACTIONS(993), + [anon_sym_catch] = ACTIONS(993), + [anon_sym_or] = ACTIONS(993), + [anon_sym_and] = ACTIONS(993), + [anon_sym_EQ_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_LT_EQ] = ACTIONS(991), + [anon_sym_GT] = ACTIONS(993), + [anon_sym_GT_EQ] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_try] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [sym_none] = ACTIONS(993), + [sym_undefined] = ACTIONS(993), + [sym_sink] = ACTIONS(993), + [sym_integer] = ACTIONS(993), + [sym_float] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [sym_multiline_string] = ACTIONS(991), + [sym_character] = ACTIONS(991), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(991), }, [STATE(416)] = { - [ts_builtin_sym_end] = ACTIONS(985), - [sym_identifier] = ACTIONS(987), - [anon_sym_COLON_COLON] = ACTIONS(985), - [anon_sym_import] = ACTIONS(987), - [anon_sym_func] = ACTIONS(987), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_EQ] = ACTIONS(987), - [anon_sym_struct] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_RBRACE] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_RBRACK] = ACTIONS(985), - [anon_sym_void] = ACTIONS(987), - [anon_sym_anyopaque] = ACTIONS(987), - [anon_sym_bool] = ACTIONS(987), - [anon_sym_int] = ACTIONS(987), - [anon_sym_float] = ACTIONS(987), - [anon_sym_range] = ACTIONS(987), - [anon_sym_i8] = ACTIONS(987), - [anon_sym_i16] = ACTIONS(987), - [anon_sym_i32] = ACTIONS(987), - [anon_sym_i64] = ACTIONS(987), - [anon_sym_u8] = ACTIONS(987), - [anon_sym_u16] = ACTIONS(987), - [anon_sym_u32] = ACTIONS(987), - [anon_sym_u64] = ACTIONS(987), - [anon_sym_isize] = ACTIONS(987), - [anon_sym_usize] = ACTIONS(987), - [anon_sym_f32] = ACTIONS(987), - [anon_sym_f64] = ACTIONS(987), - [anon_sym_c_char] = ACTIONS(987), - [anon_sym_c_schar] = ACTIONS(987), - [anon_sym_c_uchar] = ACTIONS(987), - [anon_sym_c_short] = ACTIONS(987), - [anon_sym_c_ushort] = ACTIONS(987), - [anon_sym_c_int] = ACTIONS(987), - [anon_sym_c_uint] = ACTIONS(987), - [anon_sym_c_long] = ACTIONS(987), - [anon_sym_c_ulong] = ACTIONS(987), - [anon_sym_c_longlong] = ACTIONS(987), - [anon_sym_c_ulonglong] = ACTIONS(987), - [anon_sym_c_float] = ACTIONS(987), - [anon_sym_c_double] = ACTIONS(987), - [anon_sym_c_longdouble] = ACTIONS(987), - [anon_sym_PLUS_EQ] = ACTIONS(985), - [anon_sym_DASH_EQ] = ACTIONS(985), - [anon_sym_STAR_EQ] = ACTIONS(985), - [anon_sym_SLASH_EQ] = ACTIONS(985), - [anon_sym_return] = ACTIONS(987), - [anon_sym_yield] = ACTIONS(987), - [anon_sym_COLON] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_defer] = ACTIONS(987), - [anon_sym_errdefer] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_else] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(985), - [anon_sym_orelse] = ACTIONS(987), - [anon_sym_catch] = ACTIONS(987), - [anon_sym_or] = ACTIONS(987), - [anon_sym_and] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(985), - [anon_sym_BANG_EQ] = ACTIONS(985), - [anon_sym_LT] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(985), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(985), - [anon_sym_try] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(985), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [sym_none] = ACTIONS(987), - [sym_undefined] = ACTIONS(987), - [sym_sink] = ACTIONS(987), - [sym_integer] = ACTIONS(987), - [sym_float] = ACTIONS(985), - [anon_sym_DQUOTE] = ACTIONS(985), - [sym_multiline_string] = ACTIONS(985), - [sym_character] = ACTIONS(985), + [ts_builtin_sym_end] = ACTIONS(995), + [sym_identifier] = ACTIONS(997), + [anon_sym_COLON_COLON] = ACTIONS(995), + [anon_sym_import] = ACTIONS(997), + [anon_sym_func] = ACTIONS(997), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_EQ] = ACTIONS(997), + [anon_sym_struct] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_RPAREN] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_COMMA] = ACTIONS(995), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(995), + [anon_sym_QMARK] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(995), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_RBRACK] = ACTIONS(995), + [anon_sym_void] = ACTIONS(997), + [anon_sym_anyopaque] = ACTIONS(997), + [anon_sym_bool] = ACTIONS(997), + [anon_sym_int] = ACTIONS(997), + [anon_sym_float] = ACTIONS(997), + [anon_sym_range] = ACTIONS(997), + [anon_sym_i8] = ACTIONS(997), + [anon_sym_i16] = ACTIONS(997), + [anon_sym_i32] = ACTIONS(997), + [anon_sym_i64] = ACTIONS(997), + [anon_sym_u8] = ACTIONS(997), + [anon_sym_u16] = ACTIONS(997), + [anon_sym_u32] = ACTIONS(997), + [anon_sym_u64] = ACTIONS(997), + [anon_sym_isize] = ACTIONS(997), + [anon_sym_usize] = ACTIONS(997), + [anon_sym_f32] = ACTIONS(997), + [anon_sym_f64] = ACTIONS(997), + [anon_sym_c_char] = ACTIONS(997), + [anon_sym_c_schar] = ACTIONS(997), + [anon_sym_c_uchar] = ACTIONS(997), + [anon_sym_c_short] = ACTIONS(997), + [anon_sym_c_ushort] = ACTIONS(997), + [anon_sym_c_int] = ACTIONS(997), + [anon_sym_c_uint] = ACTIONS(997), + [anon_sym_c_long] = ACTIONS(997), + [anon_sym_c_ulong] = ACTIONS(997), + [anon_sym_c_longlong] = ACTIONS(997), + [anon_sym_c_ulonglong] = ACTIONS(997), + [anon_sym_c_float] = ACTIONS(997), + [anon_sym_c_double] = ACTIONS(997), + [anon_sym_c_longdouble] = ACTIONS(997), + [anon_sym_PLUS_EQ] = ACTIONS(995), + [anon_sym_DASH_EQ] = ACTIONS(995), + [anon_sym_STAR_EQ] = ACTIONS(995), + [anon_sym_SLASH_EQ] = ACTIONS(995), + [anon_sym_return] = ACTIONS(997), + [anon_sym_yield] = ACTIONS(997), + [anon_sym_COLON] = ACTIONS(997), + [anon_sym_break] = ACTIONS(997), + [anon_sym_continue] = ACTIONS(997), + [anon_sym_defer] = ACTIONS(997), + [anon_sym_errdefer] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_else] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_for] = ACTIONS(997), + [anon_sym_match] = ACTIONS(997), + [anon_sym_DOT_DOT] = ACTIONS(997), + [anon_sym_DOT_DOT_EQ] = ACTIONS(995), + [anon_sym_orelse] = ACTIONS(997), + [anon_sym_catch] = ACTIONS(997), + [anon_sym_or] = ACTIONS(997), + [anon_sym_and] = ACTIONS(997), + [anon_sym_EQ_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_SLASH] = ACTIONS(997), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_try] = ACTIONS(997), + [anon_sym_DOT] = ACTIONS(997), + [anon_sym_CARET] = ACTIONS(995), + [anon_sym_true] = ACTIONS(997), + [anon_sym_false] = ACTIONS(997), + [sym_none] = ACTIONS(997), + [sym_undefined] = ACTIONS(997), + [sym_sink] = ACTIONS(997), + [sym_integer] = ACTIONS(997), + [sym_float] = ACTIONS(995), + [anon_sym_DQUOTE] = ACTIONS(995), + [sym_multiline_string] = ACTIONS(995), + [sym_character] = ACTIONS(995), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(985), + [sym__newline] = ACTIONS(995), }, [STATE(417)] = { - [ts_builtin_sym_end] = ACTIONS(989), - [sym_identifier] = ACTIONS(991), - [anon_sym_COLON_COLON] = ACTIONS(989), - [anon_sym_import] = 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(989), - [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_STAR] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(989), - [anon_sym_RBRACK] = ACTIONS(989), - [anon_sym_void] = ACTIONS(991), - [anon_sym_anyopaque] = ACTIONS(991), - [anon_sym_bool] = ACTIONS(991), - [anon_sym_int] = 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_return] = ACTIONS(991), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_COLON] = 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_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_PLUS] = ACTIONS(991), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_AMP] = 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(418)] = { - [ts_builtin_sym_end] = ACTIONS(993), - [sym_identifier] = ACTIONS(995), - [anon_sym_COLON_COLON] = ACTIONS(993), - [anon_sym_import] = 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(993), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_RBRACK] = ACTIONS(993), - [anon_sym_void] = ACTIONS(995), - [anon_sym_anyopaque] = ACTIONS(995), - [anon_sym_bool] = ACTIONS(995), - [anon_sym_int] = 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_return] = ACTIONS(995), - [anon_sym_yield] = ACTIONS(995), - [anon_sym_COLON] = 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_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_PLUS] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_AMP] = 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(419)] = { - [ts_builtin_sym_end] = ACTIONS(997), - [sym_identifier] = ACTIONS(999), - [anon_sym_COLON_COLON] = ACTIONS(997), - [anon_sym_import] = 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(997), - [anon_sym_QMARK] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(997), - [anon_sym_RBRACK] = ACTIONS(997), - [anon_sym_void] = ACTIONS(999), - [anon_sym_anyopaque] = ACTIONS(999), - [anon_sym_bool] = ACTIONS(999), - [anon_sym_int] = 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_return] = ACTIONS(999), - [anon_sym_yield] = ACTIONS(999), - [anon_sym_COLON] = 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_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_PLUS] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_AMP] = 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(420)] = { [ts_builtin_sym_end] = ACTIONS(1001), [sym_identifier] = ACTIONS(1003), [anon_sym_COLON_COLON] = ACTIONS(1001), @@ -54085,7 +54173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1001), }, - [STATE(421)] = { + [STATE(418)] = { [ts_builtin_sym_end] = ACTIONS(1005), [sym_identifier] = ACTIONS(1007), [anon_sym_COLON_COLON] = ACTIONS(1005), @@ -54186,7 +54274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1005), }, - [STATE(422)] = { + [STATE(419)] = { [ts_builtin_sym_end] = ACTIONS(1009), [sym_identifier] = ACTIONS(1011), [anon_sym_COLON_COLON] = ACTIONS(1009), @@ -54287,7 +54375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1009), }, - [STATE(423)] = { + [STATE(420)] = { [ts_builtin_sym_end] = ACTIONS(1013), [sym_identifier] = ACTIONS(1015), [anon_sym_COLON_COLON] = ACTIONS(1013), @@ -54388,13 +54476,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1013), }, - [STATE(424)] = { + [STATE(421)] = { [ts_builtin_sym_end] = ACTIONS(1017), [sym_identifier] = ACTIONS(1019), [anon_sym_COLON_COLON] = ACTIONS(1017), [anon_sym_import] = ACTIONS(1019), [anon_sym_func] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1019), [anon_sym_EQ] = ACTIONS(1019), [anon_sym_struct] = ACTIONS(1019), [anon_sym_LPAREN] = ACTIONS(1017), @@ -54489,1219 +54577,1320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1017), }, - [STATE(425)] = { - [ts_builtin_sym_end] = ACTIONS(1023), - [sym_identifier] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(1023), - [anon_sym_import] = ACTIONS(1025), - [anon_sym_func] = ACTIONS(1025), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(1025), - [anon_sym_struct] = ACTIONS(1025), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(1023), - [anon_sym_LBRACE] = ACTIONS(1023), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_DASH] = ACTIONS(1025), - [anon_sym_DOLLAR] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_QMARK] = ACTIONS(1023), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_RBRACK] = ACTIONS(1023), - [anon_sym_void] = ACTIONS(1025), - [anon_sym_anyopaque] = ACTIONS(1025), - [anon_sym_bool] = ACTIONS(1025), - [anon_sym_int] = ACTIONS(1025), - [anon_sym_float] = ACTIONS(1025), - [anon_sym_range] = ACTIONS(1025), - [anon_sym_i8] = ACTIONS(1025), - [anon_sym_i16] = ACTIONS(1025), - [anon_sym_i32] = ACTIONS(1025), - [anon_sym_i64] = ACTIONS(1025), - [anon_sym_u8] = ACTIONS(1025), - [anon_sym_u16] = ACTIONS(1025), - [anon_sym_u32] = ACTIONS(1025), - [anon_sym_u64] = ACTIONS(1025), - [anon_sym_isize] = ACTIONS(1025), - [anon_sym_usize] = ACTIONS(1025), - [anon_sym_f32] = ACTIONS(1025), - [anon_sym_f64] = ACTIONS(1025), - [anon_sym_c_char] = ACTIONS(1025), - [anon_sym_c_schar] = ACTIONS(1025), - [anon_sym_c_uchar] = ACTIONS(1025), - [anon_sym_c_short] = ACTIONS(1025), - [anon_sym_c_ushort] = ACTIONS(1025), - [anon_sym_c_int] = ACTIONS(1025), - [anon_sym_c_uint] = ACTIONS(1025), - [anon_sym_c_long] = ACTIONS(1025), - [anon_sym_c_ulong] = ACTIONS(1025), - [anon_sym_c_longlong] = ACTIONS(1025), - [anon_sym_c_ulonglong] = ACTIONS(1025), - [anon_sym_c_float] = ACTIONS(1025), - [anon_sym_c_double] = ACTIONS(1025), - [anon_sym_c_longdouble] = ACTIONS(1025), - [anon_sym_PLUS_EQ] = ACTIONS(1023), - [anon_sym_DASH_EQ] = ACTIONS(1023), - [anon_sym_STAR_EQ] = ACTIONS(1023), - [anon_sym_SLASH_EQ] = ACTIONS(1023), - [anon_sym_return] = ACTIONS(1025), - [anon_sym_yield] = ACTIONS(1025), - [anon_sym_COLON] = ACTIONS(1025), - [anon_sym_break] = ACTIONS(1025), - [anon_sym_continue] = ACTIONS(1025), - [anon_sym_defer] = ACTIONS(1025), - [anon_sym_errdefer] = ACTIONS(1025), - [anon_sym_if] = ACTIONS(1025), - [anon_sym_else] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_match] = ACTIONS(1025), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1023), - [anon_sym_orelse] = ACTIONS(1025), - [anon_sym_catch] = ACTIONS(1025), - [anon_sym_or] = ACTIONS(1025), - [anon_sym_and] = ACTIONS(1025), - [anon_sym_EQ_EQ] = ACTIONS(1023), - [anon_sym_BANG_EQ] = ACTIONS(1023), - [anon_sym_LT] = ACTIONS(1025), - [anon_sym_LT_EQ] = ACTIONS(1023), - [anon_sym_GT] = ACTIONS(1025), - [anon_sym_GT_EQ] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1025), - [anon_sym_SLASH] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_try] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1025), - [anon_sym_CARET] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [sym_none] = ACTIONS(1025), - [sym_undefined] = ACTIONS(1025), - [sym_sink] = ACTIONS(1025), - [sym_integer] = ACTIONS(1025), - [sym_float] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1023), - [sym_multiline_string] = ACTIONS(1023), - [sym_character] = ACTIONS(1023), + [STATE(422)] = { + [ts_builtin_sym_end] = ACTIONS(1021), + [sym_identifier] = ACTIONS(1023), + [anon_sym_COLON_COLON] = ACTIONS(1021), + [anon_sym_import] = 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(1021), + [anon_sym_QMARK] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_RBRACK] = ACTIONS(1021), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_anyopaque] = ACTIONS(1023), + [anon_sym_bool] = ACTIONS(1023), + [anon_sym_int] = 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_return] = ACTIONS(1023), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_COLON] = 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_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_PLUS] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_AMP] = ACTIONS(1021), + [anon_sym_try] = ACTIONS(1023), + [anon_sym_DOT] = ACTIONS(1023), + [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(1023), + [sym__newline] = ACTIONS(1021), + }, + [STATE(423)] = { + [ts_builtin_sym_end] = ACTIONS(1025), + [sym_identifier] = ACTIONS(1027), + [anon_sym_COLON_COLON] = ACTIONS(1025), + [anon_sym_import] = ACTIONS(1027), + [anon_sym_func] = ACTIONS(1027), + [anon_sym_BANG] = ACTIONS(1027), + [anon_sym_EQ] = ACTIONS(1027), + [anon_sym_struct] = ACTIONS(1027), + [anon_sym_LPAREN] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(1025), + [anon_sym_LBRACE] = ACTIONS(1025), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_RBRACE] = ACTIONS(1025), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_DOLLAR] = ACTIONS(1025), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_QMARK] = ACTIONS(1025), + [anon_sym_STAR] = ACTIONS(1027), + [anon_sym_LBRACK] = ACTIONS(1025), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_RBRACK] = ACTIONS(1025), + [anon_sym_void] = ACTIONS(1027), + [anon_sym_anyopaque] = ACTIONS(1027), + [anon_sym_bool] = ACTIONS(1027), + [anon_sym_int] = ACTIONS(1027), + [anon_sym_float] = ACTIONS(1027), + [anon_sym_range] = ACTIONS(1027), + [anon_sym_i8] = ACTIONS(1027), + [anon_sym_i16] = ACTIONS(1027), + [anon_sym_i32] = ACTIONS(1027), + [anon_sym_i64] = ACTIONS(1027), + [anon_sym_u8] = ACTIONS(1027), + [anon_sym_u16] = ACTIONS(1027), + [anon_sym_u32] = ACTIONS(1027), + [anon_sym_u64] = ACTIONS(1027), + [anon_sym_isize] = ACTIONS(1027), + [anon_sym_usize] = ACTIONS(1027), + [anon_sym_f32] = ACTIONS(1027), + [anon_sym_f64] = ACTIONS(1027), + [anon_sym_c_char] = ACTIONS(1027), + [anon_sym_c_schar] = ACTIONS(1027), + [anon_sym_c_uchar] = ACTIONS(1027), + [anon_sym_c_short] = ACTIONS(1027), + [anon_sym_c_ushort] = ACTIONS(1027), + [anon_sym_c_int] = ACTIONS(1027), + [anon_sym_c_uint] = ACTIONS(1027), + [anon_sym_c_long] = ACTIONS(1027), + [anon_sym_c_ulong] = ACTIONS(1027), + [anon_sym_c_longlong] = ACTIONS(1027), + [anon_sym_c_ulonglong] = ACTIONS(1027), + [anon_sym_c_float] = ACTIONS(1027), + [anon_sym_c_double] = ACTIONS(1027), + [anon_sym_c_longdouble] = ACTIONS(1027), + [anon_sym_PLUS_EQ] = ACTIONS(1025), + [anon_sym_DASH_EQ] = ACTIONS(1025), + [anon_sym_STAR_EQ] = ACTIONS(1025), + [anon_sym_SLASH_EQ] = ACTIONS(1025), + [anon_sym_return] = ACTIONS(1027), + [anon_sym_yield] = ACTIONS(1027), + [anon_sym_COLON] = ACTIONS(1027), + [anon_sym_break] = ACTIONS(1027), + [anon_sym_continue] = ACTIONS(1027), + [anon_sym_defer] = ACTIONS(1027), + [anon_sym_errdefer] = ACTIONS(1027), + [anon_sym_if] = ACTIONS(1027), + [anon_sym_else] = ACTIONS(1027), + [anon_sym_while] = ACTIONS(1027), + [anon_sym_for] = ACTIONS(1027), + [anon_sym_match] = ACTIONS(1027), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1025), + [anon_sym_orelse] = ACTIONS(1027), + [anon_sym_catch] = ACTIONS(1027), + [anon_sym_or] = ACTIONS(1027), + [anon_sym_and] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1025), + [anon_sym_BANG_EQ] = ACTIONS(1025), + [anon_sym_LT] = ACTIONS(1027), + [anon_sym_LT_EQ] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(1027), + [anon_sym_GT_EQ] = ACTIONS(1025), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_SLASH] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1025), + [anon_sym_try] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_CARET] = ACTIONS(1025), + [anon_sym_true] = ACTIONS(1027), + [anon_sym_false] = ACTIONS(1027), + [sym_none] = ACTIONS(1027), + [sym_undefined] = ACTIONS(1027), + [sym_sink] = ACTIONS(1027), + [sym_integer] = ACTIONS(1027), + [sym_float] = ACTIONS(1025), + [anon_sym_DQUOTE] = ACTIONS(1025), + [sym_multiline_string] = ACTIONS(1025), + [sym_character] = ACTIONS(1025), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1025), + }, + [STATE(424)] = { + [ts_builtin_sym_end] = ACTIONS(1029), + [sym_identifier] = ACTIONS(1031), + [anon_sym_COLON_COLON] = ACTIONS(1029), + [anon_sym_import] = 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(1029), + [anon_sym_QMARK] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1031), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_RBRACK] = ACTIONS(1029), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_anyopaque] = ACTIONS(1031), + [anon_sym_bool] = ACTIONS(1031), + [anon_sym_int] = 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_return] = ACTIONS(1031), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_COLON] = 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_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_PLUS] = ACTIONS(1031), + [anon_sym_SLASH] = ACTIONS(1031), + [anon_sym_AMP] = 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(425)] = { + [sym_argument_list] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(1033), + [sym_identifier] = ACTIONS(1035), + [anon_sym_import] = 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(915), + [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(1033), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_RBRACK] = ACTIONS(1033), + [anon_sym_void] = ACTIONS(1035), + [anon_sym_anyopaque] = ACTIONS(1035), + [anon_sym_bool] = ACTIONS(1035), + [anon_sym_int] = 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_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_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_PLUS] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [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(426)] = { - [ts_builtin_sym_end] = ACTIONS(1027), - [sym_identifier] = ACTIONS(1029), - [anon_sym_COLON_COLON] = ACTIONS(1027), - [anon_sym_import] = ACTIONS(1029), - [anon_sym_func] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1029), - [anon_sym_struct] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_COMMA] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_PIPE] = ACTIONS(1027), - [anon_sym_QMARK] = ACTIONS(1027), - [anon_sym_STAR] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_RBRACK] = ACTIONS(1027), - [anon_sym_void] = ACTIONS(1029), - [anon_sym_anyopaque] = ACTIONS(1029), - [anon_sym_bool] = ACTIONS(1029), - [anon_sym_int] = ACTIONS(1029), - [anon_sym_float] = ACTIONS(1029), - [anon_sym_range] = ACTIONS(1029), - [anon_sym_i8] = ACTIONS(1029), - [anon_sym_i16] = ACTIONS(1029), - [anon_sym_i32] = ACTIONS(1029), - [anon_sym_i64] = ACTIONS(1029), - [anon_sym_u8] = ACTIONS(1029), - [anon_sym_u16] = ACTIONS(1029), - [anon_sym_u32] = ACTIONS(1029), - [anon_sym_u64] = ACTIONS(1029), - [anon_sym_isize] = ACTIONS(1029), - [anon_sym_usize] = ACTIONS(1029), - [anon_sym_f32] = ACTIONS(1029), - [anon_sym_f64] = ACTIONS(1029), - [anon_sym_c_char] = ACTIONS(1029), - [anon_sym_c_schar] = ACTIONS(1029), - [anon_sym_c_uchar] = ACTIONS(1029), - [anon_sym_c_short] = ACTIONS(1029), - [anon_sym_c_ushort] = ACTIONS(1029), - [anon_sym_c_int] = ACTIONS(1029), - [anon_sym_c_uint] = ACTIONS(1029), - [anon_sym_c_long] = ACTIONS(1029), - [anon_sym_c_ulong] = ACTIONS(1029), - [anon_sym_c_longlong] = ACTIONS(1029), - [anon_sym_c_ulonglong] = ACTIONS(1029), - [anon_sym_c_float] = ACTIONS(1029), - [anon_sym_c_double] = ACTIONS(1029), - [anon_sym_c_longdouble] = ACTIONS(1029), - [anon_sym_PLUS_EQ] = ACTIONS(1027), - [anon_sym_DASH_EQ] = ACTIONS(1027), - [anon_sym_STAR_EQ] = ACTIONS(1027), - [anon_sym_SLASH_EQ] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_COLON] = ACTIONS(1029), - [anon_sym_break] = ACTIONS(1029), - [anon_sym_continue] = ACTIONS(1029), - [anon_sym_defer] = ACTIONS(1029), - [anon_sym_errdefer] = ACTIONS(1029), - [anon_sym_if] = ACTIONS(1029), - [anon_sym_else] = ACTIONS(1029), - [anon_sym_while] = ACTIONS(1029), - [anon_sym_for] = ACTIONS(1029), - [anon_sym_match] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1029), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1027), - [anon_sym_orelse] = ACTIONS(1029), - [anon_sym_catch] = ACTIONS(1029), - [anon_sym_or] = ACTIONS(1029), - [anon_sym_and] = ACTIONS(1029), - [anon_sym_EQ_EQ] = ACTIONS(1027), - [anon_sym_BANG_EQ] = ACTIONS(1027), - [anon_sym_LT] = ACTIONS(1029), - [anon_sym_LT_EQ] = ACTIONS(1027), - [anon_sym_GT] = ACTIONS(1029), - [anon_sym_GT_EQ] = ACTIONS(1027), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_SLASH] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1027), - [anon_sym_try] = ACTIONS(1029), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_CARET] = ACTIONS(1027), - [anon_sym_true] = ACTIONS(1029), - [anon_sym_false] = ACTIONS(1029), - [sym_none] = ACTIONS(1029), - [sym_undefined] = ACTIONS(1029), - [sym_sink] = ACTIONS(1029), - [sym_integer] = ACTIONS(1029), - [sym_float] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(1027), - [sym_multiline_string] = ACTIONS(1027), - [sym_character] = ACTIONS(1027), + [ts_builtin_sym_end] = ACTIONS(1037), + [sym_identifier] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(1037), + [anon_sym_import] = 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(1037), + [anon_sym_QMARK] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_RBRACK] = ACTIONS(1037), + [anon_sym_void] = ACTIONS(1039), + [anon_sym_anyopaque] = ACTIONS(1039), + [anon_sym_bool] = ACTIONS(1039), + [anon_sym_int] = 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_return] = ACTIONS(1039), + [anon_sym_yield] = ACTIONS(1039), + [anon_sym_COLON] = 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_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_PLUS] = ACTIONS(1039), + [anon_sym_SLASH] = ACTIONS(1039), + [anon_sym_AMP] = 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(1027), + [sym__newline] = ACTIONS(1037), }, [STATE(427)] = { - [ts_builtin_sym_end] = ACTIONS(1031), - [sym_identifier] = ACTIONS(1033), - [anon_sym_COLON_COLON] = ACTIONS(1031), - [anon_sym_import] = ACTIONS(1033), - [anon_sym_func] = ACTIONS(1033), - [anon_sym_BANG] = ACTIONS(1033), - [anon_sym_EQ] = ACTIONS(1033), - [anon_sym_struct] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_RPAREN] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1031), - [anon_sym_COMMA] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1031), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(1031), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1031), - [anon_sym_SEMI] = ACTIONS(1031), - [anon_sym_RBRACK] = ACTIONS(1031), - [anon_sym_void] = ACTIONS(1033), - [anon_sym_anyopaque] = ACTIONS(1033), - [anon_sym_bool] = ACTIONS(1033), - [anon_sym_int] = ACTIONS(1033), - [anon_sym_float] = ACTIONS(1033), - [anon_sym_range] = ACTIONS(1033), - [anon_sym_i8] = ACTIONS(1033), - [anon_sym_i16] = ACTIONS(1033), - [anon_sym_i32] = ACTIONS(1033), - [anon_sym_i64] = ACTIONS(1033), - [anon_sym_u8] = ACTIONS(1033), - [anon_sym_u16] = ACTIONS(1033), - [anon_sym_u32] = ACTIONS(1033), - [anon_sym_u64] = ACTIONS(1033), - [anon_sym_isize] = ACTIONS(1033), - [anon_sym_usize] = ACTIONS(1033), - [anon_sym_f32] = ACTIONS(1033), - [anon_sym_f64] = ACTIONS(1033), - [anon_sym_c_char] = ACTIONS(1033), - [anon_sym_c_schar] = ACTIONS(1033), - [anon_sym_c_uchar] = ACTIONS(1033), - [anon_sym_c_short] = ACTIONS(1033), - [anon_sym_c_ushort] = ACTIONS(1033), - [anon_sym_c_int] = ACTIONS(1033), - [anon_sym_c_uint] = ACTIONS(1033), - [anon_sym_c_long] = ACTIONS(1033), - [anon_sym_c_ulong] = ACTIONS(1033), - [anon_sym_c_longlong] = ACTIONS(1033), - [anon_sym_c_ulonglong] = ACTIONS(1033), - [anon_sym_c_float] = ACTIONS(1033), - [anon_sym_c_double] = ACTIONS(1033), - [anon_sym_c_longdouble] = ACTIONS(1033), - [anon_sym_PLUS_EQ] = ACTIONS(1031), - [anon_sym_DASH_EQ] = ACTIONS(1031), - [anon_sym_STAR_EQ] = ACTIONS(1031), - [anon_sym_SLASH_EQ] = ACTIONS(1031), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_yield] = ACTIONS(1033), - [anon_sym_COLON] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_defer] = ACTIONS(1033), - [anon_sym_errdefer] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_DOT_DOT] = ACTIONS(1033), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1031), - [anon_sym_orelse] = ACTIONS(1033), - [anon_sym_catch] = ACTIONS(1033), - [anon_sym_or] = ACTIONS(1033), - [anon_sym_and] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1031), - [anon_sym_BANG_EQ] = ACTIONS(1031), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_LT_EQ] = ACTIONS(1031), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_GT_EQ] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1031), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [sym_none] = ACTIONS(1033), - [sym_undefined] = ACTIONS(1033), - [sym_sink] = ACTIONS(1033), - [sym_integer] = ACTIONS(1033), - [sym_float] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1031), - [sym_multiline_string] = ACTIONS(1031), - [sym_character] = ACTIONS(1031), + [ts_builtin_sym_end] = ACTIONS(1041), + [sym_identifier] = ACTIONS(1043), + [anon_sym_COLON_COLON] = ACTIONS(1041), + [anon_sym_import] = 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(1041), + [anon_sym_QMARK] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1041), + [anon_sym_RBRACK] = ACTIONS(1041), + [anon_sym_void] = ACTIONS(1043), + [anon_sym_anyopaque] = ACTIONS(1043), + [anon_sym_bool] = ACTIONS(1043), + [anon_sym_int] = 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_return] = ACTIONS(1043), + [anon_sym_yield] = ACTIONS(1043), + [anon_sym_COLON] = 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_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_PLUS] = ACTIONS(1043), + [anon_sym_SLASH] = ACTIONS(1043), + [anon_sym_AMP] = 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(1031), + [sym__newline] = ACTIONS(1041), }, [STATE(428)] = { - [ts_builtin_sym_end] = ACTIONS(1035), - [sym_identifier] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(1035), - [anon_sym_import] = ACTIONS(1037), - [anon_sym_func] = ACTIONS(1037), - [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_EQ] = ACTIONS(1037), - [anon_sym_struct] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_RPAREN] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1035), - [anon_sym_RBRACE] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1035), - [anon_sym_PIPE] = ACTIONS(1035), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_STAR] = ACTIONS(1037), - [anon_sym_LBRACK] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1035), - [anon_sym_RBRACK] = ACTIONS(1035), - [anon_sym_void] = ACTIONS(1037), - [anon_sym_anyopaque] = ACTIONS(1037), - [anon_sym_bool] = ACTIONS(1037), - [anon_sym_int] = ACTIONS(1037), - [anon_sym_float] = ACTIONS(1037), - [anon_sym_range] = ACTIONS(1037), - [anon_sym_i8] = ACTIONS(1037), - [anon_sym_i16] = ACTIONS(1037), - [anon_sym_i32] = ACTIONS(1037), - [anon_sym_i64] = ACTIONS(1037), - [anon_sym_u8] = ACTIONS(1037), - [anon_sym_u16] = ACTIONS(1037), - [anon_sym_u32] = ACTIONS(1037), - [anon_sym_u64] = ACTIONS(1037), - [anon_sym_isize] = ACTIONS(1037), - [anon_sym_usize] = ACTIONS(1037), - [anon_sym_f32] = ACTIONS(1037), - [anon_sym_f64] = ACTIONS(1037), - [anon_sym_c_char] = ACTIONS(1037), - [anon_sym_c_schar] = ACTIONS(1037), - [anon_sym_c_uchar] = ACTIONS(1037), - [anon_sym_c_short] = ACTIONS(1037), - [anon_sym_c_ushort] = ACTIONS(1037), - [anon_sym_c_int] = ACTIONS(1037), - [anon_sym_c_uint] = ACTIONS(1037), - [anon_sym_c_long] = ACTIONS(1037), - [anon_sym_c_ulong] = ACTIONS(1037), - [anon_sym_c_longlong] = ACTIONS(1037), - [anon_sym_c_ulonglong] = ACTIONS(1037), - [anon_sym_c_float] = ACTIONS(1037), - [anon_sym_c_double] = ACTIONS(1037), - [anon_sym_c_longdouble] = ACTIONS(1037), - [anon_sym_PLUS_EQ] = ACTIONS(1035), - [anon_sym_DASH_EQ] = ACTIONS(1035), - [anon_sym_STAR_EQ] = ACTIONS(1035), - [anon_sym_SLASH_EQ] = ACTIONS(1035), - [anon_sym_return] = ACTIONS(1037), - [anon_sym_yield] = ACTIONS(1037), - [anon_sym_COLON] = ACTIONS(1037), - [anon_sym_break] = ACTIONS(1037), - [anon_sym_continue] = ACTIONS(1037), - [anon_sym_defer] = ACTIONS(1037), - [anon_sym_errdefer] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1037), - [anon_sym_else] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(1037), - [anon_sym_for] = ACTIONS(1037), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1035), - [anon_sym_orelse] = ACTIONS(1037), - [anon_sym_catch] = ACTIONS(1037), - [anon_sym_or] = ACTIONS(1037), - [anon_sym_and] = ACTIONS(1037), - [anon_sym_EQ_EQ] = ACTIONS(1035), - [anon_sym_BANG_EQ] = ACTIONS(1035), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_LT_EQ] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_GT_EQ] = ACTIONS(1035), - [anon_sym_PLUS] = ACTIONS(1037), - [anon_sym_SLASH] = ACTIONS(1037), - [anon_sym_AMP] = ACTIONS(1035), - [anon_sym_try] = ACTIONS(1037), - [anon_sym_DOT] = ACTIONS(1037), - [anon_sym_CARET] = ACTIONS(1035), - [anon_sym_true] = ACTIONS(1037), - [anon_sym_false] = ACTIONS(1037), - [sym_none] = ACTIONS(1037), - [sym_undefined] = ACTIONS(1037), - [sym_sink] = ACTIONS(1037), - [sym_integer] = ACTIONS(1037), - [sym_float] = ACTIONS(1035), - [anon_sym_DQUOTE] = ACTIONS(1035), - [sym_multiline_string] = ACTIONS(1035), - [sym_character] = ACTIONS(1035), + [ts_builtin_sym_end] = ACTIONS(1045), + [sym_identifier] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(1045), + [anon_sym_import] = 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(1045), + [anon_sym_QMARK] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_RBRACK] = ACTIONS(1045), + [anon_sym_void] = ACTIONS(1047), + [anon_sym_anyopaque] = ACTIONS(1047), + [anon_sym_bool] = ACTIONS(1047), + [anon_sym_int] = 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_return] = ACTIONS(1047), + [anon_sym_yield] = ACTIONS(1047), + [anon_sym_COLON] = 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_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_PLUS] = ACTIONS(1047), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_AMP] = 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(1035), + [sym__newline] = ACTIONS(1045), }, [STATE(429)] = { - [ts_builtin_sym_end] = ACTIONS(1039), - [sym_identifier] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1039), - [anon_sym_import] = ACTIONS(1041), - [anon_sym_func] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_EQ] = ACTIONS(1041), - [anon_sym_struct] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_COMMA] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1039), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1039), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_RBRACK] = ACTIONS(1039), - [anon_sym_void] = ACTIONS(1041), - [anon_sym_anyopaque] = ACTIONS(1041), - [anon_sym_bool] = ACTIONS(1041), - [anon_sym_int] = ACTIONS(1041), - [anon_sym_float] = ACTIONS(1041), - [anon_sym_range] = ACTIONS(1041), - [anon_sym_i8] = ACTIONS(1041), - [anon_sym_i16] = ACTIONS(1041), - [anon_sym_i32] = ACTIONS(1041), - [anon_sym_i64] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(1041), - [anon_sym_u16] = ACTIONS(1041), - [anon_sym_u32] = ACTIONS(1041), - [anon_sym_u64] = ACTIONS(1041), - [anon_sym_isize] = ACTIONS(1041), - [anon_sym_usize] = ACTIONS(1041), - [anon_sym_f32] = ACTIONS(1041), - [anon_sym_f64] = ACTIONS(1041), - [anon_sym_c_char] = ACTIONS(1041), - [anon_sym_c_schar] = ACTIONS(1041), - [anon_sym_c_uchar] = ACTIONS(1041), - [anon_sym_c_short] = ACTIONS(1041), - [anon_sym_c_ushort] = ACTIONS(1041), - [anon_sym_c_int] = ACTIONS(1041), - [anon_sym_c_uint] = ACTIONS(1041), - [anon_sym_c_long] = ACTIONS(1041), - [anon_sym_c_ulong] = ACTIONS(1041), - [anon_sym_c_longlong] = ACTIONS(1041), - [anon_sym_c_ulonglong] = ACTIONS(1041), - [anon_sym_c_float] = ACTIONS(1041), - [anon_sym_c_double] = ACTIONS(1041), - [anon_sym_c_longdouble] = ACTIONS(1041), - [anon_sym_PLUS_EQ] = ACTIONS(1039), - [anon_sym_DASH_EQ] = ACTIONS(1039), - [anon_sym_STAR_EQ] = ACTIONS(1039), - [anon_sym_SLASH_EQ] = ACTIONS(1039), - [anon_sym_return] = ACTIONS(1041), - [anon_sym_yield] = ACTIONS(1041), - [anon_sym_COLON] = ACTIONS(1041), - [anon_sym_break] = ACTIONS(1041), - [anon_sym_continue] = ACTIONS(1041), - [anon_sym_defer] = ACTIONS(1041), - [anon_sym_errdefer] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1041), - [anon_sym_else] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1041), - [anon_sym_for] = ACTIONS(1041), - [anon_sym_match] = ACTIONS(1041), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), - [anon_sym_orelse] = ACTIONS(1041), - [anon_sym_catch] = ACTIONS(1041), - [anon_sym_or] = ACTIONS(1041), - [anon_sym_and] = ACTIONS(1041), - [anon_sym_EQ_EQ] = ACTIONS(1039), - [anon_sym_BANG_EQ] = ACTIONS(1039), - [anon_sym_LT] = ACTIONS(1041), - [anon_sym_LT_EQ] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1041), - [anon_sym_GT_EQ] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1041), - [anon_sym_CARET] = ACTIONS(1039), - [anon_sym_true] = ACTIONS(1041), - [anon_sym_false] = ACTIONS(1041), - [sym_none] = ACTIONS(1041), - [sym_undefined] = ACTIONS(1041), - [sym_sink] = ACTIONS(1041), - [sym_integer] = ACTIONS(1041), - [sym_float] = ACTIONS(1039), - [anon_sym_DQUOTE] = ACTIONS(1039), - [sym_multiline_string] = ACTIONS(1039), - [sym_character] = ACTIONS(1039), + [sym_argument_list] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(1049), + [sym_identifier] = ACTIONS(1051), + [anon_sym_import] = 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(915), + [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(1049), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_RBRACK] = ACTIONS(1049), + [anon_sym_void] = ACTIONS(1051), + [anon_sym_anyopaque] = ACTIONS(1051), + [anon_sym_bool] = ACTIONS(1051), + [anon_sym_int] = 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_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_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_PLUS] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [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(1039), + [sym__newline] = ACTIONS(1049), }, [STATE(430)] = { - [ts_builtin_sym_end] = ACTIONS(1043), - [sym_identifier] = ACTIONS(1045), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym_import] = ACTIONS(1045), - [anon_sym_func] = ACTIONS(1045), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_EQ] = ACTIONS(1045), - [anon_sym_struct] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_RPAREN] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_COMMA] = ACTIONS(1043), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_DOLLAR] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(1043), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_SEMI] = ACTIONS(1043), - [anon_sym_RBRACK] = ACTIONS(1043), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_anyopaque] = ACTIONS(1045), - [anon_sym_bool] = ACTIONS(1045), - [anon_sym_int] = ACTIONS(1045), - [anon_sym_float] = ACTIONS(1045), - [anon_sym_range] = ACTIONS(1045), - [anon_sym_i8] = ACTIONS(1045), - [anon_sym_i16] = ACTIONS(1045), - [anon_sym_i32] = ACTIONS(1045), - [anon_sym_i64] = ACTIONS(1045), - [anon_sym_u8] = ACTIONS(1045), - [anon_sym_u16] = ACTIONS(1045), - [anon_sym_u32] = ACTIONS(1045), - [anon_sym_u64] = ACTIONS(1045), - [anon_sym_isize] = ACTIONS(1045), - [anon_sym_usize] = ACTIONS(1045), - [anon_sym_f32] = ACTIONS(1045), - [anon_sym_f64] = ACTIONS(1045), - [anon_sym_c_char] = ACTIONS(1045), - [anon_sym_c_schar] = ACTIONS(1045), - [anon_sym_c_uchar] = ACTIONS(1045), - [anon_sym_c_short] = ACTIONS(1045), - [anon_sym_c_ushort] = ACTIONS(1045), - [anon_sym_c_int] = ACTIONS(1045), - [anon_sym_c_uint] = ACTIONS(1045), - [anon_sym_c_long] = ACTIONS(1045), - [anon_sym_c_ulong] = ACTIONS(1045), - [anon_sym_c_longlong] = ACTIONS(1045), - [anon_sym_c_ulonglong] = ACTIONS(1045), - [anon_sym_c_float] = ACTIONS(1045), - [anon_sym_c_double] = ACTIONS(1045), - [anon_sym_c_longdouble] = ACTIONS(1045), - [anon_sym_PLUS_EQ] = ACTIONS(1043), - [anon_sym_DASH_EQ] = ACTIONS(1043), - [anon_sym_STAR_EQ] = ACTIONS(1043), - [anon_sym_SLASH_EQ] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(1045), - [anon_sym_yield] = ACTIONS(1045), - [anon_sym_COLON] = ACTIONS(1045), - [anon_sym_break] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1045), - [anon_sym_defer] = ACTIONS(1045), - [anon_sym_errdefer] = ACTIONS(1045), - [anon_sym_if] = ACTIONS(1045), - [anon_sym_else] = ACTIONS(1045), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1045), - [anon_sym_match] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1045), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), - [anon_sym_orelse] = ACTIONS(1045), - [anon_sym_catch] = ACTIONS(1045), - [anon_sym_or] = ACTIONS(1045), - [anon_sym_and] = ACTIONS(1045), - [anon_sym_EQ_EQ] = ACTIONS(1043), - [anon_sym_BANG_EQ] = ACTIONS(1043), - [anon_sym_LT] = ACTIONS(1045), - [anon_sym_LT_EQ] = ACTIONS(1043), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1045), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_try] = ACTIONS(1045), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_CARET] = ACTIONS(1043), - [anon_sym_true] = ACTIONS(1045), - [anon_sym_false] = ACTIONS(1045), - [sym_none] = ACTIONS(1045), - [sym_undefined] = ACTIONS(1045), - [sym_sink] = ACTIONS(1045), - [sym_integer] = ACTIONS(1045), - [sym_float] = ACTIONS(1043), - [anon_sym_DQUOTE] = ACTIONS(1043), - [sym_multiline_string] = ACTIONS(1043), - [sym_character] = ACTIONS(1043), + [ts_builtin_sym_end] = ACTIONS(1053), + [sym_identifier] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(1053), + [anon_sym_import] = 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(1053), + [anon_sym_QMARK] = ACTIONS(1053), + [anon_sym_STAR] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(1053), + [anon_sym_SEMI] = ACTIONS(1053), + [anon_sym_RBRACK] = ACTIONS(1053), + [anon_sym_void] = ACTIONS(1055), + [anon_sym_anyopaque] = ACTIONS(1055), + [anon_sym_bool] = ACTIONS(1055), + [anon_sym_int] = 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_return] = ACTIONS(1055), + [anon_sym_yield] = ACTIONS(1055), + [anon_sym_COLON] = 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_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_PLUS] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1055), + [anon_sym_AMP] = 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(1043), + [sym__newline] = ACTIONS(1053), }, [STATE(431)] = { - [ts_builtin_sym_end] = ACTIONS(1047), - [sym_identifier] = ACTIONS(1049), - [anon_sym_COLON_COLON] = ACTIONS(1047), - [anon_sym_import] = ACTIONS(1049), - [anon_sym_func] = ACTIONS(1049), - [anon_sym_BANG] = ACTIONS(1049), - [anon_sym_EQ] = ACTIONS(1049), - [anon_sym_struct] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_RPAREN] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_COMMA] = ACTIONS(1047), - [anon_sym_RBRACE] = ACTIONS(1047), - [anon_sym_DASH] = ACTIONS(1049), - [anon_sym_DOLLAR] = ACTIONS(1047), - [anon_sym_PIPE] = ACTIONS(1047), - [anon_sym_QMARK] = ACTIONS(1047), - [anon_sym_STAR] = ACTIONS(1049), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1047), - [anon_sym_RBRACK] = ACTIONS(1047), - [anon_sym_void] = ACTIONS(1049), - [anon_sym_anyopaque] = ACTIONS(1049), - [anon_sym_bool] = ACTIONS(1049), - [anon_sym_int] = ACTIONS(1049), - [anon_sym_float] = ACTIONS(1049), - [anon_sym_range] = ACTIONS(1049), - [anon_sym_i8] = ACTIONS(1049), - [anon_sym_i16] = ACTIONS(1049), - [anon_sym_i32] = ACTIONS(1049), - [anon_sym_i64] = ACTIONS(1049), - [anon_sym_u8] = ACTIONS(1049), - [anon_sym_u16] = ACTIONS(1049), - [anon_sym_u32] = ACTIONS(1049), - [anon_sym_u64] = ACTIONS(1049), - [anon_sym_isize] = ACTIONS(1049), - [anon_sym_usize] = ACTIONS(1049), - [anon_sym_f32] = ACTIONS(1049), - [anon_sym_f64] = ACTIONS(1049), - [anon_sym_c_char] = ACTIONS(1049), - [anon_sym_c_schar] = ACTIONS(1049), - [anon_sym_c_uchar] = ACTIONS(1049), - [anon_sym_c_short] = ACTIONS(1049), - [anon_sym_c_ushort] = ACTIONS(1049), - [anon_sym_c_int] = ACTIONS(1049), - [anon_sym_c_uint] = ACTIONS(1049), - [anon_sym_c_long] = ACTIONS(1049), - [anon_sym_c_ulong] = ACTIONS(1049), - [anon_sym_c_longlong] = ACTIONS(1049), - [anon_sym_c_ulonglong] = ACTIONS(1049), - [anon_sym_c_float] = ACTIONS(1049), - [anon_sym_c_double] = ACTIONS(1049), - [anon_sym_c_longdouble] = ACTIONS(1049), - [anon_sym_PLUS_EQ] = ACTIONS(1047), - [anon_sym_DASH_EQ] = ACTIONS(1047), - [anon_sym_STAR_EQ] = ACTIONS(1047), - [anon_sym_SLASH_EQ] = ACTIONS(1047), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1049), - [anon_sym_COLON] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1049), - [anon_sym_continue] = ACTIONS(1049), - [anon_sym_defer] = ACTIONS(1049), - [anon_sym_errdefer] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_else] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_match] = ACTIONS(1049), - [anon_sym_DOT_DOT] = ACTIONS(1049), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), - [anon_sym_orelse] = ACTIONS(1049), - [anon_sym_catch] = ACTIONS(1049), - [anon_sym_or] = ACTIONS(1049), - [anon_sym_and] = ACTIONS(1049), - [anon_sym_EQ_EQ] = ACTIONS(1047), - [anon_sym_BANG_EQ] = ACTIONS(1047), - [anon_sym_LT] = ACTIONS(1049), - [anon_sym_LT_EQ] = ACTIONS(1047), - [anon_sym_GT] = ACTIONS(1049), - [anon_sym_GT_EQ] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1049), - [anon_sym_SLASH] = ACTIONS(1049), - [anon_sym_AMP] = ACTIONS(1047), - [anon_sym_try] = ACTIONS(1049), - [anon_sym_DOT] = ACTIONS(1049), - [anon_sym_CARET] = ACTIONS(1047), - [anon_sym_true] = ACTIONS(1049), - [anon_sym_false] = ACTIONS(1049), - [sym_none] = ACTIONS(1049), - [sym_undefined] = ACTIONS(1049), - [sym_sink] = ACTIONS(1049), - [sym_integer] = ACTIONS(1049), - [sym_float] = ACTIONS(1047), - [anon_sym_DQUOTE] = ACTIONS(1047), - [sym_multiline_string] = ACTIONS(1047), - [sym_character] = ACTIONS(1047), + [ts_builtin_sym_end] = ACTIONS(1057), + [sym_identifier] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(1057), + [anon_sym_import] = 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(1057), + [anon_sym_QMARK] = ACTIONS(1057), + [anon_sym_STAR] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_SEMI] = ACTIONS(1057), + [anon_sym_RBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(1059), + [anon_sym_anyopaque] = ACTIONS(1059), + [anon_sym_bool] = ACTIONS(1059), + [anon_sym_int] = 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_return] = ACTIONS(1059), + [anon_sym_yield] = ACTIONS(1059), + [anon_sym_COLON] = 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_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_PLUS] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_AMP] = 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(1047), + [sym__newline] = ACTIONS(1057), }, [STATE(432)] = { - [ts_builtin_sym_end] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(1051), - [anon_sym_import] = ACTIONS(1053), - [anon_sym_func] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(1053), - [anon_sym_EQ] = ACTIONS(1053), - [anon_sym_struct] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1051), - [anon_sym_PIPE] = ACTIONS(1051), - [anon_sym_QMARK] = ACTIONS(1051), - [anon_sym_STAR] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_SEMI] = ACTIONS(1051), - [anon_sym_RBRACK] = ACTIONS(1051), - [anon_sym_void] = ACTIONS(1053), - [anon_sym_anyopaque] = ACTIONS(1053), - [anon_sym_bool] = ACTIONS(1053), - [anon_sym_int] = ACTIONS(1053), - [anon_sym_float] = ACTIONS(1053), - [anon_sym_range] = ACTIONS(1053), - [anon_sym_i8] = ACTIONS(1053), - [anon_sym_i16] = ACTIONS(1053), - [anon_sym_i32] = ACTIONS(1053), - [anon_sym_i64] = ACTIONS(1053), - [anon_sym_u8] = ACTIONS(1053), - [anon_sym_u16] = ACTIONS(1053), - [anon_sym_u32] = ACTIONS(1053), - [anon_sym_u64] = ACTIONS(1053), - [anon_sym_isize] = ACTIONS(1053), - [anon_sym_usize] = ACTIONS(1053), - [anon_sym_f32] = ACTIONS(1053), - [anon_sym_f64] = ACTIONS(1053), - [anon_sym_c_char] = ACTIONS(1053), - [anon_sym_c_schar] = ACTIONS(1053), - [anon_sym_c_uchar] = ACTIONS(1053), - [anon_sym_c_short] = ACTIONS(1053), - [anon_sym_c_ushort] = ACTIONS(1053), - [anon_sym_c_int] = ACTIONS(1053), - [anon_sym_c_uint] = ACTIONS(1053), - [anon_sym_c_long] = ACTIONS(1053), - [anon_sym_c_ulong] = ACTIONS(1053), - [anon_sym_c_longlong] = ACTIONS(1053), - [anon_sym_c_ulonglong] = ACTIONS(1053), - [anon_sym_c_float] = ACTIONS(1053), - [anon_sym_c_double] = ACTIONS(1053), - [anon_sym_c_longdouble] = ACTIONS(1053), - [anon_sym_PLUS_EQ] = ACTIONS(1051), - [anon_sym_DASH_EQ] = ACTIONS(1051), - [anon_sym_STAR_EQ] = ACTIONS(1051), - [anon_sym_SLASH_EQ] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1053), - [anon_sym_yield] = ACTIONS(1053), - [anon_sym_COLON] = ACTIONS(1053), - [anon_sym_break] = ACTIONS(1053), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_defer] = ACTIONS(1053), - [anon_sym_errdefer] = ACTIONS(1053), - [anon_sym_if] = ACTIONS(1053), - [anon_sym_else] = ACTIONS(1053), - [anon_sym_while] = ACTIONS(1053), - [anon_sym_for] = ACTIONS(1053), - [anon_sym_match] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), - [anon_sym_orelse] = ACTIONS(1053), - [anon_sym_catch] = ACTIONS(1053), - [anon_sym_or] = ACTIONS(1053), - [anon_sym_and] = ACTIONS(1053), - [anon_sym_EQ_EQ] = ACTIONS(1051), - [anon_sym_BANG_EQ] = ACTIONS(1051), - [anon_sym_LT] = ACTIONS(1053), - [anon_sym_LT_EQ] = ACTIONS(1051), - [anon_sym_GT] = ACTIONS(1053), - [anon_sym_GT_EQ] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1051), - [anon_sym_try] = ACTIONS(1053), - [anon_sym_DOT] = ACTIONS(1053), - [anon_sym_CARET] = ACTIONS(1051), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [sym_none] = ACTIONS(1053), - [sym_undefined] = ACTIONS(1053), - [sym_sink] = ACTIONS(1053), - [sym_integer] = ACTIONS(1053), - [sym_float] = ACTIONS(1051), - [anon_sym_DQUOTE] = ACTIONS(1051), - [sym_multiline_string] = ACTIONS(1051), - [sym_character] = ACTIONS(1051), + [ts_builtin_sym_end] = ACTIONS(1061), + [sym_identifier] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(1061), + [anon_sym_import] = 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(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_SEMI] = ACTIONS(1061), + [anon_sym_RBRACK] = ACTIONS(1061), + [anon_sym_void] = ACTIONS(1063), + [anon_sym_anyopaque] = ACTIONS(1063), + [anon_sym_bool] = ACTIONS(1063), + [anon_sym_int] = 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_return] = ACTIONS(1063), + [anon_sym_yield] = ACTIONS(1063), + [anon_sym_COLON] = 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_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_PLUS] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1063), + [anon_sym_AMP] = 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(1051), + [sym__newline] = ACTIONS(1061), }, [STATE(433)] = { - [ts_builtin_sym_end] = ACTIONS(1055), - [sym_identifier] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1055), - [anon_sym_import] = ACTIONS(1057), - [anon_sym_func] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_EQ] = ACTIONS(1057), - [anon_sym_struct] = ACTIONS(1057), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_RPAREN] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_COMMA] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(1055), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1055), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_RBRACK] = ACTIONS(1055), - [anon_sym_void] = ACTIONS(1057), - [anon_sym_anyopaque] = ACTIONS(1057), - [anon_sym_bool] = ACTIONS(1057), - [anon_sym_int] = ACTIONS(1057), - [anon_sym_float] = ACTIONS(1057), - [anon_sym_range] = ACTIONS(1057), - [anon_sym_i8] = ACTIONS(1057), - [anon_sym_i16] = ACTIONS(1057), - [anon_sym_i32] = ACTIONS(1057), - [anon_sym_i64] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(1057), - [anon_sym_u16] = ACTIONS(1057), - [anon_sym_u32] = ACTIONS(1057), - [anon_sym_u64] = ACTIONS(1057), - [anon_sym_isize] = ACTIONS(1057), - [anon_sym_usize] = ACTIONS(1057), - [anon_sym_f32] = ACTIONS(1057), - [anon_sym_f64] = ACTIONS(1057), - [anon_sym_c_char] = ACTIONS(1057), - [anon_sym_c_schar] = ACTIONS(1057), - [anon_sym_c_uchar] = ACTIONS(1057), - [anon_sym_c_short] = ACTIONS(1057), - [anon_sym_c_ushort] = ACTIONS(1057), - [anon_sym_c_int] = ACTIONS(1057), - [anon_sym_c_uint] = ACTIONS(1057), - [anon_sym_c_long] = ACTIONS(1057), - [anon_sym_c_ulong] = ACTIONS(1057), - [anon_sym_c_longlong] = ACTIONS(1057), - [anon_sym_c_ulonglong] = ACTIONS(1057), - [anon_sym_c_float] = ACTIONS(1057), - [anon_sym_c_double] = ACTIONS(1057), - [anon_sym_c_longdouble] = ACTIONS(1057), - [anon_sym_PLUS_EQ] = ACTIONS(1055), - [anon_sym_DASH_EQ] = ACTIONS(1055), - [anon_sym_STAR_EQ] = ACTIONS(1055), - [anon_sym_SLASH_EQ] = ACTIONS(1055), - [anon_sym_return] = ACTIONS(1057), - [anon_sym_yield] = ACTIONS(1057), - [anon_sym_COLON] = ACTIONS(1057), - [anon_sym_break] = ACTIONS(1057), - [anon_sym_continue] = ACTIONS(1057), - [anon_sym_defer] = ACTIONS(1057), - [anon_sym_errdefer] = ACTIONS(1057), - [anon_sym_if] = ACTIONS(1057), - [anon_sym_else] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1057), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_match] = ACTIONS(1057), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1055), - [anon_sym_orelse] = ACTIONS(1057), - [anon_sym_catch] = ACTIONS(1057), - [anon_sym_or] = ACTIONS(1057), - [anon_sym_and] = ACTIONS(1057), - [anon_sym_EQ_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_LT_EQ] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1057), - [anon_sym_GT_EQ] = ACTIONS(1055), - [anon_sym_PLUS] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1055), - [anon_sym_try] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_CARET] = ACTIONS(1055), - [anon_sym_true] = ACTIONS(1057), - [anon_sym_false] = ACTIONS(1057), - [sym_none] = ACTIONS(1057), - [sym_undefined] = ACTIONS(1057), - [sym_sink] = ACTIONS(1057), - [sym_integer] = ACTIONS(1057), - [sym_float] = ACTIONS(1055), - [anon_sym_DQUOTE] = ACTIONS(1055), - [sym_multiline_string] = ACTIONS(1055), - [sym_character] = ACTIONS(1055), + [ts_builtin_sym_end] = ACTIONS(1065), + [sym_identifier] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(1065), + [anon_sym_import] = 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(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_RBRACK] = ACTIONS(1065), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_anyopaque] = ACTIONS(1067), + [anon_sym_bool] = ACTIONS(1067), + [anon_sym_int] = 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_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_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_PLUS] = ACTIONS(1067), + [anon_sym_SLASH] = ACTIONS(1067), + [anon_sym_AMP] = 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(1055), + [sym__newline] = ACTIONS(1065), }, [STATE(434)] = { - [ts_builtin_sym_end] = ACTIONS(1059), - [sym_identifier] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(1059), - [anon_sym_import] = ACTIONS(1061), - [anon_sym_func] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_EQ] = ACTIONS(1061), - [anon_sym_struct] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1061), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1061), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_RBRACK] = ACTIONS(1059), - [anon_sym_void] = ACTIONS(1061), - [anon_sym_anyopaque] = ACTIONS(1061), - [anon_sym_bool] = ACTIONS(1061), - [anon_sym_int] = ACTIONS(1061), - [anon_sym_float] = ACTIONS(1061), - [anon_sym_range] = ACTIONS(1061), - [anon_sym_i8] = ACTIONS(1061), - [anon_sym_i16] = ACTIONS(1061), - [anon_sym_i32] = ACTIONS(1061), - [anon_sym_i64] = ACTIONS(1061), - [anon_sym_u8] = ACTIONS(1061), - [anon_sym_u16] = ACTIONS(1061), - [anon_sym_u32] = ACTIONS(1061), - [anon_sym_u64] = ACTIONS(1061), - [anon_sym_isize] = ACTIONS(1061), - [anon_sym_usize] = ACTIONS(1061), - [anon_sym_f32] = ACTIONS(1061), - [anon_sym_f64] = ACTIONS(1061), - [anon_sym_c_char] = ACTIONS(1061), - [anon_sym_c_schar] = ACTIONS(1061), - [anon_sym_c_uchar] = ACTIONS(1061), - [anon_sym_c_short] = ACTIONS(1061), - [anon_sym_c_ushort] = ACTIONS(1061), - [anon_sym_c_int] = ACTIONS(1061), - [anon_sym_c_uint] = ACTIONS(1061), - [anon_sym_c_long] = ACTIONS(1061), - [anon_sym_c_ulong] = ACTIONS(1061), - [anon_sym_c_longlong] = ACTIONS(1061), - [anon_sym_c_ulonglong] = ACTIONS(1061), - [anon_sym_c_float] = ACTIONS(1061), - [anon_sym_c_double] = ACTIONS(1061), - [anon_sym_c_longdouble] = ACTIONS(1061), - [anon_sym_PLUS_EQ] = ACTIONS(1059), - [anon_sym_DASH_EQ] = ACTIONS(1059), - [anon_sym_STAR_EQ] = ACTIONS(1059), - [anon_sym_SLASH_EQ] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1061), - [anon_sym_yield] = ACTIONS(1061), - [anon_sym_COLON] = ACTIONS(1061), - [anon_sym_break] = ACTIONS(1061), - [anon_sym_continue] = ACTIONS(1061), - [anon_sym_defer] = ACTIONS(1061), - [anon_sym_errdefer] = ACTIONS(1061), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_else] = ACTIONS(1061), - [anon_sym_while] = ACTIONS(1061), - [anon_sym_for] = ACTIONS(1061), - [anon_sym_match] = ACTIONS(1061), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_orelse] = ACTIONS(1061), - [anon_sym_catch] = ACTIONS(1061), - [anon_sym_or] = ACTIONS(1061), - [anon_sym_and] = ACTIONS(1061), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1061), - [anon_sym_SLASH] = ACTIONS(1061), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1061), - [anon_sym_DOT] = ACTIONS(1061), - [anon_sym_CARET] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_none] = ACTIONS(1061), - [sym_undefined] = ACTIONS(1061), - [sym_sink] = ACTIONS(1061), - [sym_integer] = ACTIONS(1061), - [sym_float] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_multiline_string] = ACTIONS(1059), - [sym_character] = ACTIONS(1059), + [ts_builtin_sym_end] = ACTIONS(1069), + [sym_identifier] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(1069), + [anon_sym_import] = 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(1069), + [anon_sym_QMARK] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_SEMI] = ACTIONS(1069), + [anon_sym_RBRACK] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1071), + [anon_sym_anyopaque] = ACTIONS(1071), + [anon_sym_bool] = ACTIONS(1071), + [anon_sym_int] = 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_return] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1071), + [anon_sym_COLON] = 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_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_PLUS] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_AMP] = 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(1059), + [sym__newline] = ACTIONS(1069), }, [STATE(435)] = { - [ts_builtin_sym_end] = ACTIONS(1063), - [sym_identifier] = ACTIONS(1065), - [anon_sym_COLON_COLON] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(1065), - [anon_sym_func] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_EQ] = ACTIONS(1065), - [anon_sym_struct] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_QMARK] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_RBRACK] = ACTIONS(1063), - [anon_sym_void] = ACTIONS(1065), - [anon_sym_anyopaque] = ACTIONS(1065), - [anon_sym_bool] = ACTIONS(1065), - [anon_sym_int] = ACTIONS(1065), - [anon_sym_float] = ACTIONS(1065), - [anon_sym_range] = ACTIONS(1065), - [anon_sym_i8] = ACTIONS(1065), - [anon_sym_i16] = ACTIONS(1065), - [anon_sym_i32] = ACTIONS(1065), - [anon_sym_i64] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(1065), - [anon_sym_u16] = ACTIONS(1065), - [anon_sym_u32] = ACTIONS(1065), - [anon_sym_u64] = ACTIONS(1065), - [anon_sym_isize] = ACTIONS(1065), - [anon_sym_usize] = ACTIONS(1065), - [anon_sym_f32] = ACTIONS(1065), - [anon_sym_f64] = ACTIONS(1065), - [anon_sym_c_char] = ACTIONS(1065), - [anon_sym_c_schar] = ACTIONS(1065), - [anon_sym_c_uchar] = ACTIONS(1065), - [anon_sym_c_short] = ACTIONS(1065), - [anon_sym_c_ushort] = ACTIONS(1065), - [anon_sym_c_int] = ACTIONS(1065), - [anon_sym_c_uint] = ACTIONS(1065), - [anon_sym_c_long] = ACTIONS(1065), - [anon_sym_c_ulong] = ACTIONS(1065), - [anon_sym_c_longlong] = ACTIONS(1065), - [anon_sym_c_ulonglong] = ACTIONS(1065), - [anon_sym_c_float] = ACTIONS(1065), - [anon_sym_c_double] = ACTIONS(1065), - [anon_sym_c_longdouble] = ACTIONS(1065), - [anon_sym_PLUS_EQ] = ACTIONS(1063), - [anon_sym_DASH_EQ] = ACTIONS(1063), - [anon_sym_STAR_EQ] = ACTIONS(1063), - [anon_sym_SLASH_EQ] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(1065), - [anon_sym_COLON] = ACTIONS(1065), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1065), - [anon_sym_defer] = ACTIONS(1065), - [anon_sym_errdefer] = ACTIONS(1065), - [anon_sym_if] = ACTIONS(1065), - [anon_sym_else] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1065), - [anon_sym_DOT_DOT] = ACTIONS(1065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_orelse] = ACTIONS(1065), - [anon_sym_catch] = ACTIONS(1065), - [anon_sym_or] = ACTIONS(1065), - [anon_sym_and] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_DOT] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_none] = ACTIONS(1065), - [sym_undefined] = ACTIONS(1065), - [sym_sink] = ACTIONS(1065), - [sym_integer] = ACTIONS(1065), - [sym_float] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym_multiline_string] = ACTIONS(1063), - [sym_character] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1063), - }, - [STATE(436)] = { - [ts_builtin_sym_end] = ACTIONS(1067), - [sym_identifier] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(1067), - [anon_sym_import] = ACTIONS(1069), - [anon_sym_func] = ACTIONS(1069), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_EQ] = ACTIONS(1069), - [anon_sym_struct] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1067), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_COMMA] = ACTIONS(1067), - [anon_sym_RBRACE] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_DOLLAR] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1067), - [anon_sym_QMARK] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1069), - [anon_sym_LBRACK] = ACTIONS(1067), - [anon_sym_SEMI] = ACTIONS(1067), - [anon_sym_RBRACK] = ACTIONS(1067), - [anon_sym_void] = ACTIONS(1069), - [anon_sym_anyopaque] = ACTIONS(1069), - [anon_sym_bool] = ACTIONS(1069), - [anon_sym_int] = ACTIONS(1069), - [anon_sym_float] = ACTIONS(1069), - [anon_sym_range] = ACTIONS(1069), - [anon_sym_i8] = ACTIONS(1069), - [anon_sym_i16] = ACTIONS(1069), - [anon_sym_i32] = ACTIONS(1069), - [anon_sym_i64] = ACTIONS(1069), - [anon_sym_u8] = ACTIONS(1069), - [anon_sym_u16] = ACTIONS(1069), - [anon_sym_u32] = ACTIONS(1069), - [anon_sym_u64] = ACTIONS(1069), - [anon_sym_isize] = ACTIONS(1069), - [anon_sym_usize] = ACTIONS(1069), - [anon_sym_f32] = ACTIONS(1069), - [anon_sym_f64] = ACTIONS(1069), - [anon_sym_c_char] = ACTIONS(1069), - [anon_sym_c_schar] = ACTIONS(1069), - [anon_sym_c_uchar] = ACTIONS(1069), - [anon_sym_c_short] = ACTIONS(1069), - [anon_sym_c_ushort] = ACTIONS(1069), - [anon_sym_c_int] = ACTIONS(1069), - [anon_sym_c_uint] = ACTIONS(1069), - [anon_sym_c_long] = ACTIONS(1069), - [anon_sym_c_ulong] = ACTIONS(1069), - [anon_sym_c_longlong] = ACTIONS(1069), - [anon_sym_c_ulonglong] = ACTIONS(1069), - [anon_sym_c_float] = ACTIONS(1069), - [anon_sym_c_double] = ACTIONS(1069), - [anon_sym_c_longdouble] = ACTIONS(1069), - [anon_sym_PLUS_EQ] = ACTIONS(1067), - [anon_sym_DASH_EQ] = ACTIONS(1067), - [anon_sym_STAR_EQ] = ACTIONS(1067), - [anon_sym_SLASH_EQ] = ACTIONS(1067), - [anon_sym_return] = ACTIONS(1069), - [anon_sym_yield] = ACTIONS(1069), - [anon_sym_COLON] = ACTIONS(1069), - [anon_sym_break] = ACTIONS(1069), - [anon_sym_continue] = ACTIONS(1069), - [anon_sym_defer] = ACTIONS(1069), - [anon_sym_errdefer] = ACTIONS(1069), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_else] = ACTIONS(1069), - [anon_sym_while] = ACTIONS(1069), - [anon_sym_for] = ACTIONS(1069), - [anon_sym_match] = ACTIONS(1069), - [anon_sym_DOT_DOT] = ACTIONS(1069), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1067), - [anon_sym_orelse] = ACTIONS(1069), - [anon_sym_catch] = ACTIONS(1069), - [anon_sym_or] = ACTIONS(1069), - [anon_sym_and] = ACTIONS(1069), - [anon_sym_EQ_EQ] = ACTIONS(1067), - [anon_sym_BANG_EQ] = ACTIONS(1067), - [anon_sym_LT] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1067), - [anon_sym_GT] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1067), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_try] = ACTIONS(1069), - [anon_sym_DOT] = ACTIONS(1071), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(1069), - [anon_sym_false] = ACTIONS(1069), - [sym_none] = ACTIONS(1069), - [sym_undefined] = ACTIONS(1069), - [sym_sink] = ACTIONS(1069), - [sym_integer] = ACTIONS(1069), - [sym_float] = ACTIONS(1067), - [anon_sym_DQUOTE] = ACTIONS(1067), - [sym_multiline_string] = ACTIONS(1067), - [sym_character] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1067), - }, - [STATE(437)] = { [ts_builtin_sym_end] = ACTIONS(1073), [sym_identifier] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(1073), @@ -55802,7 +55991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1073), }, - [STATE(438)] = { + [STATE(436)] = { [ts_builtin_sym_end] = ACTIONS(1077), [sym_identifier] = ACTIONS(1079), [anon_sym_COLON_COLON] = ACTIONS(1077), @@ -55903,7 +56092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1077), }, - [STATE(439)] = { + [STATE(437)] = { [ts_builtin_sym_end] = ACTIONS(1081), [sym_identifier] = ACTIONS(1083), [anon_sym_COLON_COLON] = ACTIONS(1081), @@ -56004,7 +56193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1081), }, - [STATE(440)] = { + [STATE(438)] = { [ts_builtin_sym_end] = ACTIONS(1085), [sym_identifier] = ACTIONS(1087), [anon_sym_COLON_COLON] = ACTIONS(1085), @@ -56105,7 +56294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1085), }, - [STATE(441)] = { + [STATE(439)] = { [ts_builtin_sym_end] = ACTIONS(1089), [sym_identifier] = ACTIONS(1091), [anon_sym_COLON_COLON] = ACTIONS(1089), @@ -56206,7 +56395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1089), }, - [STATE(442)] = { + [STATE(440)] = { [ts_builtin_sym_end] = ACTIONS(1093), [sym_identifier] = ACTIONS(1095), [anon_sym_COLON_COLON] = ACTIONS(1093), @@ -56307,7 +56496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1093), }, - [STATE(443)] = { + [STATE(441)] = { [ts_builtin_sym_end] = ACTIONS(1097), [sym_identifier] = ACTIONS(1099), [anon_sym_COLON_COLON] = ACTIONS(1097), @@ -56408,7 +56597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1097), }, - [STATE(444)] = { + [STATE(442)] = { [ts_builtin_sym_end] = ACTIONS(1101), [sym_identifier] = ACTIONS(1103), [anon_sym_COLON_COLON] = ACTIONS(1101), @@ -56509,7 +56698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1101), }, - [STATE(445)] = { + [STATE(443)] = { [ts_builtin_sym_end] = ACTIONS(1105), [sym_identifier] = ACTIONS(1107), [anon_sym_COLON_COLON] = ACTIONS(1105), @@ -56610,7 +56799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1105), }, - [STATE(446)] = { + [STATE(444)] = { [ts_builtin_sym_end] = ACTIONS(1109), [sym_identifier] = ACTIONS(1111), [anon_sym_COLON_COLON] = ACTIONS(1109), @@ -56711,7 +56900,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1109), }, - [STATE(447)] = { + [STATE(445)] = { [ts_builtin_sym_end] = ACTIONS(1113), [sym_identifier] = ACTIONS(1115), [anon_sym_COLON_COLON] = ACTIONS(1113), @@ -56812,7 +57001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1113), }, - [STATE(448)] = { + [STATE(446)] = { [ts_builtin_sym_end] = ACTIONS(1117), [sym_identifier] = ACTIONS(1119), [anon_sym_COLON_COLON] = ACTIONS(1117), @@ -56913,7 +57102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1117), }, - [STATE(449)] = { + [STATE(447)] = { [ts_builtin_sym_end] = ACTIONS(1121), [sym_identifier] = ACTIONS(1123), [anon_sym_COLON_COLON] = ACTIONS(1121), @@ -57014,7 +57203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1121), }, - [STATE(450)] = { + [STATE(448)] = { [ts_builtin_sym_end] = ACTIONS(1125), [sym_identifier] = ACTIONS(1127), [anon_sym_COLON_COLON] = ACTIONS(1125), @@ -57115,7 +57304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1125), }, - [STATE(451)] = { + [STATE(449)] = { [ts_builtin_sym_end] = ACTIONS(1129), [sym_identifier] = ACTIONS(1131), [anon_sym_COLON_COLON] = ACTIONS(1129), @@ -57216,7 +57405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1129), }, - [STATE(452)] = { + [STATE(450)] = { [ts_builtin_sym_end] = ACTIONS(1133), [sym_identifier] = ACTIONS(1135), [anon_sym_COLON_COLON] = ACTIONS(1133), @@ -57317,7 +57506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1133), }, - [STATE(453)] = { + [STATE(451)] = { [ts_builtin_sym_end] = ACTIONS(1137), [sym_identifier] = ACTIONS(1139), [anon_sym_COLON_COLON] = ACTIONS(1137), @@ -57418,7 +57607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1137), }, - [STATE(454)] = { + [STATE(452)] = { [ts_builtin_sym_end] = ACTIONS(1141), [sym_identifier] = ACTIONS(1143), [anon_sym_COLON_COLON] = ACTIONS(1141), @@ -57519,7 +57708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1141), }, - [STATE(455)] = { + [STATE(453)] = { [ts_builtin_sym_end] = ACTIONS(1145), [sym_identifier] = ACTIONS(1147), [anon_sym_COLON_COLON] = ACTIONS(1145), @@ -57620,7 +57809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1145), }, - [STATE(456)] = { + [STATE(454)] = { [ts_builtin_sym_end] = ACTIONS(1149), [sym_identifier] = ACTIONS(1151), [anon_sym_COLON_COLON] = ACTIONS(1149), @@ -57721,16 +57910,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1149), }, - [STATE(457)] = { - [sym_argument_list] = STATE(495), + [STATE(455)] = { [ts_builtin_sym_end] = ACTIONS(1153), [sym_identifier] = ACTIONS(1155), + [anon_sym_COLON_COLON] = ACTIONS(1153), [anon_sym_import] = 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(923), + [anon_sym_LPAREN] = ACTIONS(1153), [anon_sym_RPAREN] = ACTIONS(1153), [anon_sym_LBRACE] = ACTIONS(1153), [anon_sym_COMMA] = ACTIONS(1153), @@ -57738,9 +57927,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1155), [anon_sym_DOLLAR] = ACTIONS(1153), [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_QMARK] = ACTIONS(1153), [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(1153), [anon_sym_SEMI] = ACTIONS(1153), [anon_sym_RBRACK] = ACTIONS(1153), [anon_sym_void] = ACTIONS(1155), @@ -57781,7 +57970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(1153), [anon_sym_return] = ACTIONS(1155), [anon_sym_yield] = ACTIONS(1155), - [anon_sym_COLON] = ACTIONS(1153), + [anon_sym_COLON] = ACTIONS(1155), [anon_sym_break] = ACTIONS(1155), [anon_sym_continue] = ACTIONS(1155), [anon_sym_defer] = ACTIONS(1155), @@ -57807,8 +57996,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(1155), [anon_sym_AMP] = ACTIONS(1153), [anon_sym_try] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), + [anon_sym_DOT] = ACTIONS(1155), + [anon_sym_CARET] = ACTIONS(1153), [anon_sym_true] = ACTIONS(1155), [anon_sym_false] = ACTIONS(1155), [sym_none] = ACTIONS(1155), @@ -57822,7 +58011,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1153), }, - [STATE(458)] = { + [STATE(456)] = { [ts_builtin_sym_end] = ACTIONS(1157), [sym_identifier] = ACTIONS(1159), [anon_sym_COLON_COLON] = ACTIONS(1157), @@ -57923,13 +58112,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1157), }, - [STATE(459)] = { + [STATE(457)] = { [ts_builtin_sym_end] = ACTIONS(1161), [sym_identifier] = ACTIONS(1163), [anon_sym_COLON_COLON] = ACTIONS(1161), [anon_sym_import] = ACTIONS(1163), [anon_sym_func] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1163), [anon_sym_EQ] = ACTIONS(1163), [anon_sym_struct] = ACTIONS(1163), [anon_sym_LPAREN] = ACTIONS(1161), @@ -58024,7462 +58213,7669 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1161), }, - [STATE(460)] = { - [ts_builtin_sym_end] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [anon_sym_COLON_COLON] = ACTIONS(1167), - [anon_sym_import] = ACTIONS(1169), - [anon_sym_func] = ACTIONS(1169), - [anon_sym_BANG] = ACTIONS(1169), - [anon_sym_EQ] = ACTIONS(1169), - [anon_sym_struct] = ACTIONS(1169), - [anon_sym_LPAREN] = ACTIONS(1167), - [anon_sym_RPAREN] = ACTIONS(1167), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_COMMA] = ACTIONS(1167), - [anon_sym_RBRACE] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_DOLLAR] = ACTIONS(1167), - [anon_sym_PIPE] = ACTIONS(1167), - [anon_sym_QMARK] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(1169), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym_RBRACK] = ACTIONS(1167), - [anon_sym_void] = ACTIONS(1169), - [anon_sym_anyopaque] = ACTIONS(1169), - [anon_sym_bool] = ACTIONS(1169), - [anon_sym_int] = ACTIONS(1169), - [anon_sym_float] = ACTIONS(1169), - [anon_sym_range] = ACTIONS(1169), - [anon_sym_i8] = ACTIONS(1169), - [anon_sym_i16] = ACTIONS(1169), - [anon_sym_i32] = ACTIONS(1169), - [anon_sym_i64] = ACTIONS(1169), - [anon_sym_u8] = ACTIONS(1169), - [anon_sym_u16] = ACTIONS(1169), - [anon_sym_u32] = ACTIONS(1169), - [anon_sym_u64] = ACTIONS(1169), - [anon_sym_isize] = ACTIONS(1169), - [anon_sym_usize] = ACTIONS(1169), - [anon_sym_f32] = ACTIONS(1169), - [anon_sym_f64] = ACTIONS(1169), - [anon_sym_c_char] = ACTIONS(1169), - [anon_sym_c_schar] = ACTIONS(1169), - [anon_sym_c_uchar] = ACTIONS(1169), - [anon_sym_c_short] = ACTIONS(1169), - [anon_sym_c_ushort] = ACTIONS(1169), - [anon_sym_c_int] = ACTIONS(1169), - [anon_sym_c_uint] = ACTIONS(1169), - [anon_sym_c_long] = ACTIONS(1169), - [anon_sym_c_ulong] = ACTIONS(1169), - [anon_sym_c_longlong] = ACTIONS(1169), - [anon_sym_c_ulonglong] = ACTIONS(1169), - [anon_sym_c_float] = ACTIONS(1169), - [anon_sym_c_double] = ACTIONS(1169), - [anon_sym_c_longdouble] = ACTIONS(1169), - [anon_sym_PLUS_EQ] = ACTIONS(1167), - [anon_sym_DASH_EQ] = ACTIONS(1167), - [anon_sym_STAR_EQ] = ACTIONS(1167), - [anon_sym_SLASH_EQ] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(1169), - [anon_sym_yield] = ACTIONS(1169), - [anon_sym_COLON] = ACTIONS(1169), - [anon_sym_break] = ACTIONS(1169), - [anon_sym_continue] = ACTIONS(1169), - [anon_sym_defer] = ACTIONS(1169), - [anon_sym_errdefer] = ACTIONS(1169), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_else] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1169), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1169), - [anon_sym_DOT_DOT] = ACTIONS(1169), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1167), - [anon_sym_orelse] = ACTIONS(1169), - [anon_sym_catch] = ACTIONS(1169), - [anon_sym_or] = ACTIONS(1169), - [anon_sym_and] = ACTIONS(1169), - [anon_sym_EQ_EQ] = ACTIONS(1167), - [anon_sym_BANG_EQ] = ACTIONS(1167), - [anon_sym_LT] = ACTIONS(1169), - [anon_sym_LT_EQ] = ACTIONS(1167), - [anon_sym_GT] = ACTIONS(1169), - [anon_sym_GT_EQ] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_SLASH] = ACTIONS(1169), - [anon_sym_AMP] = ACTIONS(1167), - [anon_sym_try] = ACTIONS(1169), - [anon_sym_DOT] = ACTIONS(1169), - [anon_sym_CARET] = ACTIONS(1167), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [sym_none] = ACTIONS(1169), - [sym_undefined] = ACTIONS(1169), - [sym_sink] = ACTIONS(1169), - [sym_integer] = ACTIONS(1169), - [sym_float] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1167), - [sym_multiline_string] = ACTIONS(1167), - [sym_character] = ACTIONS(1167), + [STATE(458)] = { + [ts_builtin_sym_end] = ACTIONS(904), + [sym_identifier] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(904), + [anon_sym_import] = ACTIONS(906), + [anon_sym_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_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_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_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_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1167), + [sym__newline] = ACTIONS(904), + }, + [STATE(459)] = { + [ts_builtin_sym_end] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1167), + [anon_sym_COLON_COLON] = ACTIONS(1165), + [anon_sym_import] = 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(1165), + [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1165), + [anon_sym_RBRACK] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1167), + [anon_sym_anyopaque] = ACTIONS(1167), + [anon_sym_bool] = ACTIONS(1167), + [anon_sym_int] = 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_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_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_PLUS] = ACTIONS(1167), + [anon_sym_SLASH] = ACTIONS(1167), + [anon_sym_AMP] = 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(460)] = { + [ts_builtin_sym_end] = ACTIONS(1169), + [sym_identifier] = ACTIONS(1171), + [anon_sym_COLON_COLON] = ACTIONS(1169), + [anon_sym_import] = 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(1169), + [anon_sym_QMARK] = ACTIONS(1169), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1169), + [anon_sym_SEMI] = ACTIONS(1169), + [anon_sym_RBRACK] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1171), + [anon_sym_anyopaque] = ACTIONS(1171), + [anon_sym_bool] = ACTIONS(1171), + [anon_sym_int] = 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_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_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_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_AMP] = 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(461)] = { - [ts_builtin_sym_end] = ACTIONS(1171), - [sym_identifier] = ACTIONS(1173), - [anon_sym_import] = ACTIONS(1173), - [anon_sym_func] = ACTIONS(1173), - [anon_sym_BANG] = ACTIONS(1173), - [anon_sym_EQ] = ACTIONS(1173), - [anon_sym_struct] = ACTIONS(1173), - [anon_sym_LPAREN] = ACTIONS(1171), - [anon_sym_RPAREN] = ACTIONS(1171), - [anon_sym_LBRACE] = ACTIONS(1171), - [anon_sym_COMMA] = ACTIONS(1171), - [anon_sym_RBRACE] = ACTIONS(1171), - [anon_sym_DASH] = ACTIONS(1173), - [anon_sym_DOLLAR] = ACTIONS(1171), - [anon_sym_PIPE] = ACTIONS(1171), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_STAR] = ACTIONS(1173), - [anon_sym_LBRACK] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym_RBRACK] = ACTIONS(1171), - [anon_sym_void] = ACTIONS(1173), - [anon_sym_anyopaque] = ACTIONS(1173), - [anon_sym_bool] = ACTIONS(1173), - [anon_sym_int] = ACTIONS(1173), - [anon_sym_float] = ACTIONS(1173), - [anon_sym_range] = ACTIONS(1173), - [anon_sym_i8] = ACTIONS(1173), - [anon_sym_i16] = ACTIONS(1173), - [anon_sym_i32] = ACTIONS(1173), - [anon_sym_i64] = ACTIONS(1173), - [anon_sym_u8] = ACTIONS(1173), - [anon_sym_u16] = ACTIONS(1173), - [anon_sym_u32] = ACTIONS(1173), - [anon_sym_u64] = ACTIONS(1173), - [anon_sym_isize] = ACTIONS(1173), - [anon_sym_usize] = ACTIONS(1173), - [anon_sym_f32] = ACTIONS(1173), - [anon_sym_f64] = ACTIONS(1173), - [anon_sym_c_char] = ACTIONS(1173), - [anon_sym_c_schar] = ACTIONS(1173), - [anon_sym_c_uchar] = ACTIONS(1173), - [anon_sym_c_short] = ACTIONS(1173), - [anon_sym_c_ushort] = ACTIONS(1173), - [anon_sym_c_int] = ACTIONS(1173), - [anon_sym_c_uint] = ACTIONS(1173), - [anon_sym_c_long] = ACTIONS(1173), - [anon_sym_c_ulong] = ACTIONS(1173), - [anon_sym_c_longlong] = ACTIONS(1173), - [anon_sym_c_ulonglong] = ACTIONS(1173), - [anon_sym_c_float] = ACTIONS(1173), - [anon_sym_c_double] = ACTIONS(1173), - [anon_sym_c_longdouble] = ACTIONS(1173), - [anon_sym_PLUS_EQ] = ACTIONS(1171), - [anon_sym_DASH_EQ] = ACTIONS(1171), - [anon_sym_STAR_EQ] = ACTIONS(1171), - [anon_sym_SLASH_EQ] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_yield] = ACTIONS(1173), - [anon_sym_COLON] = ACTIONS(1171), - [anon_sym_break] = ACTIONS(1173), - [anon_sym_continue] = ACTIONS(1173), - [anon_sym_defer] = ACTIONS(1173), - [anon_sym_errdefer] = ACTIONS(1173), - [anon_sym_if] = ACTIONS(1173), - [anon_sym_else] = ACTIONS(1173), - [anon_sym_while] = ACTIONS(1173), - [anon_sym_for] = ACTIONS(1173), - [anon_sym_match] = ACTIONS(1173), - [anon_sym_DOT_DOT] = ACTIONS(1173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), - [anon_sym_orelse] = ACTIONS(1173), - [anon_sym_catch] = ACTIONS(1173), - [anon_sym_or] = ACTIONS(1173), - [anon_sym_and] = ACTIONS(1173), - [anon_sym_EQ_EQ] = ACTIONS(1171), - [anon_sym_BANG_EQ] = ACTIONS(1171), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_LT_EQ] = ACTIONS(1171), - [anon_sym_GT] = ACTIONS(1173), - [anon_sym_GT_EQ] = ACTIONS(1171), - [anon_sym_PLUS] = ACTIONS(1173), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_DOT] = ACTIONS(1173), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [sym_none] = ACTIONS(1173), - [sym_undefined] = ACTIONS(1173), - [sym_sink] = ACTIONS(1173), - [sym_integer] = ACTIONS(1173), - [sym_float] = ACTIONS(1171), - [anon_sym_DQUOTE] = ACTIONS(1171), - [sym_multiline_string] = ACTIONS(1171), - [sym_character] = ACTIONS(1171), + [ts_builtin_sym_end] = ACTIONS(1173), + [sym_identifier] = ACTIONS(1175), + [anon_sym_import] = 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(1173), + [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1173), + [anon_sym_RBRACK] = ACTIONS(1173), + [anon_sym_void] = ACTIONS(1175), + [anon_sym_anyopaque] = ACTIONS(1175), + [anon_sym_bool] = ACTIONS(1175), + [anon_sym_int] = 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_return] = ACTIONS(1175), + [anon_sym_yield] = ACTIONS(1175), + [anon_sym_COLON] = ACTIONS(1173), + [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_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_PLUS] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_AMP] = 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(1171), + [sym__newline] = ACTIONS(1173), }, [STATE(462)] = { - [ts_builtin_sym_end] = ACTIONS(1175), - [sym_identifier] = ACTIONS(1177), - [anon_sym_import] = ACTIONS(1177), - [anon_sym_func] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1177), - [anon_sym_EQ] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_RPAREN] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(1175), - [anon_sym_COMMA] = ACTIONS(1175), - [anon_sym_RBRACE] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_DOLLAR] = ACTIONS(1175), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_QMARK] = ACTIONS(1175), - [anon_sym_STAR] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(1175), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_RBRACK] = ACTIONS(1175), - [anon_sym_void] = ACTIONS(1177), - [anon_sym_anyopaque] = ACTIONS(1177), - [anon_sym_bool] = ACTIONS(1177), - [anon_sym_int] = ACTIONS(1177), - [anon_sym_float] = ACTIONS(1177), - [anon_sym_range] = ACTIONS(1177), - [anon_sym_i8] = ACTIONS(1177), - [anon_sym_i16] = ACTIONS(1177), - [anon_sym_i32] = ACTIONS(1177), - [anon_sym_i64] = ACTIONS(1177), - [anon_sym_u8] = ACTIONS(1177), - [anon_sym_u16] = ACTIONS(1177), - [anon_sym_u32] = ACTIONS(1177), - [anon_sym_u64] = ACTIONS(1177), - [anon_sym_isize] = ACTIONS(1177), - [anon_sym_usize] = ACTIONS(1177), - [anon_sym_f32] = ACTIONS(1177), - [anon_sym_f64] = ACTIONS(1177), - [anon_sym_c_char] = ACTIONS(1177), - [anon_sym_c_schar] = ACTIONS(1177), - [anon_sym_c_uchar] = ACTIONS(1177), - [anon_sym_c_short] = ACTIONS(1177), - [anon_sym_c_ushort] = ACTIONS(1177), - [anon_sym_c_int] = ACTIONS(1177), - [anon_sym_c_uint] = ACTIONS(1177), - [anon_sym_c_long] = ACTIONS(1177), - [anon_sym_c_ulong] = ACTIONS(1177), - [anon_sym_c_longlong] = ACTIONS(1177), - [anon_sym_c_ulonglong] = ACTIONS(1177), - [anon_sym_c_float] = ACTIONS(1177), - [anon_sym_c_double] = ACTIONS(1177), - [anon_sym_c_longdouble] = ACTIONS(1177), - [anon_sym_PLUS_EQ] = ACTIONS(1175), - [anon_sym_DASH_EQ] = ACTIONS(1175), - [anon_sym_STAR_EQ] = ACTIONS(1175), - [anon_sym_SLASH_EQ] = ACTIONS(1175), - [anon_sym_return] = ACTIONS(1177), - [anon_sym_yield] = ACTIONS(1177), - [anon_sym_COLON] = ACTIONS(1175), - [anon_sym_break] = ACTIONS(1177), - [anon_sym_continue] = ACTIONS(1177), - [anon_sym_defer] = ACTIONS(1177), - [anon_sym_errdefer] = ACTIONS(1177), - [anon_sym_if] = ACTIONS(1177), - [anon_sym_else] = ACTIONS(1177), - [anon_sym_while] = ACTIONS(1177), - [anon_sym_for] = ACTIONS(1177), - [anon_sym_match] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1175), - [anon_sym_orelse] = ACTIONS(1177), - [anon_sym_catch] = ACTIONS(1177), - [anon_sym_or] = ACTIONS(1177), - [anon_sym_and] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1175), - [anon_sym_BANG_EQ] = ACTIONS(1175), - [anon_sym_LT] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1175), - [anon_sym_GT] = ACTIONS(1177), - [anon_sym_GT_EQ] = ACTIONS(1175), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_SLASH] = ACTIONS(1177), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_try] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_CARET] = ACTIONS(1175), - [anon_sym_true] = ACTIONS(1177), - [anon_sym_false] = ACTIONS(1177), - [sym_none] = ACTIONS(1177), - [sym_undefined] = ACTIONS(1177), - [sym_sink] = ACTIONS(1177), - [sym_integer] = ACTIONS(1177), - [sym_float] = ACTIONS(1175), - [anon_sym_DQUOTE] = ACTIONS(1175), - [sym_multiline_string] = ACTIONS(1175), - [sym_character] = ACTIONS(1175), + [ts_builtin_sym_end] = ACTIONS(1177), + [sym_identifier] = ACTIONS(1179), + [anon_sym_import] = 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(1177), + [anon_sym_QMARK] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_RBRACK] = ACTIONS(1177), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_anyopaque] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_int] = 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_return] = ACTIONS(1179), + [anon_sym_yield] = ACTIONS(1179), + [anon_sym_COLON] = ACTIONS(1177), + [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_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_PLUS] = ACTIONS(1179), + [anon_sym_SLASH] = ACTIONS(1179), + [anon_sym_AMP] = 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(1175), + [sym__newline] = ACTIONS(1177), }, [STATE(463)] = { - [ts_builtin_sym_end] = ACTIONS(1179), - [sym_identifier] = ACTIONS(1181), - [anon_sym_import] = ACTIONS(1181), - [anon_sym_func] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_EQ] = ACTIONS(1181), - [anon_sym_struct] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1179), - [anon_sym_RPAREN] = ACTIONS(1179), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_RBRACE] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_DOLLAR] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(1179), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym_RBRACK] = ACTIONS(1179), - [anon_sym_void] = ACTIONS(1181), - [anon_sym_anyopaque] = ACTIONS(1181), - [anon_sym_bool] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_range] = ACTIONS(1181), - [anon_sym_i8] = ACTIONS(1181), - [anon_sym_i16] = ACTIONS(1181), - [anon_sym_i32] = ACTIONS(1181), - [anon_sym_i64] = ACTIONS(1181), - [anon_sym_u8] = ACTIONS(1181), - [anon_sym_u16] = ACTIONS(1181), - [anon_sym_u32] = ACTIONS(1181), - [anon_sym_u64] = ACTIONS(1181), - [anon_sym_isize] = ACTIONS(1181), - [anon_sym_usize] = ACTIONS(1181), - [anon_sym_f32] = ACTIONS(1181), - [anon_sym_f64] = ACTIONS(1181), - [anon_sym_c_char] = ACTIONS(1181), - [anon_sym_c_schar] = ACTIONS(1181), - [anon_sym_c_uchar] = ACTIONS(1181), - [anon_sym_c_short] = ACTIONS(1181), - [anon_sym_c_ushort] = ACTIONS(1181), - [anon_sym_c_int] = ACTIONS(1181), - [anon_sym_c_uint] = ACTIONS(1181), - [anon_sym_c_long] = ACTIONS(1181), - [anon_sym_c_ulong] = ACTIONS(1181), - [anon_sym_c_longlong] = ACTIONS(1181), - [anon_sym_c_ulonglong] = ACTIONS(1181), - [anon_sym_c_float] = ACTIONS(1181), - [anon_sym_c_double] = ACTIONS(1181), - [anon_sym_c_longdouble] = ACTIONS(1181), - [anon_sym_PLUS_EQ] = ACTIONS(1179), - [anon_sym_DASH_EQ] = ACTIONS(1179), - [anon_sym_STAR_EQ] = ACTIONS(1179), - [anon_sym_SLASH_EQ] = ACTIONS(1179), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_yield] = ACTIONS(1181), - [anon_sym_COLON] = ACTIONS(1179), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_defer] = ACTIONS(1181), - [anon_sym_errdefer] = ACTIONS(1181), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_match] = ACTIONS(1181), - [anon_sym_DOT_DOT] = ACTIONS(1181), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), - [anon_sym_orelse] = ACTIONS(1181), - [anon_sym_catch] = ACTIONS(1181), - [anon_sym_or] = ACTIONS(1181), - [anon_sym_and] = ACTIONS(1181), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1181), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1181), - [anon_sym_GT_EQ] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_SLASH] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_try] = ACTIONS(1181), - [anon_sym_DOT] = ACTIONS(1181), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [sym_none] = ACTIONS(1181), - [sym_undefined] = ACTIONS(1181), - [sym_sink] = ACTIONS(1181), - [sym_integer] = ACTIONS(1181), - [sym_float] = ACTIONS(1179), - [anon_sym_DQUOTE] = ACTIONS(1179), - [sym_multiline_string] = ACTIONS(1179), - [sym_character] = ACTIONS(1179), + [ts_builtin_sym_end] = ACTIONS(1181), + [sym_identifier] = ACTIONS(1183), + [anon_sym_import] = 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(1181), + [anon_sym_QMARK] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_RBRACK] = ACTIONS(1181), + [anon_sym_void] = ACTIONS(1183), + [anon_sym_anyopaque] = ACTIONS(1183), + [anon_sym_bool] = ACTIONS(1183), + [anon_sym_int] = 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_return] = ACTIONS(1183), + [anon_sym_yield] = ACTIONS(1183), + [anon_sym_COLON] = ACTIONS(1181), + [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_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_PLUS] = ACTIONS(1183), + [anon_sym_SLASH] = ACTIONS(1183), + [anon_sym_AMP] = 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(1179), + [sym__newline] = ACTIONS(1181), }, [STATE(464)] = { - [ts_builtin_sym_end] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1185), - [anon_sym_import] = ACTIONS(1185), - [anon_sym_func] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1185), - [anon_sym_EQ] = ACTIONS(1185), - [anon_sym_struct] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_COMMA] = ACTIONS(1183), - [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_DOLLAR] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1183), - [anon_sym_QMARK] = ACTIONS(1183), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_RBRACK] = ACTIONS(1183), - [anon_sym_void] = ACTIONS(1185), - [anon_sym_anyopaque] = ACTIONS(1185), - [anon_sym_bool] = ACTIONS(1185), - [anon_sym_int] = ACTIONS(1185), - [anon_sym_float] = ACTIONS(1185), - [anon_sym_range] = ACTIONS(1185), - [anon_sym_i8] = ACTIONS(1185), - [anon_sym_i16] = ACTIONS(1185), - [anon_sym_i32] = ACTIONS(1185), - [anon_sym_i64] = ACTIONS(1185), - [anon_sym_u8] = ACTIONS(1185), - [anon_sym_u16] = ACTIONS(1185), - [anon_sym_u32] = ACTIONS(1185), - [anon_sym_u64] = ACTIONS(1185), - [anon_sym_isize] = ACTIONS(1185), - [anon_sym_usize] = ACTIONS(1185), - [anon_sym_f32] = ACTIONS(1185), - [anon_sym_f64] = ACTIONS(1185), - [anon_sym_c_char] = ACTIONS(1185), - [anon_sym_c_schar] = ACTIONS(1185), - [anon_sym_c_uchar] = ACTIONS(1185), - [anon_sym_c_short] = ACTIONS(1185), - [anon_sym_c_ushort] = ACTIONS(1185), - [anon_sym_c_int] = ACTIONS(1185), - [anon_sym_c_uint] = ACTIONS(1185), - [anon_sym_c_long] = ACTIONS(1185), - [anon_sym_c_ulong] = ACTIONS(1185), - [anon_sym_c_longlong] = ACTIONS(1185), - [anon_sym_c_ulonglong] = ACTIONS(1185), - [anon_sym_c_float] = ACTIONS(1185), - [anon_sym_c_double] = ACTIONS(1185), - [anon_sym_c_longdouble] = ACTIONS(1185), - [anon_sym_PLUS_EQ] = ACTIONS(1183), - [anon_sym_DASH_EQ] = ACTIONS(1183), - [anon_sym_STAR_EQ] = ACTIONS(1183), - [anon_sym_SLASH_EQ] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1185), - [anon_sym_yield] = ACTIONS(1185), - [anon_sym_COLON] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1185), - [anon_sym_continue] = ACTIONS(1185), - [anon_sym_defer] = ACTIONS(1185), - [anon_sym_errdefer] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1185), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_for] = ACTIONS(1185), - [anon_sym_match] = ACTIONS(1185), - [anon_sym_DOT_DOT] = ACTIONS(1185), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1183), - [anon_sym_orelse] = ACTIONS(1185), - [anon_sym_catch] = ACTIONS(1185), - [anon_sym_or] = ACTIONS(1185), - [anon_sym_and] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1183), - [anon_sym_BANG_EQ] = ACTIONS(1183), - [anon_sym_LT] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1183), - [anon_sym_GT] = ACTIONS(1185), - [anon_sym_GT_EQ] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_SLASH] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1183), - [anon_sym_try] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1183), - [anon_sym_true] = ACTIONS(1185), - [anon_sym_false] = ACTIONS(1185), - [sym_none] = ACTIONS(1185), - [sym_undefined] = ACTIONS(1185), - [sym_sink] = ACTIONS(1185), - [sym_integer] = ACTIONS(1185), - [sym_float] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [sym_multiline_string] = ACTIONS(1183), - [sym_character] = ACTIONS(1183), + [ts_builtin_sym_end] = ACTIONS(1185), + [sym_identifier] = ACTIONS(1187), + [anon_sym_import] = 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(1185), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym_RBRACK] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1187), + [anon_sym_anyopaque] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_int] = 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_return] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1187), + [anon_sym_COLON] = ACTIONS(1185), + [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_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_PLUS] = ACTIONS(1187), + [anon_sym_SLASH] = ACTIONS(1187), + [anon_sym_AMP] = 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(1183), + [sym__newline] = ACTIONS(1185), }, [STATE(465)] = { - [ts_builtin_sym_end] = ACTIONS(1187), - [sym_identifier] = ACTIONS(1189), - [anon_sym_import] = ACTIONS(1189), - [anon_sym_func] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1189), - [anon_sym_EQ] = ACTIONS(1189), - [anon_sym_struct] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1187), - [anon_sym_RPAREN] = ACTIONS(1187), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_COMMA] = ACTIONS(1187), - [anon_sym_RBRACE] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_DOLLAR] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_QMARK] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_SEMI] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(1187), - [anon_sym_void] = ACTIONS(1189), - [anon_sym_anyopaque] = ACTIONS(1189), - [anon_sym_bool] = ACTIONS(1189), - [anon_sym_int] = ACTIONS(1189), - [anon_sym_float] = ACTIONS(1189), - [anon_sym_range] = ACTIONS(1189), - [anon_sym_i8] = ACTIONS(1189), - [anon_sym_i16] = ACTIONS(1189), - [anon_sym_i32] = ACTIONS(1189), - [anon_sym_i64] = ACTIONS(1189), - [anon_sym_u8] = ACTIONS(1189), - [anon_sym_u16] = ACTIONS(1189), - [anon_sym_u32] = ACTIONS(1189), - [anon_sym_u64] = ACTIONS(1189), - [anon_sym_isize] = ACTIONS(1189), - [anon_sym_usize] = ACTIONS(1189), - [anon_sym_f32] = ACTIONS(1189), - [anon_sym_f64] = ACTIONS(1189), - [anon_sym_c_char] = ACTIONS(1189), - [anon_sym_c_schar] = ACTIONS(1189), - [anon_sym_c_uchar] = ACTIONS(1189), - [anon_sym_c_short] = ACTIONS(1189), - [anon_sym_c_ushort] = ACTIONS(1189), - [anon_sym_c_int] = ACTIONS(1189), - [anon_sym_c_uint] = ACTIONS(1189), - [anon_sym_c_long] = ACTIONS(1189), - [anon_sym_c_ulong] = ACTIONS(1189), - [anon_sym_c_longlong] = ACTIONS(1189), - [anon_sym_c_ulonglong] = ACTIONS(1189), - [anon_sym_c_float] = ACTIONS(1189), - [anon_sym_c_double] = ACTIONS(1189), - [anon_sym_c_longdouble] = ACTIONS(1189), - [anon_sym_PLUS_EQ] = ACTIONS(1187), - [anon_sym_DASH_EQ] = ACTIONS(1187), - [anon_sym_STAR_EQ] = ACTIONS(1187), - [anon_sym_SLASH_EQ] = ACTIONS(1187), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_yield] = ACTIONS(1189), - [anon_sym_COLON] = ACTIONS(1187), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_defer] = ACTIONS(1189), - [anon_sym_errdefer] = ACTIONS(1189), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_else] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_match] = ACTIONS(1189), - [anon_sym_DOT_DOT] = ACTIONS(1189), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1187), - [anon_sym_orelse] = ACTIONS(1189), - [anon_sym_catch] = ACTIONS(1189), - [anon_sym_or] = ACTIONS(1189), - [anon_sym_and] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1189), - [anon_sym_GT_EQ] = ACTIONS(1187), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_SLASH] = ACTIONS(1189), - [anon_sym_AMP] = ACTIONS(1187), - [anon_sym_try] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_CARET] = ACTIONS(1187), - [anon_sym_true] = ACTIONS(1189), - [anon_sym_false] = ACTIONS(1189), - [sym_none] = ACTIONS(1189), - [sym_undefined] = ACTIONS(1189), - [sym_sink] = ACTIONS(1189), - [sym_integer] = ACTIONS(1189), - [sym_float] = ACTIONS(1187), - [anon_sym_DQUOTE] = ACTIONS(1187), - [sym_multiline_string] = ACTIONS(1187), - [sym_character] = ACTIONS(1187), + [ts_builtin_sym_end] = ACTIONS(700), + [sym_identifier] = ACTIONS(698), + [anon_sym_import] = ACTIONS(698), + [anon_sym_func] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_COMMA] = ACTIONS(700), + [anon_sym_RBRACE] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(700), + [anon_sym_RBRACK] = ACTIONS(700), + [anon_sym_void] = ACTIONS(698), + [anon_sym_anyopaque] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_int] = ACTIONS(698), + [anon_sym_float] = ACTIONS(698), + [anon_sym_range] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_c_char] = ACTIONS(698), + [anon_sym_c_schar] = ACTIONS(698), + [anon_sym_c_uchar] = ACTIONS(698), + [anon_sym_c_short] = ACTIONS(698), + [anon_sym_c_ushort] = ACTIONS(698), + [anon_sym_c_int] = ACTIONS(698), + [anon_sym_c_uint] = ACTIONS(698), + [anon_sym_c_long] = ACTIONS(698), + [anon_sym_c_ulong] = ACTIONS(698), + [anon_sym_c_longlong] = ACTIONS(698), + [anon_sym_c_ulonglong] = ACTIONS(698), + [anon_sym_c_float] = ACTIONS(698), + [anon_sym_c_double] = ACTIONS(698), + [anon_sym_c_longdouble] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(700), + [anon_sym_DASH_EQ] = ACTIONS(700), + [anon_sym_STAR_EQ] = ACTIONS(700), + [anon_sym_SLASH_EQ] = ACTIONS(700), + [anon_sym_return] = ACTIONS(698), + [anon_sym_yield] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_break] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_defer] = ACTIONS(698), + [anon_sym_errdefer] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_else] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_EQ] = ACTIONS(700), + [anon_sym_orelse] = ACTIONS(698), + [anon_sym_catch] = ACTIONS(698), + [anon_sym_or] = ACTIONS(698), + [anon_sym_and] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(700), + [anon_sym_BANG_EQ] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_LT_EQ] = ACTIONS(700), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_try] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [sym_none] = ACTIONS(698), + [sym_undefined] = ACTIONS(698), + [sym_sink] = ACTIONS(698), + [sym_integer] = ACTIONS(698), + [sym_float] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(700), + [sym_multiline_string] = ACTIONS(700), + [sym_character] = ACTIONS(700), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1187), + [sym__newline] = ACTIONS(700), }, [STATE(466)] = { - [ts_builtin_sym_end] = ACTIONS(1191), - [sym_identifier] = ACTIONS(1193), - [anon_sym_import] = ACTIONS(1193), - [anon_sym_func] = ACTIONS(1193), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_struct] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1191), - [anon_sym_RPAREN] = ACTIONS(1191), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_COMMA] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1191), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_QMARK] = ACTIONS(1191), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1191), - [anon_sym_SEMI] = ACTIONS(1191), - [anon_sym_RBRACK] = ACTIONS(1191), - [anon_sym_void] = ACTIONS(1193), - [anon_sym_anyopaque] = ACTIONS(1193), - [anon_sym_bool] = ACTIONS(1193), - [anon_sym_int] = ACTIONS(1193), - [anon_sym_float] = ACTIONS(1193), - [anon_sym_range] = ACTIONS(1193), - [anon_sym_i8] = ACTIONS(1193), - [anon_sym_i16] = ACTIONS(1193), - [anon_sym_i32] = ACTIONS(1193), - [anon_sym_i64] = ACTIONS(1193), - [anon_sym_u8] = ACTIONS(1193), - [anon_sym_u16] = ACTIONS(1193), - [anon_sym_u32] = ACTIONS(1193), - [anon_sym_u64] = ACTIONS(1193), - [anon_sym_isize] = ACTIONS(1193), - [anon_sym_usize] = ACTIONS(1193), - [anon_sym_f32] = ACTIONS(1193), - [anon_sym_f64] = ACTIONS(1193), - [anon_sym_c_char] = ACTIONS(1193), - [anon_sym_c_schar] = ACTIONS(1193), - [anon_sym_c_uchar] = ACTIONS(1193), - [anon_sym_c_short] = ACTIONS(1193), - [anon_sym_c_ushort] = ACTIONS(1193), - [anon_sym_c_int] = ACTIONS(1193), - [anon_sym_c_uint] = ACTIONS(1193), - [anon_sym_c_long] = ACTIONS(1193), - [anon_sym_c_ulong] = ACTIONS(1193), - [anon_sym_c_longlong] = ACTIONS(1193), - [anon_sym_c_ulonglong] = ACTIONS(1193), - [anon_sym_c_float] = ACTIONS(1193), - [anon_sym_c_double] = ACTIONS(1193), - [anon_sym_c_longdouble] = ACTIONS(1193), - [anon_sym_PLUS_EQ] = ACTIONS(1191), - [anon_sym_DASH_EQ] = ACTIONS(1191), - [anon_sym_STAR_EQ] = ACTIONS(1191), - [anon_sym_SLASH_EQ] = ACTIONS(1191), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_yield] = ACTIONS(1193), - [anon_sym_COLON] = ACTIONS(1191), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_defer] = ACTIONS(1193), - [anon_sym_errdefer] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_else] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1193), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1191), - [anon_sym_orelse] = ACTIONS(1193), - [anon_sym_catch] = ACTIONS(1193), - [anon_sym_or] = ACTIONS(1193), - [anon_sym_and] = ACTIONS(1193), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1191), - [anon_sym_LT] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_AMP] = ACTIONS(1191), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1191), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [sym_none] = ACTIONS(1193), - [sym_undefined] = ACTIONS(1193), - [sym_sink] = ACTIONS(1193), - [sym_integer] = ACTIONS(1193), - [sym_float] = ACTIONS(1191), - [anon_sym_DQUOTE] = ACTIONS(1191), - [sym_multiline_string] = ACTIONS(1191), - [sym_character] = ACTIONS(1191), + [ts_builtin_sym_end] = ACTIONS(754), + [sym_identifier] = ACTIONS(752), + [anon_sym_import] = ACTIONS(752), + [anon_sym_func] = ACTIONS(752), + [anon_sym_BANG] = ACTIONS(752), + [anon_sym_EQ] = ACTIONS(752), + [anon_sym_struct] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(754), + [anon_sym_RPAREN] = ACTIONS(754), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_COMMA] = ACTIONS(754), + [anon_sym_RBRACE] = ACTIONS(754), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(754), + [anon_sym_PIPE] = ACTIONS(754), + [anon_sym_QMARK] = ACTIONS(754), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(754), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_RBRACK] = ACTIONS(754), + [anon_sym_void] = ACTIONS(752), + [anon_sym_anyopaque] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_int] = ACTIONS(752), + [anon_sym_float] = ACTIONS(752), + [anon_sym_range] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_c_char] = ACTIONS(752), + [anon_sym_c_schar] = ACTIONS(752), + [anon_sym_c_uchar] = ACTIONS(752), + [anon_sym_c_short] = ACTIONS(752), + [anon_sym_c_ushort] = ACTIONS(752), + [anon_sym_c_int] = ACTIONS(752), + [anon_sym_c_uint] = ACTIONS(752), + [anon_sym_c_long] = ACTIONS(752), + [anon_sym_c_ulong] = ACTIONS(752), + [anon_sym_c_longlong] = ACTIONS(752), + [anon_sym_c_ulonglong] = ACTIONS(752), + [anon_sym_c_float] = ACTIONS(752), + [anon_sym_c_double] = ACTIONS(752), + [anon_sym_c_longdouble] = ACTIONS(752), + [anon_sym_PLUS_EQ] = ACTIONS(754), + [anon_sym_DASH_EQ] = ACTIONS(754), + [anon_sym_STAR_EQ] = ACTIONS(754), + [anon_sym_SLASH_EQ] = ACTIONS(754), + [anon_sym_return] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(754), + [anon_sym_break] = ACTIONS(752), + [anon_sym_continue] = ACTIONS(752), + [anon_sym_defer] = ACTIONS(752), + [anon_sym_errdefer] = ACTIONS(752), + [anon_sym_if] = ACTIONS(752), + [anon_sym_else] = ACTIONS(752), + [anon_sym_while] = ACTIONS(752), + [anon_sym_for] = ACTIONS(752), + [anon_sym_match] = ACTIONS(752), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(754), + [anon_sym_orelse] = ACTIONS(752), + [anon_sym_catch] = ACTIONS(752), + [anon_sym_or] = ACTIONS(752), + [anon_sym_and] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(754), + [anon_sym_BANG_EQ] = ACTIONS(754), + [anon_sym_LT] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(754), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_GT_EQ] = ACTIONS(754), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_AMP] = ACTIONS(754), + [anon_sym_try] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(754), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [sym_none] = ACTIONS(752), + [sym_undefined] = ACTIONS(752), + [sym_sink] = ACTIONS(752), + [sym_integer] = ACTIONS(752), + [sym_float] = ACTIONS(754), + [anon_sym_DQUOTE] = ACTIONS(754), + [sym_multiline_string] = ACTIONS(754), + [sym_character] = ACTIONS(754), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1191), + [sym__newline] = ACTIONS(754), }, [STATE(467)] = { - [ts_builtin_sym_end] = ACTIONS(855), - [sym_identifier] = ACTIONS(850), - [anon_sym_import] = ACTIONS(850), - [anon_sym_func] = ACTIONS(850), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(850), - [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(850), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_QMARK] = ACTIONS(855), - [anon_sym_STAR] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(855), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_RBRACK] = ACTIONS(855), - [anon_sym_void] = ACTIONS(850), - [anon_sym_anyopaque] = ACTIONS(850), - [anon_sym_bool] = ACTIONS(850), - [anon_sym_int] = ACTIONS(850), - [anon_sym_float] = ACTIONS(850), - [anon_sym_range] = ACTIONS(850), - [anon_sym_i8] = ACTIONS(850), - [anon_sym_i16] = ACTIONS(850), - [anon_sym_i32] = ACTIONS(850), - [anon_sym_i64] = ACTIONS(850), - [anon_sym_u8] = ACTIONS(850), - [anon_sym_u16] = ACTIONS(850), - [anon_sym_u32] = ACTIONS(850), - [anon_sym_u64] = ACTIONS(850), - [anon_sym_isize] = ACTIONS(850), - [anon_sym_usize] = ACTIONS(850), - [anon_sym_f32] = ACTIONS(850), - [anon_sym_f64] = ACTIONS(850), - [anon_sym_c_char] = ACTIONS(850), - [anon_sym_c_schar] = ACTIONS(850), - [anon_sym_c_uchar] = ACTIONS(850), - [anon_sym_c_short] = ACTIONS(850), - [anon_sym_c_ushort] = ACTIONS(850), - [anon_sym_c_int] = ACTIONS(850), - [anon_sym_c_uint] = ACTIONS(850), - [anon_sym_c_long] = ACTIONS(850), - [anon_sym_c_ulong] = ACTIONS(850), - [anon_sym_c_longlong] = ACTIONS(850), - [anon_sym_c_ulonglong] = ACTIONS(850), - [anon_sym_c_float] = ACTIONS(850), - [anon_sym_c_double] = ACTIONS(850), - [anon_sym_c_longdouble] = ACTIONS(850), - [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(850), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_defer] = ACTIONS(850), - [anon_sym_errdefer] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_else] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_match] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_AMP] = ACTIONS(855), - [anon_sym_try] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(855), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [sym_none] = ACTIONS(850), - [sym_undefined] = ACTIONS(850), - [sym_sink] = ACTIONS(850), - [sym_integer] = ACTIONS(850), - [sym_float] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [sym_multiline_string] = ACTIONS(855), - [sym_character] = ACTIONS(855), + [ts_builtin_sym_end] = ACTIONS(1189), + [sym_identifier] = ACTIONS(1191), + [anon_sym_import] = 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(1189), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym_RBRACK] = ACTIONS(1189), + [anon_sym_void] = ACTIONS(1191), + [anon_sym_anyopaque] = ACTIONS(1191), + [anon_sym_bool] = ACTIONS(1191), + [anon_sym_int] = 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_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_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_PLUS] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1191), + [anon_sym_AMP] = 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(855), + [sym__newline] = ACTIONS(1189), }, [STATE(468)] = { - [ts_builtin_sym_end] = ACTIONS(1195), - [sym_identifier] = ACTIONS(1197), - [anon_sym_import] = ACTIONS(1197), - [anon_sym_func] = ACTIONS(1197), - [anon_sym_BANG] = ACTIONS(1197), - [anon_sym_EQ] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_LPAREN] = ACTIONS(1195), - [anon_sym_RPAREN] = ACTIONS(1195), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_COMMA] = ACTIONS(1195), - [anon_sym_RBRACE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_DOLLAR] = ACTIONS(1195), - [anon_sym_PIPE] = ACTIONS(1195), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_STAR] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_RBRACK] = ACTIONS(1195), - [anon_sym_void] = ACTIONS(1197), - [anon_sym_anyopaque] = ACTIONS(1197), - [anon_sym_bool] = ACTIONS(1197), - [anon_sym_int] = ACTIONS(1197), - [anon_sym_float] = ACTIONS(1197), - [anon_sym_range] = ACTIONS(1197), - [anon_sym_i8] = ACTIONS(1197), - [anon_sym_i16] = ACTIONS(1197), - [anon_sym_i32] = ACTIONS(1197), - [anon_sym_i64] = ACTIONS(1197), - [anon_sym_u8] = ACTIONS(1197), - [anon_sym_u16] = ACTIONS(1197), - [anon_sym_u32] = ACTIONS(1197), - [anon_sym_u64] = ACTIONS(1197), - [anon_sym_isize] = ACTIONS(1197), - [anon_sym_usize] = ACTIONS(1197), - [anon_sym_f32] = ACTIONS(1197), - [anon_sym_f64] = ACTIONS(1197), - [anon_sym_c_char] = ACTIONS(1197), - [anon_sym_c_schar] = ACTIONS(1197), - [anon_sym_c_uchar] = ACTIONS(1197), - [anon_sym_c_short] = ACTIONS(1197), - [anon_sym_c_ushort] = ACTIONS(1197), - [anon_sym_c_int] = ACTIONS(1197), - [anon_sym_c_uint] = ACTIONS(1197), - [anon_sym_c_long] = ACTIONS(1197), - [anon_sym_c_ulong] = ACTIONS(1197), - [anon_sym_c_longlong] = ACTIONS(1197), - [anon_sym_c_ulonglong] = ACTIONS(1197), - [anon_sym_c_float] = ACTIONS(1197), - [anon_sym_c_double] = ACTIONS(1197), - [anon_sym_c_longdouble] = ACTIONS(1197), - [anon_sym_PLUS_EQ] = ACTIONS(1195), - [anon_sym_DASH_EQ] = ACTIONS(1195), - [anon_sym_STAR_EQ] = ACTIONS(1195), - [anon_sym_SLASH_EQ] = ACTIONS(1195), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_yield] = ACTIONS(1197), - [anon_sym_COLON] = ACTIONS(1195), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_defer] = ACTIONS(1197), - [anon_sym_errdefer] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_match] = ACTIONS(1197), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1195), - [anon_sym_orelse] = ACTIONS(1197), - [anon_sym_catch] = ACTIONS(1197), - [anon_sym_or] = ACTIONS(1197), - [anon_sym_and] = ACTIONS(1197), - [anon_sym_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_LT_EQ] = ACTIONS(1195), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_try] = ACTIONS(1197), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_true] = ACTIONS(1197), - [anon_sym_false] = ACTIONS(1197), - [sym_none] = ACTIONS(1197), - [sym_undefined] = ACTIONS(1197), - [sym_sink] = ACTIONS(1197), - [sym_integer] = ACTIONS(1197), - [sym_float] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_multiline_string] = ACTIONS(1195), - [sym_character] = ACTIONS(1195), + [ts_builtin_sym_end] = ACTIONS(1193), + [sym_identifier] = ACTIONS(1195), + [anon_sym_import] = 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(1193), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_RBRACK] = ACTIONS(1193), + [anon_sym_void] = ACTIONS(1195), + [anon_sym_anyopaque] = ACTIONS(1195), + [anon_sym_bool] = ACTIONS(1195), + [anon_sym_int] = 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_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_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_PLUS] = ACTIONS(1195), + [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_AMP] = 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(1195), + [sym__newline] = ACTIONS(1193), }, [STATE(469)] = { - [ts_builtin_sym_end] = ACTIONS(1199), - [sym_identifier] = ACTIONS(1201), - [anon_sym_import] = ACTIONS(1201), - [anon_sym_func] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_RPAREN] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_COMMA] = ACTIONS(1199), - [anon_sym_RBRACE] = ACTIONS(1199), - [anon_sym_DASH] = ACTIONS(1201), - [anon_sym_DOLLAR] = ACTIONS(1199), - [anon_sym_PIPE] = ACTIONS(1199), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(1199), - [anon_sym_void] = ACTIONS(1201), - [anon_sym_anyopaque] = ACTIONS(1201), - [anon_sym_bool] = ACTIONS(1201), - [anon_sym_int] = ACTIONS(1201), - [anon_sym_float] = ACTIONS(1201), - [anon_sym_range] = ACTIONS(1201), - [anon_sym_i8] = ACTIONS(1201), - [anon_sym_i16] = ACTIONS(1201), - [anon_sym_i32] = ACTIONS(1201), - [anon_sym_i64] = ACTIONS(1201), - [anon_sym_u8] = ACTIONS(1201), - [anon_sym_u16] = ACTIONS(1201), - [anon_sym_u32] = ACTIONS(1201), - [anon_sym_u64] = ACTIONS(1201), - [anon_sym_isize] = ACTIONS(1201), - [anon_sym_usize] = ACTIONS(1201), - [anon_sym_f32] = ACTIONS(1201), - [anon_sym_f64] = ACTIONS(1201), - [anon_sym_c_char] = ACTIONS(1201), - [anon_sym_c_schar] = ACTIONS(1201), - [anon_sym_c_uchar] = ACTIONS(1201), - [anon_sym_c_short] = ACTIONS(1201), - [anon_sym_c_ushort] = ACTIONS(1201), - [anon_sym_c_int] = ACTIONS(1201), - [anon_sym_c_uint] = ACTIONS(1201), - [anon_sym_c_long] = ACTIONS(1201), - [anon_sym_c_ulong] = ACTIONS(1201), - [anon_sym_c_longlong] = ACTIONS(1201), - [anon_sym_c_ulonglong] = ACTIONS(1201), - [anon_sym_c_float] = ACTIONS(1201), - [anon_sym_c_double] = ACTIONS(1201), - [anon_sym_c_longdouble] = ACTIONS(1201), - [anon_sym_PLUS_EQ] = ACTIONS(1199), - [anon_sym_DASH_EQ] = ACTIONS(1199), - [anon_sym_STAR_EQ] = ACTIONS(1199), - [anon_sym_SLASH_EQ] = ACTIONS(1199), - [anon_sym_return] = ACTIONS(1201), - [anon_sym_yield] = ACTIONS(1201), - [anon_sym_COLON] = ACTIONS(1199), - [anon_sym_break] = ACTIONS(1201), - [anon_sym_continue] = ACTIONS(1201), - [anon_sym_defer] = ACTIONS(1201), - [anon_sym_errdefer] = ACTIONS(1201), - [anon_sym_if] = ACTIONS(1201), - [anon_sym_else] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(1201), - [anon_sym_for] = ACTIONS(1201), - [anon_sym_match] = ACTIONS(1201), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1199), - [anon_sym_orelse] = ACTIONS(1201), - [anon_sym_catch] = ACTIONS(1201), - [anon_sym_or] = ACTIONS(1201), - [anon_sym_and] = ACTIONS(1201), - [anon_sym_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_LT_EQ] = ACTIONS(1199), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_SLASH] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1199), - [anon_sym_try] = ACTIONS(1201), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_true] = ACTIONS(1201), - [anon_sym_false] = ACTIONS(1201), - [sym_none] = ACTIONS(1201), - [sym_undefined] = ACTIONS(1201), - [sym_sink] = ACTIONS(1201), - [sym_integer] = ACTIONS(1201), - [sym_float] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1199), - [sym_multiline_string] = ACTIONS(1199), - [sym_character] = ACTIONS(1199), + [ts_builtin_sym_end] = ACTIONS(610), + [sym_identifier] = ACTIONS(615), + [anon_sym_import] = 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(610), + [anon_sym_RPAREN] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_COMMA] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_DOLLAR] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(610), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_RBRACK] = ACTIONS(610), + [anon_sym_void] = ACTIONS(615), + [anon_sym_anyopaque] = ACTIONS(615), + [anon_sym_bool] = ACTIONS(615), + [anon_sym_int] = 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(610), + [anon_sym_DASH_EQ] = ACTIONS(610), + [anon_sym_STAR_EQ] = ACTIONS(610), + [anon_sym_SLASH_EQ] = ACTIONS(610), + [anon_sym_return] = ACTIONS(615), + [anon_sym_yield] = ACTIONS(615), + [anon_sym_COLON] = ACTIONS(610), + [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_for] = ACTIONS(615), + [anon_sym_match] = ACTIONS(615), + [anon_sym_DOT_DOT] = ACTIONS(615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(610), + [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(610), + [anon_sym_BANG_EQ] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_try] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(610), + [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(610), + [anon_sym_DQUOTE] = ACTIONS(610), + [sym_multiline_string] = ACTIONS(610), + [sym_character] = ACTIONS(610), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1199), + [sym__newline] = ACTIONS(610), }, [STATE(470)] = { - [ts_builtin_sym_end] = ACTIONS(1203), - [sym_identifier] = ACTIONS(1205), - [anon_sym_import] = ACTIONS(1205), - [anon_sym_func] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(1205), - [anon_sym_EQ] = ACTIONS(1205), - [anon_sym_struct] = ACTIONS(1205), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_RPAREN] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_COMMA] = ACTIONS(1203), - [anon_sym_RBRACE] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOLLAR] = ACTIONS(1203), - [anon_sym_PIPE] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1203), - [anon_sym_STAR] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1203), - [anon_sym_SEMI] = ACTIONS(1203), - [anon_sym_RBRACK] = ACTIONS(1203), - [anon_sym_void] = ACTIONS(1205), - [anon_sym_anyopaque] = ACTIONS(1205), - [anon_sym_bool] = ACTIONS(1205), - [anon_sym_int] = ACTIONS(1205), - [anon_sym_float] = ACTIONS(1205), - [anon_sym_range] = ACTIONS(1205), - [anon_sym_i8] = ACTIONS(1205), - [anon_sym_i16] = ACTIONS(1205), - [anon_sym_i32] = ACTIONS(1205), - [anon_sym_i64] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1205), - [anon_sym_u16] = ACTIONS(1205), - [anon_sym_u32] = ACTIONS(1205), - [anon_sym_u64] = ACTIONS(1205), - [anon_sym_isize] = ACTIONS(1205), - [anon_sym_usize] = ACTIONS(1205), - [anon_sym_f32] = ACTIONS(1205), - [anon_sym_f64] = ACTIONS(1205), - [anon_sym_c_char] = ACTIONS(1205), - [anon_sym_c_schar] = ACTIONS(1205), - [anon_sym_c_uchar] = ACTIONS(1205), - [anon_sym_c_short] = ACTIONS(1205), - [anon_sym_c_ushort] = ACTIONS(1205), - [anon_sym_c_int] = ACTIONS(1205), - [anon_sym_c_uint] = ACTIONS(1205), - [anon_sym_c_long] = ACTIONS(1205), - [anon_sym_c_ulong] = ACTIONS(1205), - [anon_sym_c_longlong] = ACTIONS(1205), - [anon_sym_c_ulonglong] = ACTIONS(1205), - [anon_sym_c_float] = ACTIONS(1205), - [anon_sym_c_double] = ACTIONS(1205), - [anon_sym_c_longdouble] = ACTIONS(1205), - [anon_sym_PLUS_EQ] = ACTIONS(1203), - [anon_sym_DASH_EQ] = ACTIONS(1203), - [anon_sym_STAR_EQ] = ACTIONS(1203), - [anon_sym_SLASH_EQ] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1205), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_COLON] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1205), - [anon_sym_continue] = ACTIONS(1205), - [anon_sym_defer] = ACTIONS(1205), - [anon_sym_errdefer] = ACTIONS(1205), - [anon_sym_if] = ACTIONS(1205), - [anon_sym_else] = ACTIONS(1205), - [anon_sym_while] = ACTIONS(1205), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_match] = ACTIONS(1205), - [anon_sym_DOT_DOT] = ACTIONS(1205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1203), - [anon_sym_orelse] = ACTIONS(1205), - [anon_sym_catch] = ACTIONS(1205), - [anon_sym_or] = ACTIONS(1205), - [anon_sym_and] = ACTIONS(1205), - [anon_sym_EQ_EQ] = ACTIONS(1203), - [anon_sym_BANG_EQ] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_LT_EQ] = ACTIONS(1203), - [anon_sym_GT] = ACTIONS(1205), - [anon_sym_GT_EQ] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1205), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_try] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_CARET] = ACTIONS(1203), - [anon_sym_true] = ACTIONS(1205), - [anon_sym_false] = ACTIONS(1205), - [sym_none] = ACTIONS(1205), - [sym_undefined] = ACTIONS(1205), - [sym_sink] = ACTIONS(1205), - [sym_integer] = ACTIONS(1205), - [sym_float] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1203), - [sym_multiline_string] = ACTIONS(1203), - [sym_character] = ACTIONS(1203), + [ts_builtin_sym_end] = ACTIONS(1197), + [sym_identifier] = ACTIONS(1199), + [anon_sym_import] = 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(1197), + [anon_sym_QMARK] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_LBRACK] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym_RBRACK] = ACTIONS(1197), + [anon_sym_void] = ACTIONS(1199), + [anon_sym_anyopaque] = ACTIONS(1199), + [anon_sym_bool] = ACTIONS(1199), + [anon_sym_int] = 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_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_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_PLUS] = ACTIONS(1199), + [anon_sym_SLASH] = ACTIONS(1199), + [anon_sym_AMP] = 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(1203), + [sym__newline] = ACTIONS(1197), }, [STATE(471)] = { - [ts_builtin_sym_end] = ACTIONS(1207), - [sym_identifier] = ACTIONS(1209), - [anon_sym_import] = ACTIONS(1209), - [anon_sym_func] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_EQ] = ACTIONS(1209), - [anon_sym_struct] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_RBRACE] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_RBRACK] = ACTIONS(1207), - [anon_sym_void] = ACTIONS(1209), - [anon_sym_anyopaque] = ACTIONS(1209), - [anon_sym_bool] = ACTIONS(1209), - [anon_sym_int] = ACTIONS(1209), - [anon_sym_float] = ACTIONS(1209), - [anon_sym_range] = ACTIONS(1209), - [anon_sym_i8] = ACTIONS(1209), - [anon_sym_i16] = ACTIONS(1209), - [anon_sym_i32] = ACTIONS(1209), - [anon_sym_i64] = ACTIONS(1209), - [anon_sym_u8] = ACTIONS(1209), - [anon_sym_u16] = ACTIONS(1209), - [anon_sym_u32] = ACTIONS(1209), - [anon_sym_u64] = ACTIONS(1209), - [anon_sym_isize] = ACTIONS(1209), - [anon_sym_usize] = ACTIONS(1209), - [anon_sym_f32] = ACTIONS(1209), - [anon_sym_f64] = ACTIONS(1209), - [anon_sym_c_char] = ACTIONS(1209), - [anon_sym_c_schar] = ACTIONS(1209), - [anon_sym_c_uchar] = ACTIONS(1209), - [anon_sym_c_short] = ACTIONS(1209), - [anon_sym_c_ushort] = ACTIONS(1209), - [anon_sym_c_int] = ACTIONS(1209), - [anon_sym_c_uint] = ACTIONS(1209), - [anon_sym_c_long] = ACTIONS(1209), - [anon_sym_c_ulong] = ACTIONS(1209), - [anon_sym_c_longlong] = ACTIONS(1209), - [anon_sym_c_ulonglong] = ACTIONS(1209), - [anon_sym_c_float] = ACTIONS(1209), - [anon_sym_c_double] = ACTIONS(1209), - [anon_sym_c_longdouble] = ACTIONS(1209), - [anon_sym_PLUS_EQ] = ACTIONS(1207), - [anon_sym_DASH_EQ] = ACTIONS(1207), - [anon_sym_STAR_EQ] = ACTIONS(1207), - [anon_sym_SLASH_EQ] = ACTIONS(1207), - [anon_sym_return] = ACTIONS(1209), - [anon_sym_yield] = ACTIONS(1209), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_break] = ACTIONS(1209), - [anon_sym_continue] = ACTIONS(1209), - [anon_sym_defer] = ACTIONS(1209), - [anon_sym_errdefer] = ACTIONS(1209), - [anon_sym_if] = ACTIONS(1209), - [anon_sym_else] = ACTIONS(1209), - [anon_sym_while] = ACTIONS(1209), - [anon_sym_for] = ACTIONS(1209), - [anon_sym_match] = ACTIONS(1209), - [anon_sym_DOT_DOT] = ACTIONS(1209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1207), - [anon_sym_orelse] = ACTIONS(1209), - [anon_sym_catch] = ACTIONS(1209), - [anon_sym_or] = ACTIONS(1209), - [anon_sym_and] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1207), - [anon_sym_BANG_EQ] = ACTIONS(1207), - [anon_sym_LT] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1207), - [anon_sym_GT] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1209), - [anon_sym_SLASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1207), - [anon_sym_try] = ACTIONS(1209), - [anon_sym_DOT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1207), - [anon_sym_true] = ACTIONS(1209), - [anon_sym_false] = ACTIONS(1209), - [sym_none] = ACTIONS(1209), - [sym_undefined] = ACTIONS(1209), - [sym_sink] = ACTIONS(1209), - [sym_integer] = ACTIONS(1209), - [sym_float] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1207), - [sym_multiline_string] = ACTIONS(1207), - [sym_character] = ACTIONS(1207), + [ts_builtin_sym_end] = ACTIONS(1201), + [sym_identifier] = ACTIONS(1203), + [anon_sym_import] = 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(1201), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_RBRACK] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_anyopaque] = ACTIONS(1203), + [anon_sym_bool] = ACTIONS(1203), + [anon_sym_int] = 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_return] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(1201), + [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_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_PLUS] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1203), + [anon_sym_AMP] = 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(1207), + [sym__newline] = ACTIONS(1201), }, [STATE(472)] = { - [ts_builtin_sym_end] = ACTIONS(369), - [sym_identifier] = ACTIONS(374), - [anon_sym_import] = ACTIONS(374), - [anon_sym_func] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_struct] = ACTIONS(374), - [anon_sym_LPAREN] = ACTIONS(369), - [anon_sym_RPAREN] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(369), - [anon_sym_COMMA] = ACTIONS(369), - [anon_sym_RBRACE] = ACTIONS(369), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_DOLLAR] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(369), - [anon_sym_QMARK] = ACTIONS(369), - [anon_sym_STAR] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_SEMI] = ACTIONS(369), - [anon_sym_RBRACK] = ACTIONS(369), - [anon_sym_void] = ACTIONS(374), - [anon_sym_anyopaque] = ACTIONS(374), - [anon_sym_bool] = ACTIONS(374), - [anon_sym_int] = ACTIONS(374), - [anon_sym_float] = ACTIONS(374), - [anon_sym_range] = ACTIONS(374), - [anon_sym_i8] = ACTIONS(374), - [anon_sym_i16] = ACTIONS(374), - [anon_sym_i32] = ACTIONS(374), - [anon_sym_i64] = ACTIONS(374), - [anon_sym_u8] = ACTIONS(374), - [anon_sym_u16] = ACTIONS(374), - [anon_sym_u32] = ACTIONS(374), - [anon_sym_u64] = ACTIONS(374), - [anon_sym_isize] = ACTIONS(374), - [anon_sym_usize] = ACTIONS(374), - [anon_sym_f32] = ACTIONS(374), - [anon_sym_f64] = ACTIONS(374), - [anon_sym_c_char] = ACTIONS(374), - [anon_sym_c_schar] = ACTIONS(374), - [anon_sym_c_uchar] = ACTIONS(374), - [anon_sym_c_short] = ACTIONS(374), - [anon_sym_c_ushort] = ACTIONS(374), - [anon_sym_c_int] = ACTIONS(374), - [anon_sym_c_uint] = ACTIONS(374), - [anon_sym_c_long] = ACTIONS(374), - [anon_sym_c_ulong] = ACTIONS(374), - [anon_sym_c_longlong] = ACTIONS(374), - [anon_sym_c_ulonglong] = ACTIONS(374), - [anon_sym_c_float] = ACTIONS(374), - [anon_sym_c_double] = ACTIONS(374), - [anon_sym_c_longdouble] = ACTIONS(374), - [anon_sym_PLUS_EQ] = ACTIONS(369), - [anon_sym_DASH_EQ] = ACTIONS(369), - [anon_sym_STAR_EQ] = ACTIONS(369), - [anon_sym_SLASH_EQ] = ACTIONS(369), - [anon_sym_return] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(369), - [anon_sym_break] = ACTIONS(374), - [anon_sym_continue] = ACTIONS(374), - [anon_sym_defer] = ACTIONS(374), - [anon_sym_errdefer] = ACTIONS(374), - [anon_sym_if] = ACTIONS(374), - [anon_sym_else] = ACTIONS(374), - [anon_sym_while] = ACTIONS(374), - [anon_sym_for] = ACTIONS(374), - [anon_sym_match] = ACTIONS(374), - [anon_sym_DOT_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_orelse] = ACTIONS(374), - [anon_sym_catch] = ACTIONS(374), - [anon_sym_or] = ACTIONS(374), - [anon_sym_and] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(369), - [anon_sym_try] = ACTIONS(374), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(369), - [anon_sym_true] = ACTIONS(374), - [anon_sym_false] = ACTIONS(374), - [sym_none] = ACTIONS(374), - [sym_undefined] = ACTIONS(374), - [sym_sink] = ACTIONS(374), - [sym_integer] = ACTIONS(374), - [sym_float] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [sym_multiline_string] = ACTIONS(369), - [sym_character] = ACTIONS(369), + [ts_builtin_sym_end] = ACTIONS(1205), + [sym_identifier] = ACTIONS(1207), + [anon_sym_import] = 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(1205), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(1205), + [anon_sym_void] = ACTIONS(1207), + [anon_sym_anyopaque] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_int] = 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_return] = ACTIONS(1207), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_COLON] = ACTIONS(1205), + [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_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_PLUS] = ACTIONS(1207), + [anon_sym_SLASH] = ACTIONS(1207), + [anon_sym_AMP] = 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(369), + [sym__newline] = ACTIONS(1205), }, [STATE(473)] = { - [ts_builtin_sym_end] = ACTIONS(1211), - [sym_identifier] = ACTIONS(1213), - [anon_sym_import] = ACTIONS(1213), - [anon_sym_func] = ACTIONS(1213), - [anon_sym_BANG] = ACTIONS(1213), - [anon_sym_EQ] = ACTIONS(1213), - [anon_sym_struct] = ACTIONS(1213), - [anon_sym_LPAREN] = ACTIONS(1211), - [anon_sym_RPAREN] = ACTIONS(1211), - [anon_sym_LBRACE] = ACTIONS(1211), - [anon_sym_COMMA] = ACTIONS(1211), - [anon_sym_RBRACE] = ACTIONS(1211), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_DOLLAR] = ACTIONS(1211), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_STAR] = ACTIONS(1213), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_SEMI] = ACTIONS(1211), - [anon_sym_RBRACK] = ACTIONS(1211), - [anon_sym_void] = ACTIONS(1213), - [anon_sym_anyopaque] = ACTIONS(1213), - [anon_sym_bool] = ACTIONS(1213), - [anon_sym_int] = ACTIONS(1213), - [anon_sym_float] = ACTIONS(1213), - [anon_sym_range] = ACTIONS(1213), - [anon_sym_i8] = ACTIONS(1213), - [anon_sym_i16] = ACTIONS(1213), - [anon_sym_i32] = ACTIONS(1213), - [anon_sym_i64] = ACTIONS(1213), - [anon_sym_u8] = ACTIONS(1213), - [anon_sym_u16] = ACTIONS(1213), - [anon_sym_u32] = ACTIONS(1213), - [anon_sym_u64] = ACTIONS(1213), - [anon_sym_isize] = ACTIONS(1213), - [anon_sym_usize] = ACTIONS(1213), - [anon_sym_f32] = ACTIONS(1213), - [anon_sym_f64] = ACTIONS(1213), - [anon_sym_c_char] = ACTIONS(1213), - [anon_sym_c_schar] = ACTIONS(1213), - [anon_sym_c_uchar] = ACTIONS(1213), - [anon_sym_c_short] = ACTIONS(1213), - [anon_sym_c_ushort] = ACTIONS(1213), - [anon_sym_c_int] = ACTIONS(1213), - [anon_sym_c_uint] = ACTIONS(1213), - [anon_sym_c_long] = ACTIONS(1213), - [anon_sym_c_ulong] = ACTIONS(1213), - [anon_sym_c_longlong] = ACTIONS(1213), - [anon_sym_c_ulonglong] = ACTIONS(1213), - [anon_sym_c_float] = ACTIONS(1213), - [anon_sym_c_double] = ACTIONS(1213), - [anon_sym_c_longdouble] = ACTIONS(1213), - [anon_sym_PLUS_EQ] = ACTIONS(1211), - [anon_sym_DASH_EQ] = ACTIONS(1211), - [anon_sym_STAR_EQ] = ACTIONS(1211), - [anon_sym_SLASH_EQ] = ACTIONS(1211), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_yield] = ACTIONS(1213), - [anon_sym_COLON] = ACTIONS(1211), - [anon_sym_break] = ACTIONS(1213), - [anon_sym_continue] = ACTIONS(1213), - [anon_sym_defer] = ACTIONS(1213), - [anon_sym_errdefer] = ACTIONS(1213), - [anon_sym_if] = ACTIONS(1213), - [anon_sym_else] = ACTIONS(1213), - [anon_sym_while] = ACTIONS(1213), - [anon_sym_for] = ACTIONS(1213), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_DOT_DOT] = ACTIONS(1213), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1211), - [anon_sym_orelse] = ACTIONS(1213), - [anon_sym_catch] = ACTIONS(1213), - [anon_sym_or] = ACTIONS(1213), - [anon_sym_and] = ACTIONS(1213), - [anon_sym_EQ_EQ] = ACTIONS(1211), - [anon_sym_BANG_EQ] = ACTIONS(1211), - [anon_sym_LT] = ACTIONS(1213), - [anon_sym_LT_EQ] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1213), - [anon_sym_GT_EQ] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1213), - [anon_sym_SLASH] = ACTIONS(1213), - [anon_sym_AMP] = ACTIONS(1211), - [anon_sym_try] = ACTIONS(1213), - [anon_sym_DOT] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1211), - [anon_sym_true] = ACTIONS(1213), - [anon_sym_false] = ACTIONS(1213), - [sym_none] = ACTIONS(1213), - [sym_undefined] = ACTIONS(1213), - [sym_sink] = ACTIONS(1213), - [sym_integer] = ACTIONS(1213), - [sym_float] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(1211), - [sym_multiline_string] = ACTIONS(1211), - [sym_character] = ACTIONS(1211), + [ts_builtin_sym_end] = ACTIONS(1209), + [sym_identifier] = ACTIONS(1211), + [anon_sym_import] = 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(1209), + [anon_sym_QMARK] = ACTIONS(1209), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym_RBRACK] = ACTIONS(1209), + [anon_sym_void] = ACTIONS(1211), + [anon_sym_anyopaque] = ACTIONS(1211), + [anon_sym_bool] = ACTIONS(1211), + [anon_sym_int] = 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_return] = ACTIONS(1211), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1209), + [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_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_PLUS] = ACTIONS(1211), + [anon_sym_SLASH] = ACTIONS(1211), + [anon_sym_AMP] = 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(1211), + [sym__newline] = ACTIONS(1209), }, [STATE(474)] = { - [ts_builtin_sym_end] = ACTIONS(1215), - [sym_identifier] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(1217), - [anon_sym_func] = ACTIONS(1217), - [anon_sym_BANG] = ACTIONS(1217), - [anon_sym_EQ] = ACTIONS(1217), - [anon_sym_struct] = ACTIONS(1217), - [anon_sym_LPAREN] = ACTIONS(1215), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_COMMA] = ACTIONS(1215), - [anon_sym_RBRACE] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_DOLLAR] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_QMARK] = ACTIONS(1215), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1215), - [anon_sym_RBRACK] = ACTIONS(1215), - [anon_sym_void] = ACTIONS(1217), - [anon_sym_anyopaque] = ACTIONS(1217), - [anon_sym_bool] = ACTIONS(1217), - [anon_sym_int] = ACTIONS(1217), - [anon_sym_float] = ACTIONS(1217), - [anon_sym_range] = ACTIONS(1217), - [anon_sym_i8] = ACTIONS(1217), - [anon_sym_i16] = ACTIONS(1217), - [anon_sym_i32] = ACTIONS(1217), - [anon_sym_i64] = ACTIONS(1217), - [anon_sym_u8] = ACTIONS(1217), - [anon_sym_u16] = ACTIONS(1217), - [anon_sym_u32] = ACTIONS(1217), - [anon_sym_u64] = ACTIONS(1217), - [anon_sym_isize] = ACTIONS(1217), - [anon_sym_usize] = ACTIONS(1217), - [anon_sym_f32] = ACTIONS(1217), - [anon_sym_f64] = ACTIONS(1217), - [anon_sym_c_char] = ACTIONS(1217), - [anon_sym_c_schar] = ACTIONS(1217), - [anon_sym_c_uchar] = ACTIONS(1217), - [anon_sym_c_short] = ACTIONS(1217), - [anon_sym_c_ushort] = ACTIONS(1217), - [anon_sym_c_int] = ACTIONS(1217), - [anon_sym_c_uint] = ACTIONS(1217), - [anon_sym_c_long] = ACTIONS(1217), - [anon_sym_c_ulong] = ACTIONS(1217), - [anon_sym_c_longlong] = ACTIONS(1217), - [anon_sym_c_ulonglong] = ACTIONS(1217), - [anon_sym_c_float] = ACTIONS(1217), - [anon_sym_c_double] = ACTIONS(1217), - [anon_sym_c_longdouble] = ACTIONS(1217), - [anon_sym_PLUS_EQ] = ACTIONS(1215), - [anon_sym_DASH_EQ] = ACTIONS(1215), - [anon_sym_STAR_EQ] = ACTIONS(1215), - [anon_sym_SLASH_EQ] = ACTIONS(1215), - [anon_sym_return] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1217), - [anon_sym_COLON] = ACTIONS(1215), - [anon_sym_break] = ACTIONS(1217), - [anon_sym_continue] = ACTIONS(1217), - [anon_sym_defer] = ACTIONS(1217), - [anon_sym_errdefer] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1217), - [anon_sym_else] = ACTIONS(1217), - [anon_sym_while] = ACTIONS(1217), - [anon_sym_for] = ACTIONS(1217), - [anon_sym_match] = ACTIONS(1217), - [anon_sym_DOT_DOT] = ACTIONS(1217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1215), - [anon_sym_orelse] = ACTIONS(1217), - [anon_sym_catch] = ACTIONS(1217), - [anon_sym_or] = ACTIONS(1217), - [anon_sym_and] = ACTIONS(1217), - [anon_sym_EQ_EQ] = ACTIONS(1215), - [anon_sym_BANG_EQ] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(1217), - [anon_sym_LT_EQ] = ACTIONS(1215), - [anon_sym_GT] = ACTIONS(1217), - [anon_sym_GT_EQ] = ACTIONS(1215), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(1217), - [anon_sym_AMP] = ACTIONS(1215), - [anon_sym_try] = ACTIONS(1217), - [anon_sym_DOT] = ACTIONS(1217), - [anon_sym_CARET] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1217), - [anon_sym_false] = ACTIONS(1217), - [sym_none] = ACTIONS(1217), - [sym_undefined] = ACTIONS(1217), - [sym_sink] = ACTIONS(1217), - [sym_integer] = ACTIONS(1217), - [sym_float] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1215), - [sym_multiline_string] = ACTIONS(1215), - [sym_character] = ACTIONS(1215), + [ts_builtin_sym_end] = ACTIONS(1213), + [sym_identifier] = ACTIONS(1215), + [anon_sym_import] = 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(1213), + [anon_sym_QMARK] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_RBRACK] = ACTIONS(1213), + [anon_sym_void] = ACTIONS(1215), + [anon_sym_anyopaque] = ACTIONS(1215), + [anon_sym_bool] = ACTIONS(1215), + [anon_sym_int] = 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_return] = ACTIONS(1215), + [anon_sym_yield] = ACTIONS(1215), + [anon_sym_COLON] = ACTIONS(1213), + [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_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_PLUS] = ACTIONS(1215), + [anon_sym_SLASH] = ACTIONS(1215), + [anon_sym_AMP] = 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(1215), + [sym__newline] = ACTIONS(1213), }, [STATE(475)] = { - [ts_builtin_sym_end] = ACTIONS(1219), - [sym_identifier] = ACTIONS(1221), - [anon_sym_import] = ACTIONS(1221), - [anon_sym_func] = ACTIONS(1221), - [anon_sym_BANG] = ACTIONS(1221), - [anon_sym_EQ] = ACTIONS(1221), - [anon_sym_struct] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1219), - [anon_sym_RPAREN] = ACTIONS(1219), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_COMMA] = ACTIONS(1219), - [anon_sym_RBRACE] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_DOLLAR] = ACTIONS(1219), - [anon_sym_PIPE] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1219), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_SEMI] = ACTIONS(1219), - [anon_sym_RBRACK] = ACTIONS(1219), - [anon_sym_void] = ACTIONS(1221), - [anon_sym_anyopaque] = ACTIONS(1221), - [anon_sym_bool] = ACTIONS(1221), - [anon_sym_int] = ACTIONS(1221), - [anon_sym_float] = ACTIONS(1221), - [anon_sym_range] = ACTIONS(1221), - [anon_sym_i8] = ACTIONS(1221), - [anon_sym_i16] = ACTIONS(1221), - [anon_sym_i32] = ACTIONS(1221), - [anon_sym_i64] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1221), - [anon_sym_u16] = ACTIONS(1221), - [anon_sym_u32] = ACTIONS(1221), - [anon_sym_u64] = ACTIONS(1221), - [anon_sym_isize] = ACTIONS(1221), - [anon_sym_usize] = ACTIONS(1221), - [anon_sym_f32] = ACTIONS(1221), - [anon_sym_f64] = ACTIONS(1221), - [anon_sym_c_char] = ACTIONS(1221), - [anon_sym_c_schar] = ACTIONS(1221), - [anon_sym_c_uchar] = ACTIONS(1221), - [anon_sym_c_short] = ACTIONS(1221), - [anon_sym_c_ushort] = ACTIONS(1221), - [anon_sym_c_int] = ACTIONS(1221), - [anon_sym_c_uint] = ACTIONS(1221), - [anon_sym_c_long] = ACTIONS(1221), - [anon_sym_c_ulong] = ACTIONS(1221), - [anon_sym_c_longlong] = ACTIONS(1221), - [anon_sym_c_ulonglong] = ACTIONS(1221), - [anon_sym_c_float] = ACTIONS(1221), - [anon_sym_c_double] = ACTIONS(1221), - [anon_sym_c_longdouble] = ACTIONS(1221), - [anon_sym_PLUS_EQ] = ACTIONS(1219), - [anon_sym_DASH_EQ] = ACTIONS(1219), - [anon_sym_STAR_EQ] = ACTIONS(1219), - [anon_sym_SLASH_EQ] = ACTIONS(1219), - [anon_sym_return] = ACTIONS(1221), - [anon_sym_yield] = ACTIONS(1221), - [anon_sym_COLON] = ACTIONS(1219), - [anon_sym_break] = ACTIONS(1221), - [anon_sym_continue] = ACTIONS(1221), - [anon_sym_defer] = ACTIONS(1221), - [anon_sym_errdefer] = ACTIONS(1221), - [anon_sym_if] = ACTIONS(1221), - [anon_sym_else] = ACTIONS(1221), - [anon_sym_while] = ACTIONS(1221), - [anon_sym_for] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1221), - [anon_sym_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1219), - [anon_sym_orelse] = ACTIONS(1221), - [anon_sym_catch] = ACTIONS(1221), - [anon_sym_or] = ACTIONS(1221), - [anon_sym_and] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1219), - [anon_sym_BANG_EQ] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1219), - [anon_sym_GT] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1219), - [anon_sym_PLUS] = ACTIONS(1221), - [anon_sym_SLASH] = ACTIONS(1221), - [anon_sym_AMP] = ACTIONS(1219), - [anon_sym_try] = ACTIONS(1221), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1219), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [sym_none] = ACTIONS(1221), - [sym_undefined] = ACTIONS(1221), - [sym_sink] = ACTIONS(1221), - [sym_integer] = ACTIONS(1221), - [sym_float] = ACTIONS(1219), - [anon_sym_DQUOTE] = ACTIONS(1219), - [sym_multiline_string] = ACTIONS(1219), - [sym_character] = ACTIONS(1219), + [ts_builtin_sym_end] = ACTIONS(1217), + [sym_identifier] = ACTIONS(1219), + [anon_sym_import] = 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(1217), + [anon_sym_QMARK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym_RBRACK] = ACTIONS(1217), + [anon_sym_void] = ACTIONS(1219), + [anon_sym_anyopaque] = ACTIONS(1219), + [anon_sym_bool] = ACTIONS(1219), + [anon_sym_int] = 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_return] = ACTIONS(1219), + [anon_sym_yield] = ACTIONS(1219), + [anon_sym_COLON] = ACTIONS(1217), + [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_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_PLUS] = ACTIONS(1219), + [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_AMP] = 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(1219), + [sym__newline] = ACTIONS(1217), }, [STATE(476)] = { - [ts_builtin_sym_end] = ACTIONS(1223), - [sym_identifier] = ACTIONS(1225), - [anon_sym_import] = ACTIONS(1225), - [anon_sym_func] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1225), - [anon_sym_EQ] = ACTIONS(1225), - [anon_sym_struct] = ACTIONS(1225), - [anon_sym_LPAREN] = ACTIONS(1223), - [anon_sym_RPAREN] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_DOLLAR] = ACTIONS(1223), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(1225), - [anon_sym_LBRACK] = ACTIONS(1223), - [anon_sym_SEMI] = ACTIONS(1223), - [anon_sym_RBRACK] = ACTIONS(1223), - [anon_sym_void] = ACTIONS(1225), - [anon_sym_anyopaque] = ACTIONS(1225), - [anon_sym_bool] = ACTIONS(1225), - [anon_sym_int] = ACTIONS(1225), - [anon_sym_float] = ACTIONS(1225), - [anon_sym_range] = ACTIONS(1225), - [anon_sym_i8] = ACTIONS(1225), - [anon_sym_i16] = ACTIONS(1225), - [anon_sym_i32] = ACTIONS(1225), - [anon_sym_i64] = ACTIONS(1225), - [anon_sym_u8] = ACTIONS(1225), - [anon_sym_u16] = ACTIONS(1225), - [anon_sym_u32] = ACTIONS(1225), - [anon_sym_u64] = ACTIONS(1225), - [anon_sym_isize] = ACTIONS(1225), - [anon_sym_usize] = ACTIONS(1225), - [anon_sym_f32] = ACTIONS(1225), - [anon_sym_f64] = ACTIONS(1225), - [anon_sym_c_char] = ACTIONS(1225), - [anon_sym_c_schar] = ACTIONS(1225), - [anon_sym_c_uchar] = ACTIONS(1225), - [anon_sym_c_short] = ACTIONS(1225), - [anon_sym_c_ushort] = ACTIONS(1225), - [anon_sym_c_int] = ACTIONS(1225), - [anon_sym_c_uint] = ACTIONS(1225), - [anon_sym_c_long] = ACTIONS(1225), - [anon_sym_c_ulong] = ACTIONS(1225), - [anon_sym_c_longlong] = ACTIONS(1225), - [anon_sym_c_ulonglong] = ACTIONS(1225), - [anon_sym_c_float] = ACTIONS(1225), - [anon_sym_c_double] = ACTIONS(1225), - [anon_sym_c_longdouble] = ACTIONS(1225), - [anon_sym_PLUS_EQ] = ACTIONS(1223), - [anon_sym_DASH_EQ] = ACTIONS(1223), - [anon_sym_STAR_EQ] = ACTIONS(1223), - [anon_sym_SLASH_EQ] = ACTIONS(1223), - [anon_sym_return] = ACTIONS(1225), - [anon_sym_yield] = ACTIONS(1225), - [anon_sym_COLON] = ACTIONS(1223), - [anon_sym_break] = ACTIONS(1225), - [anon_sym_continue] = ACTIONS(1225), - [anon_sym_defer] = ACTIONS(1225), - [anon_sym_errdefer] = ACTIONS(1225), - [anon_sym_if] = ACTIONS(1225), - [anon_sym_else] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1225), - [anon_sym_for] = ACTIONS(1225), - [anon_sym_match] = ACTIONS(1225), - [anon_sym_DOT_DOT] = ACTIONS(1225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_orelse] = ACTIONS(1225), - [anon_sym_catch] = ACTIONS(1225), - [anon_sym_or] = ACTIONS(1225), - [anon_sym_and] = ACTIONS(1225), - [anon_sym_EQ_EQ] = ACTIONS(1223), - [anon_sym_BANG_EQ] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1225), - [anon_sym_LT_EQ] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1225), - [anon_sym_GT_EQ] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_SLASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_try] = ACTIONS(1225), - [anon_sym_DOT] = ACTIONS(1225), - [anon_sym_CARET] = ACTIONS(1223), - [anon_sym_true] = ACTIONS(1225), - [anon_sym_false] = ACTIONS(1225), - [sym_none] = ACTIONS(1225), - [sym_undefined] = ACTIONS(1225), - [sym_sink] = ACTIONS(1225), - [sym_integer] = ACTIONS(1225), - [sym_float] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(1223), - [sym_multiline_string] = ACTIONS(1223), - [sym_character] = ACTIONS(1223), + [ts_builtin_sym_end] = ACTIONS(1221), + [sym_identifier] = ACTIONS(1223), + [anon_sym_import] = 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(1221), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym_RBRACK] = ACTIONS(1221), + [anon_sym_void] = ACTIONS(1223), + [anon_sym_anyopaque] = ACTIONS(1223), + [anon_sym_bool] = ACTIONS(1223), + [anon_sym_int] = 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_return] = ACTIONS(1223), + [anon_sym_yield] = ACTIONS(1223), + [anon_sym_COLON] = ACTIONS(1221), + [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_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_PLUS] = ACTIONS(1223), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_AMP] = 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(1223), + [sym__newline] = ACTIONS(1221), }, [STATE(477)] = { - [ts_builtin_sym_end] = ACTIONS(1227), - [sym_identifier] = ACTIONS(1229), - [anon_sym_import] = ACTIONS(1229), - [anon_sym_func] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_EQ] = ACTIONS(1229), - [anon_sym_struct] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1227), - [anon_sym_RPAREN] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_COMMA] = ACTIONS(1227), - [anon_sym_RBRACE] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_DOLLAR] = ACTIONS(1227), - [anon_sym_PIPE] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym_RBRACK] = ACTIONS(1227), - [anon_sym_void] = ACTIONS(1229), - [anon_sym_anyopaque] = ACTIONS(1229), - [anon_sym_bool] = ACTIONS(1229), - [anon_sym_int] = ACTIONS(1229), - [anon_sym_float] = ACTIONS(1229), - [anon_sym_range] = ACTIONS(1229), - [anon_sym_i8] = ACTIONS(1229), - [anon_sym_i16] = ACTIONS(1229), - [anon_sym_i32] = ACTIONS(1229), - [anon_sym_i64] = ACTIONS(1229), - [anon_sym_u8] = ACTIONS(1229), - [anon_sym_u16] = ACTIONS(1229), - [anon_sym_u32] = ACTIONS(1229), - [anon_sym_u64] = ACTIONS(1229), - [anon_sym_isize] = ACTIONS(1229), - [anon_sym_usize] = ACTIONS(1229), - [anon_sym_f32] = ACTIONS(1229), - [anon_sym_f64] = ACTIONS(1229), - [anon_sym_c_char] = ACTIONS(1229), - [anon_sym_c_schar] = ACTIONS(1229), - [anon_sym_c_uchar] = ACTIONS(1229), - [anon_sym_c_short] = ACTIONS(1229), - [anon_sym_c_ushort] = ACTIONS(1229), - [anon_sym_c_int] = ACTIONS(1229), - [anon_sym_c_uint] = ACTIONS(1229), - [anon_sym_c_long] = ACTIONS(1229), - [anon_sym_c_ulong] = ACTIONS(1229), - [anon_sym_c_longlong] = ACTIONS(1229), - [anon_sym_c_ulonglong] = ACTIONS(1229), - [anon_sym_c_float] = ACTIONS(1229), - [anon_sym_c_double] = ACTIONS(1229), - [anon_sym_c_longdouble] = ACTIONS(1229), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1229), - [anon_sym_yield] = ACTIONS(1229), - [anon_sym_COLON] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1229), - [anon_sym_continue] = ACTIONS(1229), - [anon_sym_defer] = ACTIONS(1229), - [anon_sym_errdefer] = ACTIONS(1229), - [anon_sym_if] = ACTIONS(1229), - [anon_sym_else] = ACTIONS(1229), - [anon_sym_while] = ACTIONS(1229), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_match] = ACTIONS(1229), - [anon_sym_DOT_DOT] = ACTIONS(1229), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1227), - [anon_sym_orelse] = ACTIONS(1229), - [anon_sym_catch] = ACTIONS(1229), - [anon_sym_or] = ACTIONS(1229), - [anon_sym_and] = ACTIONS(1229), - [anon_sym_EQ_EQ] = ACTIONS(1227), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_SLASH] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_try] = ACTIONS(1229), - [anon_sym_DOT] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_true] = ACTIONS(1229), - [anon_sym_false] = ACTIONS(1229), - [sym_none] = ACTIONS(1229), - [sym_undefined] = ACTIONS(1229), - [sym_sink] = ACTIONS(1229), - [sym_integer] = ACTIONS(1229), - [sym_float] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [sym_multiline_string] = ACTIONS(1227), - [sym_character] = ACTIONS(1227), + [ts_builtin_sym_end] = ACTIONS(1225), + [sym_identifier] = ACTIONS(1227), + [anon_sym_import] = 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(1225), + [anon_sym_QMARK] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_RBRACK] = ACTIONS(1225), + [anon_sym_void] = ACTIONS(1227), + [anon_sym_anyopaque] = ACTIONS(1227), + [anon_sym_bool] = ACTIONS(1227), + [anon_sym_int] = 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_return] = ACTIONS(1227), + [anon_sym_yield] = ACTIONS(1227), + [anon_sym_COLON] = ACTIONS(1225), + [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_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_PLUS] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_AMP] = 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(1227), + [sym__newline] = ACTIONS(1225), }, [STATE(478)] = { - [ts_builtin_sym_end] = ACTIONS(1231), - [sym_identifier] = ACTIONS(1233), - [anon_sym_import] = ACTIONS(1233), - [anon_sym_func] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(1233), - [anon_sym_EQ] = ACTIONS(1233), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_RPAREN] = ACTIONS(1231), - [anon_sym_LBRACE] = ACTIONS(1231), - [anon_sym_COMMA] = ACTIONS(1231), - [anon_sym_RBRACE] = ACTIONS(1231), - [anon_sym_DASH] = ACTIONS(1233), - [anon_sym_DOLLAR] = ACTIONS(1231), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_QMARK] = ACTIONS(1231), - [anon_sym_STAR] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(1231), - [anon_sym_void] = ACTIONS(1233), - [anon_sym_anyopaque] = ACTIONS(1233), - [anon_sym_bool] = ACTIONS(1233), - [anon_sym_int] = ACTIONS(1233), - [anon_sym_float] = ACTIONS(1233), - [anon_sym_range] = ACTIONS(1233), - [anon_sym_i8] = ACTIONS(1233), - [anon_sym_i16] = ACTIONS(1233), - [anon_sym_i32] = ACTIONS(1233), - [anon_sym_i64] = ACTIONS(1233), - [anon_sym_u8] = ACTIONS(1233), - [anon_sym_u16] = ACTIONS(1233), - [anon_sym_u32] = ACTIONS(1233), - [anon_sym_u64] = ACTIONS(1233), - [anon_sym_isize] = ACTIONS(1233), - [anon_sym_usize] = ACTIONS(1233), - [anon_sym_f32] = ACTIONS(1233), - [anon_sym_f64] = ACTIONS(1233), - [anon_sym_c_char] = ACTIONS(1233), - [anon_sym_c_schar] = ACTIONS(1233), - [anon_sym_c_uchar] = ACTIONS(1233), - [anon_sym_c_short] = ACTIONS(1233), - [anon_sym_c_ushort] = ACTIONS(1233), - [anon_sym_c_int] = ACTIONS(1233), - [anon_sym_c_uint] = ACTIONS(1233), - [anon_sym_c_long] = ACTIONS(1233), - [anon_sym_c_ulong] = ACTIONS(1233), - [anon_sym_c_longlong] = ACTIONS(1233), - [anon_sym_c_ulonglong] = ACTIONS(1233), - [anon_sym_c_float] = ACTIONS(1233), - [anon_sym_c_double] = ACTIONS(1233), - [anon_sym_c_longdouble] = ACTIONS(1233), - [anon_sym_PLUS_EQ] = ACTIONS(1231), - [anon_sym_DASH_EQ] = ACTIONS(1231), - [anon_sym_STAR_EQ] = ACTIONS(1231), - [anon_sym_SLASH_EQ] = ACTIONS(1231), - [anon_sym_return] = ACTIONS(1233), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_COLON] = ACTIONS(1231), - [anon_sym_break] = ACTIONS(1233), - [anon_sym_continue] = ACTIONS(1233), - [anon_sym_defer] = ACTIONS(1233), - [anon_sym_errdefer] = ACTIONS(1233), - [anon_sym_if] = ACTIONS(1233), - [anon_sym_else] = ACTIONS(1233), - [anon_sym_while] = ACTIONS(1233), - [anon_sym_for] = ACTIONS(1233), - [anon_sym_match] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1231), - [anon_sym_orelse] = ACTIONS(1233), - [anon_sym_catch] = ACTIONS(1233), - [anon_sym_or] = ACTIONS(1233), - [anon_sym_and] = ACTIONS(1233), - [anon_sym_EQ_EQ] = ACTIONS(1231), - [anon_sym_BANG_EQ] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1233), - [anon_sym_GT_EQ] = ACTIONS(1231), - [anon_sym_PLUS] = ACTIONS(1233), - [anon_sym_SLASH] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_try] = ACTIONS(1233), - [anon_sym_DOT] = ACTIONS(1233), - [anon_sym_CARET] = ACTIONS(1231), - [anon_sym_true] = ACTIONS(1233), - [anon_sym_false] = ACTIONS(1233), - [sym_none] = ACTIONS(1233), - [sym_undefined] = ACTIONS(1233), - [sym_sink] = ACTIONS(1233), - [sym_integer] = ACTIONS(1233), - [sym_float] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [sym_multiline_string] = ACTIONS(1231), - [sym_character] = ACTIONS(1231), + [ts_builtin_sym_end] = ACTIONS(1229), + [sym_identifier] = ACTIONS(1231), + [anon_sym_import] = 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(1229), + [anon_sym_QMARK] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym_RBRACK] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1231), + [anon_sym_anyopaque] = ACTIONS(1231), + [anon_sym_bool] = ACTIONS(1231), + [anon_sym_int] = 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_return] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1231), + [anon_sym_COLON] = ACTIONS(1229), + [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_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_PLUS] = ACTIONS(1231), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_AMP] = 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(1231), + [sym__newline] = ACTIONS(1229), }, [STATE(479)] = { - [ts_builtin_sym_end] = ACTIONS(275), - [sym_identifier] = ACTIONS(269), - [anon_sym_import] = ACTIONS(269), - [anon_sym_func] = ACTIONS(269), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_struct] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_RPAREN] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(275), - [anon_sym_RBRACE] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(269), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(275), - [anon_sym_STAR] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(275), - [anon_sym_RBRACK] = ACTIONS(275), - [anon_sym_void] = ACTIONS(269), - [anon_sym_anyopaque] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_int] = ACTIONS(269), - [anon_sym_float] = ACTIONS(269), - [anon_sym_range] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_isize] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_f32] = ACTIONS(269), - [anon_sym_f64] = ACTIONS(269), - [anon_sym_c_char] = ACTIONS(269), - [anon_sym_c_schar] = ACTIONS(269), - [anon_sym_c_uchar] = ACTIONS(269), - [anon_sym_c_short] = ACTIONS(269), - [anon_sym_c_ushort] = ACTIONS(269), - [anon_sym_c_int] = ACTIONS(269), - [anon_sym_c_uint] = ACTIONS(269), - [anon_sym_c_long] = ACTIONS(269), - [anon_sym_c_ulong] = ACTIONS(269), - [anon_sym_c_longlong] = ACTIONS(269), - [anon_sym_c_ulonglong] = ACTIONS(269), - [anon_sym_c_float] = ACTIONS(269), - [anon_sym_c_double] = ACTIONS(269), - [anon_sym_c_longdouble] = ACTIONS(269), - [anon_sym_PLUS_EQ] = ACTIONS(275), - [anon_sym_DASH_EQ] = ACTIONS(275), - [anon_sym_STAR_EQ] = ACTIONS(275), - [anon_sym_SLASH_EQ] = ACTIONS(275), - [anon_sym_return] = ACTIONS(269), - [anon_sym_yield] = ACTIONS(269), - [anon_sym_COLON] = ACTIONS(275), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(269), - [anon_sym_defer] = ACTIONS(269), - [anon_sym_errdefer] = ACTIONS(269), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(269), - [anon_sym_while] = ACTIONS(269), - [anon_sym_for] = ACTIONS(269), - [anon_sym_match] = ACTIONS(269), - [anon_sym_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_EQ] = ACTIONS(275), - [anon_sym_orelse] = ACTIONS(269), - [anon_sym_catch] = ACTIONS(269), - [anon_sym_or] = ACTIONS(269), - [anon_sym_and] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(275), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(275), - [anon_sym_PLUS] = ACTIONS(269), - [anon_sym_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(275), - [anon_sym_try] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(275), - [anon_sym_true] = ACTIONS(269), - [anon_sym_false] = ACTIONS(269), - [sym_none] = ACTIONS(269), - [sym_undefined] = ACTIONS(269), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(269), - [sym_float] = ACTIONS(275), - [anon_sym_DQUOTE] = ACTIONS(275), - [sym_multiline_string] = ACTIONS(275), - [sym_character] = ACTIONS(275), + [ts_builtin_sym_end] = ACTIONS(1233), + [sym_identifier] = ACTIONS(1235), + [anon_sym_import] = 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(1233), + [anon_sym_QMARK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_RBRACK] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1235), + [anon_sym_anyopaque] = ACTIONS(1235), + [anon_sym_bool] = ACTIONS(1235), + [anon_sym_int] = 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_return] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1235), + [anon_sym_COLON] = ACTIONS(1233), + [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_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_PLUS] = ACTIONS(1235), + [anon_sym_SLASH] = ACTIONS(1235), + [anon_sym_AMP] = 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(275), + [sym__newline] = ACTIONS(1233), }, [STATE(480)] = { - [ts_builtin_sym_end] = ACTIONS(1235), - [sym_identifier] = ACTIONS(1237), - [anon_sym_import] = ACTIONS(1237), - [anon_sym_func] = ACTIONS(1237), - [anon_sym_BANG] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1237), - [anon_sym_struct] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1235), - [anon_sym_RPAREN] = ACTIONS(1235), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_COMMA] = ACTIONS(1235), - [anon_sym_RBRACE] = ACTIONS(1235), - [anon_sym_DASH] = ACTIONS(1237), - [anon_sym_DOLLAR] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_LBRACK] = ACTIONS(1235), - [anon_sym_SEMI] = ACTIONS(1235), - [anon_sym_RBRACK] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1237), - [anon_sym_anyopaque] = ACTIONS(1237), - [anon_sym_bool] = ACTIONS(1237), - [anon_sym_int] = ACTIONS(1237), - [anon_sym_float] = ACTIONS(1237), - [anon_sym_range] = ACTIONS(1237), - [anon_sym_i8] = ACTIONS(1237), - [anon_sym_i16] = ACTIONS(1237), - [anon_sym_i32] = ACTIONS(1237), - [anon_sym_i64] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1237), - [anon_sym_u16] = ACTIONS(1237), - [anon_sym_u32] = ACTIONS(1237), - [anon_sym_u64] = ACTIONS(1237), - [anon_sym_isize] = ACTIONS(1237), - [anon_sym_usize] = ACTIONS(1237), - [anon_sym_f32] = ACTIONS(1237), - [anon_sym_f64] = ACTIONS(1237), - [anon_sym_c_char] = ACTIONS(1237), - [anon_sym_c_schar] = ACTIONS(1237), - [anon_sym_c_uchar] = ACTIONS(1237), - [anon_sym_c_short] = ACTIONS(1237), - [anon_sym_c_ushort] = ACTIONS(1237), - [anon_sym_c_int] = ACTIONS(1237), - [anon_sym_c_uint] = ACTIONS(1237), - [anon_sym_c_long] = ACTIONS(1237), - [anon_sym_c_ulong] = ACTIONS(1237), - [anon_sym_c_longlong] = ACTIONS(1237), - [anon_sym_c_ulonglong] = ACTIONS(1237), - [anon_sym_c_float] = ACTIONS(1237), - [anon_sym_c_double] = ACTIONS(1237), - [anon_sym_c_longdouble] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1235), - [anon_sym_DASH_EQ] = ACTIONS(1235), - [anon_sym_STAR_EQ] = ACTIONS(1235), - [anon_sym_SLASH_EQ] = ACTIONS(1235), - [anon_sym_return] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1237), - [anon_sym_COLON] = ACTIONS(1235), - [anon_sym_break] = ACTIONS(1237), - [anon_sym_continue] = ACTIONS(1237), - [anon_sym_defer] = ACTIONS(1237), - [anon_sym_errdefer] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1237), - [anon_sym_for] = ACTIONS(1237), - [anon_sym_match] = ACTIONS(1237), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1235), - [anon_sym_orelse] = ACTIONS(1237), - [anon_sym_catch] = ACTIONS(1237), - [anon_sym_or] = ACTIONS(1237), - [anon_sym_and] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1235), - [anon_sym_BANG_EQ] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1235), - [anon_sym_GT] = ACTIONS(1237), - [anon_sym_GT_EQ] = ACTIONS(1235), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_try] = ACTIONS(1237), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1235), - [anon_sym_true] = ACTIONS(1237), - [anon_sym_false] = ACTIONS(1237), - [sym_none] = ACTIONS(1237), - [sym_undefined] = ACTIONS(1237), - [sym_sink] = ACTIONS(1237), - [sym_integer] = ACTIONS(1237), - [sym_float] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [sym_multiline_string] = ACTIONS(1235), - [sym_character] = ACTIONS(1235), + [ts_builtin_sym_end] = ACTIONS(1237), + [sym_identifier] = ACTIONS(1239), + [anon_sym_import] = 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(1237), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym_RBRACK] = ACTIONS(1237), + [anon_sym_void] = ACTIONS(1239), + [anon_sym_anyopaque] = ACTIONS(1239), + [anon_sym_bool] = ACTIONS(1239), + [anon_sym_int] = 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_return] = ACTIONS(1239), + [anon_sym_yield] = ACTIONS(1239), + [anon_sym_COLON] = ACTIONS(1237), + [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_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_PLUS] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1239), + [anon_sym_AMP] = 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(1235), + [sym__newline] = ACTIONS(1237), }, [STATE(481)] = { - [ts_builtin_sym_end] = ACTIONS(1239), - [sym_identifier] = ACTIONS(1241), - [anon_sym_import] = ACTIONS(1241), - [anon_sym_func] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_struct] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_RPAREN] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_COMMA] = ACTIONS(1239), - [anon_sym_RBRACE] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_DOLLAR] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_QMARK] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_LBRACK] = ACTIONS(1239), - [anon_sym_SEMI] = ACTIONS(1239), - [anon_sym_RBRACK] = ACTIONS(1239), - [anon_sym_void] = ACTIONS(1241), - [anon_sym_anyopaque] = ACTIONS(1241), - [anon_sym_bool] = ACTIONS(1241), - [anon_sym_int] = ACTIONS(1241), - [anon_sym_float] = ACTIONS(1241), - [anon_sym_range] = ACTIONS(1241), - [anon_sym_i8] = ACTIONS(1241), - [anon_sym_i16] = ACTIONS(1241), - [anon_sym_i32] = ACTIONS(1241), - [anon_sym_i64] = ACTIONS(1241), - [anon_sym_u8] = ACTIONS(1241), - [anon_sym_u16] = ACTIONS(1241), - [anon_sym_u32] = ACTIONS(1241), - [anon_sym_u64] = ACTIONS(1241), - [anon_sym_isize] = ACTIONS(1241), - [anon_sym_usize] = ACTIONS(1241), - [anon_sym_f32] = ACTIONS(1241), - [anon_sym_f64] = ACTIONS(1241), - [anon_sym_c_char] = ACTIONS(1241), - [anon_sym_c_schar] = ACTIONS(1241), - [anon_sym_c_uchar] = ACTIONS(1241), - [anon_sym_c_short] = ACTIONS(1241), - [anon_sym_c_ushort] = ACTIONS(1241), - [anon_sym_c_int] = ACTIONS(1241), - [anon_sym_c_uint] = ACTIONS(1241), - [anon_sym_c_long] = ACTIONS(1241), - [anon_sym_c_ulong] = ACTIONS(1241), - [anon_sym_c_longlong] = ACTIONS(1241), - [anon_sym_c_ulonglong] = ACTIONS(1241), - [anon_sym_c_float] = ACTIONS(1241), - [anon_sym_c_double] = ACTIONS(1241), - [anon_sym_c_longdouble] = ACTIONS(1241), - [anon_sym_PLUS_EQ] = ACTIONS(1239), - [anon_sym_DASH_EQ] = ACTIONS(1239), - [anon_sym_STAR_EQ] = ACTIONS(1239), - [anon_sym_SLASH_EQ] = ACTIONS(1239), - [anon_sym_return] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1239), - [anon_sym_break] = ACTIONS(1241), - [anon_sym_continue] = ACTIONS(1241), - [anon_sym_defer] = ACTIONS(1241), - [anon_sym_errdefer] = ACTIONS(1241), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_else] = ACTIONS(1241), - [anon_sym_while] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_match] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_orelse] = ACTIONS(1241), - [anon_sym_catch] = ACTIONS(1241), - [anon_sym_or] = ACTIONS(1241), - [anon_sym_and] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1239), - [anon_sym_BANG_EQ] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1239), - [anon_sym_GT] = ACTIONS(1241), - [anon_sym_GT_EQ] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_SLASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1239), - [anon_sym_try] = ACTIONS(1241), - [anon_sym_DOT] = ACTIONS(1241), - [anon_sym_CARET] = ACTIONS(1239), - [anon_sym_true] = ACTIONS(1241), - [anon_sym_false] = ACTIONS(1241), - [sym_none] = ACTIONS(1241), - [sym_undefined] = ACTIONS(1241), - [sym_sink] = ACTIONS(1241), - [sym_integer] = ACTIONS(1241), - [sym_float] = ACTIONS(1239), - [anon_sym_DQUOTE] = ACTIONS(1239), - [sym_multiline_string] = ACTIONS(1239), - [sym_character] = ACTIONS(1239), + [ts_builtin_sym_end] = ACTIONS(1241), + [sym_identifier] = ACTIONS(1243), + [anon_sym_import] = 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(1241), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1243), + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym_RBRACK] = ACTIONS(1241), + [anon_sym_void] = ACTIONS(1243), + [anon_sym_anyopaque] = ACTIONS(1243), + [anon_sym_bool] = ACTIONS(1243), + [anon_sym_int] = 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_return] = ACTIONS(1243), + [anon_sym_yield] = ACTIONS(1243), + [anon_sym_COLON] = ACTIONS(1241), + [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_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_PLUS] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(1243), + [anon_sym_AMP] = 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(1239), + [sym__newline] = ACTIONS(1241), }, [STATE(482)] = { - [ts_builtin_sym_end] = ACTIONS(1243), - [sym_identifier] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(1245), - [anon_sym_func] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1245), - [anon_sym_EQ] = ACTIONS(1245), - [anon_sym_struct] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_COMMA] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_QMARK] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym_RBRACK] = ACTIONS(1243), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_anyopaque] = ACTIONS(1245), - [anon_sym_bool] = ACTIONS(1245), - [anon_sym_int] = ACTIONS(1245), - [anon_sym_float] = ACTIONS(1245), - [anon_sym_range] = ACTIONS(1245), - [anon_sym_i8] = ACTIONS(1245), - [anon_sym_i16] = ACTIONS(1245), - [anon_sym_i32] = ACTIONS(1245), - [anon_sym_i64] = ACTIONS(1245), - [anon_sym_u8] = ACTIONS(1245), - [anon_sym_u16] = ACTIONS(1245), - [anon_sym_u32] = ACTIONS(1245), - [anon_sym_u64] = ACTIONS(1245), - [anon_sym_isize] = ACTIONS(1245), - [anon_sym_usize] = ACTIONS(1245), - [anon_sym_f32] = ACTIONS(1245), - [anon_sym_f64] = ACTIONS(1245), - [anon_sym_c_char] = ACTIONS(1245), - [anon_sym_c_schar] = ACTIONS(1245), - [anon_sym_c_uchar] = ACTIONS(1245), - [anon_sym_c_short] = ACTIONS(1245), - [anon_sym_c_ushort] = ACTIONS(1245), - [anon_sym_c_int] = ACTIONS(1245), - [anon_sym_c_uint] = ACTIONS(1245), - [anon_sym_c_long] = ACTIONS(1245), - [anon_sym_c_ulong] = ACTIONS(1245), - [anon_sym_c_longlong] = ACTIONS(1245), - [anon_sym_c_ulonglong] = ACTIONS(1245), - [anon_sym_c_float] = ACTIONS(1245), - [anon_sym_c_double] = ACTIONS(1245), - [anon_sym_c_longdouble] = ACTIONS(1245), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_STAR_EQ] = ACTIONS(1243), - [anon_sym_SLASH_EQ] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1245), - [anon_sym_yield] = ACTIONS(1245), - [anon_sym_COLON] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1245), - [anon_sym_continue] = ACTIONS(1245), - [anon_sym_defer] = ACTIONS(1245), - [anon_sym_errdefer] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_for] = ACTIONS(1245), - [anon_sym_match] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1245), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_orelse] = ACTIONS(1245), - [anon_sym_catch] = ACTIONS(1245), - [anon_sym_or] = ACTIONS(1245), - [anon_sym_and] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1245), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_AMP] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1245), - [anon_sym_DOT] = ACTIONS(1245), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1245), - [anon_sym_false] = ACTIONS(1245), - [sym_none] = ACTIONS(1245), - [sym_undefined] = ACTIONS(1245), - [sym_sink] = ACTIONS(1245), - [sym_integer] = ACTIONS(1245), - [sym_float] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym_multiline_string] = ACTIONS(1243), - [sym_character] = ACTIONS(1243), + [ts_builtin_sym_end] = ACTIONS(1245), + [sym_identifier] = ACTIONS(1247), + [anon_sym_import] = 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(1245), + [anon_sym_QMARK] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_RBRACK] = ACTIONS(1245), + [anon_sym_void] = ACTIONS(1247), + [anon_sym_anyopaque] = ACTIONS(1247), + [anon_sym_bool] = ACTIONS(1247), + [anon_sym_int] = 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_return] = ACTIONS(1247), + [anon_sym_yield] = ACTIONS(1247), + [anon_sym_COLON] = ACTIONS(1245), + [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_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_PLUS] = ACTIONS(1247), + [anon_sym_SLASH] = ACTIONS(1247), + [anon_sym_AMP] = 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(1243), + [sym__newline] = ACTIONS(1245), }, [STATE(483)] = { - [ts_builtin_sym_end] = ACTIONS(1247), - [sym_identifier] = ACTIONS(1249), - [anon_sym_import] = ACTIONS(1249), - [anon_sym_func] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1249), - [anon_sym_EQ] = ACTIONS(1249), - [anon_sym_struct] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_RPAREN] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_COMMA] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym_RBRACK] = ACTIONS(1247), - [anon_sym_void] = ACTIONS(1249), - [anon_sym_anyopaque] = ACTIONS(1249), - [anon_sym_bool] = ACTIONS(1249), - [anon_sym_int] = ACTIONS(1249), - [anon_sym_float] = ACTIONS(1249), - [anon_sym_range] = ACTIONS(1249), - [anon_sym_i8] = ACTIONS(1249), - [anon_sym_i16] = ACTIONS(1249), - [anon_sym_i32] = ACTIONS(1249), - [anon_sym_i64] = ACTIONS(1249), - [anon_sym_u8] = ACTIONS(1249), - [anon_sym_u16] = ACTIONS(1249), - [anon_sym_u32] = ACTIONS(1249), - [anon_sym_u64] = ACTIONS(1249), - [anon_sym_isize] = ACTIONS(1249), - [anon_sym_usize] = ACTIONS(1249), - [anon_sym_f32] = ACTIONS(1249), - [anon_sym_f64] = ACTIONS(1249), - [anon_sym_c_char] = ACTIONS(1249), - [anon_sym_c_schar] = ACTIONS(1249), - [anon_sym_c_uchar] = ACTIONS(1249), - [anon_sym_c_short] = ACTIONS(1249), - [anon_sym_c_ushort] = ACTIONS(1249), - [anon_sym_c_int] = ACTIONS(1249), - [anon_sym_c_uint] = ACTIONS(1249), - [anon_sym_c_long] = ACTIONS(1249), - [anon_sym_c_ulong] = ACTIONS(1249), - [anon_sym_c_longlong] = ACTIONS(1249), - [anon_sym_c_ulonglong] = ACTIONS(1249), - [anon_sym_c_float] = ACTIONS(1249), - [anon_sym_c_double] = ACTIONS(1249), - [anon_sym_c_longdouble] = ACTIONS(1249), - [anon_sym_PLUS_EQ] = ACTIONS(1247), - [anon_sym_DASH_EQ] = ACTIONS(1247), - [anon_sym_STAR_EQ] = ACTIONS(1247), - [anon_sym_SLASH_EQ] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(1249), - [anon_sym_COLON] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1249), - [anon_sym_continue] = ACTIONS(1249), - [anon_sym_defer] = ACTIONS(1249), - [anon_sym_errdefer] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1249), - [anon_sym_else] = ACTIONS(1249), - [anon_sym_while] = ACTIONS(1249), - [anon_sym_for] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_DOT_DOT] = ACTIONS(1249), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1247), - [anon_sym_orelse] = ACTIONS(1249), - [anon_sym_catch] = ACTIONS(1249), - [anon_sym_or] = ACTIONS(1249), - [anon_sym_and] = ACTIONS(1249), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1249), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_SLASH] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_try] = ACTIONS(1249), - [anon_sym_DOT] = ACTIONS(1249), - [anon_sym_CARET] = ACTIONS(1247), - [anon_sym_true] = ACTIONS(1249), - [anon_sym_false] = ACTIONS(1249), - [sym_none] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [sym_sink] = ACTIONS(1249), - [sym_integer] = ACTIONS(1249), - [sym_float] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym_multiline_string] = ACTIONS(1247), - [sym_character] = ACTIONS(1247), + [ts_builtin_sym_end] = ACTIONS(1249), + [sym_identifier] = ACTIONS(1251), + [anon_sym_import] = 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(1249), + [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_RBRACK] = ACTIONS(1249), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_anyopaque] = ACTIONS(1251), + [anon_sym_bool] = ACTIONS(1251), + [anon_sym_int] = 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_return] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(1251), + [anon_sym_COLON] = ACTIONS(1249), + [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_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_PLUS] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(1251), + [anon_sym_AMP] = 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(1247), + [sym__newline] = ACTIONS(1249), }, [STATE(484)] = { - [ts_builtin_sym_end] = ACTIONS(1251), - [sym_identifier] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(1253), - [anon_sym_func] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_RPAREN] = ACTIONS(1251), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_COMMA] = ACTIONS(1251), - [anon_sym_RBRACE] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_DOLLAR] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym_RBRACK] = ACTIONS(1251), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_anyopaque] = ACTIONS(1253), - [anon_sym_bool] = ACTIONS(1253), - [anon_sym_int] = ACTIONS(1253), - [anon_sym_float] = ACTIONS(1253), - [anon_sym_range] = ACTIONS(1253), - [anon_sym_i8] = ACTIONS(1253), - [anon_sym_i16] = ACTIONS(1253), - [anon_sym_i32] = ACTIONS(1253), - [anon_sym_i64] = ACTIONS(1253), - [anon_sym_u8] = ACTIONS(1253), - [anon_sym_u16] = ACTIONS(1253), - [anon_sym_u32] = ACTIONS(1253), - [anon_sym_u64] = ACTIONS(1253), - [anon_sym_isize] = ACTIONS(1253), - [anon_sym_usize] = ACTIONS(1253), - [anon_sym_f32] = ACTIONS(1253), - [anon_sym_f64] = ACTIONS(1253), - [anon_sym_c_char] = ACTIONS(1253), - [anon_sym_c_schar] = ACTIONS(1253), - [anon_sym_c_uchar] = ACTIONS(1253), - [anon_sym_c_short] = ACTIONS(1253), - [anon_sym_c_ushort] = ACTIONS(1253), - [anon_sym_c_int] = ACTIONS(1253), - [anon_sym_c_uint] = ACTIONS(1253), - [anon_sym_c_long] = ACTIONS(1253), - [anon_sym_c_ulong] = ACTIONS(1253), - [anon_sym_c_longlong] = ACTIONS(1253), - [anon_sym_c_ulonglong] = ACTIONS(1253), - [anon_sym_c_float] = ACTIONS(1253), - [anon_sym_c_double] = ACTIONS(1253), - [anon_sym_c_longdouble] = ACTIONS(1253), - [anon_sym_PLUS_EQ] = ACTIONS(1251), - [anon_sym_DASH_EQ] = ACTIONS(1251), - [anon_sym_STAR_EQ] = ACTIONS(1251), - [anon_sym_SLASH_EQ] = ACTIONS(1251), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_yield] = ACTIONS(1253), - [anon_sym_COLON] = ACTIONS(1251), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_defer] = ACTIONS(1253), - [anon_sym_errdefer] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1251), - [anon_sym_orelse] = ACTIONS(1253), - [anon_sym_catch] = ACTIONS(1253), - [anon_sym_or] = ACTIONS(1253), - [anon_sym_and] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_try] = ACTIONS(1253), - [anon_sym_DOT] = ACTIONS(1253), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_true] = ACTIONS(1253), - [anon_sym_false] = ACTIONS(1253), - [sym_none] = ACTIONS(1253), - [sym_undefined] = ACTIONS(1253), - [sym_sink] = ACTIONS(1253), - [sym_integer] = ACTIONS(1253), - [sym_float] = ACTIONS(1251), - [anon_sym_DQUOTE] = ACTIONS(1251), - [sym_multiline_string] = ACTIONS(1251), - [sym_character] = ACTIONS(1251), + [ts_builtin_sym_end] = ACTIONS(1253), + [sym_identifier] = ACTIONS(1255), + [anon_sym_import] = 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(1253), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_LBRACK] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_RBRACK] = ACTIONS(1253), + [anon_sym_void] = ACTIONS(1255), + [anon_sym_anyopaque] = ACTIONS(1255), + [anon_sym_bool] = ACTIONS(1255), + [anon_sym_int] = 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_return] = ACTIONS(1255), + [anon_sym_yield] = ACTIONS(1255), + [anon_sym_COLON] = ACTIONS(1253), + [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_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_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_AMP] = 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(1251), + [sym__newline] = ACTIONS(1253), }, [STATE(485)] = { - [ts_builtin_sym_end] = ACTIONS(1255), - [sym_identifier] = ACTIONS(1257), - [anon_sym_import] = ACTIONS(1257), - [anon_sym_func] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_struct] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1255), - [anon_sym_RPAREN] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_DOLLAR] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1255), - [anon_sym_RBRACK] = ACTIONS(1255), - [anon_sym_void] = ACTIONS(1257), - [anon_sym_anyopaque] = ACTIONS(1257), - [anon_sym_bool] = ACTIONS(1257), - [anon_sym_int] = ACTIONS(1257), - [anon_sym_float] = ACTIONS(1257), - [anon_sym_range] = ACTIONS(1257), - [anon_sym_i8] = ACTIONS(1257), - [anon_sym_i16] = ACTIONS(1257), - [anon_sym_i32] = ACTIONS(1257), - [anon_sym_i64] = ACTIONS(1257), - [anon_sym_u8] = ACTIONS(1257), - [anon_sym_u16] = ACTIONS(1257), - [anon_sym_u32] = ACTIONS(1257), - [anon_sym_u64] = ACTIONS(1257), - [anon_sym_isize] = ACTIONS(1257), - [anon_sym_usize] = ACTIONS(1257), - [anon_sym_f32] = ACTIONS(1257), - [anon_sym_f64] = ACTIONS(1257), - [anon_sym_c_char] = ACTIONS(1257), - [anon_sym_c_schar] = ACTIONS(1257), - [anon_sym_c_uchar] = ACTIONS(1257), - [anon_sym_c_short] = ACTIONS(1257), - [anon_sym_c_ushort] = ACTIONS(1257), - [anon_sym_c_int] = ACTIONS(1257), - [anon_sym_c_uint] = ACTIONS(1257), - [anon_sym_c_long] = ACTIONS(1257), - [anon_sym_c_ulong] = ACTIONS(1257), - [anon_sym_c_longlong] = ACTIONS(1257), - [anon_sym_c_ulonglong] = ACTIONS(1257), - [anon_sym_c_float] = ACTIONS(1257), - [anon_sym_c_double] = ACTIONS(1257), - [anon_sym_c_longdouble] = ACTIONS(1257), - [anon_sym_PLUS_EQ] = ACTIONS(1255), - [anon_sym_DASH_EQ] = ACTIONS(1255), - [anon_sym_STAR_EQ] = ACTIONS(1255), - [anon_sym_SLASH_EQ] = ACTIONS(1255), - [anon_sym_return] = ACTIONS(1257), - [anon_sym_yield] = ACTIONS(1257), - [anon_sym_COLON] = ACTIONS(1255), - [anon_sym_break] = ACTIONS(1257), - [anon_sym_continue] = ACTIONS(1257), - [anon_sym_defer] = ACTIONS(1257), - [anon_sym_errdefer] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1257), - [anon_sym_else] = ACTIONS(1257), - [anon_sym_while] = ACTIONS(1257), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_match] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1257), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_orelse] = ACTIONS(1257), - [anon_sym_catch] = ACTIONS(1257), - [anon_sym_or] = ACTIONS(1257), - [anon_sym_and] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_GT] = ACTIONS(1257), - [anon_sym_GT_EQ] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1255), - [anon_sym_try] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1255), - [anon_sym_true] = ACTIONS(1257), - [anon_sym_false] = ACTIONS(1257), - [sym_none] = ACTIONS(1257), - [sym_undefined] = ACTIONS(1257), - [sym_sink] = ACTIONS(1257), - [sym_integer] = ACTIONS(1257), - [sym_float] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(1255), - [sym_multiline_string] = ACTIONS(1255), - [sym_character] = ACTIONS(1255), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1259), + [anon_sym_import] = ACTIONS(1259), + [anon_sym_func] = ACTIONS(1259), + [anon_sym_BANG] = ACTIONS(1259), + [anon_sym_EQ] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_COMMA] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_DOLLAR] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_RBRACK] = ACTIONS(1257), + [anon_sym_void] = ACTIONS(1259), + [anon_sym_anyopaque] = ACTIONS(1259), + [anon_sym_bool] = ACTIONS(1259), + [anon_sym_int] = ACTIONS(1259), + [anon_sym_float] = ACTIONS(1259), + [anon_sym_range] = ACTIONS(1259), + [anon_sym_i8] = ACTIONS(1259), + [anon_sym_i16] = ACTIONS(1259), + [anon_sym_i32] = ACTIONS(1259), + [anon_sym_i64] = ACTIONS(1259), + [anon_sym_u8] = ACTIONS(1259), + [anon_sym_u16] = ACTIONS(1259), + [anon_sym_u32] = ACTIONS(1259), + [anon_sym_u64] = ACTIONS(1259), + [anon_sym_isize] = ACTIONS(1259), + [anon_sym_usize] = ACTIONS(1259), + [anon_sym_f32] = ACTIONS(1259), + [anon_sym_f64] = ACTIONS(1259), + [anon_sym_c_char] = ACTIONS(1259), + [anon_sym_c_schar] = ACTIONS(1259), + [anon_sym_c_uchar] = ACTIONS(1259), + [anon_sym_c_short] = ACTIONS(1259), + [anon_sym_c_ushort] = ACTIONS(1259), + [anon_sym_c_int] = ACTIONS(1259), + [anon_sym_c_uint] = ACTIONS(1259), + [anon_sym_c_long] = ACTIONS(1259), + [anon_sym_c_ulong] = ACTIONS(1259), + [anon_sym_c_longlong] = ACTIONS(1259), + [anon_sym_c_ulonglong] = ACTIONS(1259), + [anon_sym_c_float] = ACTIONS(1259), + [anon_sym_c_double] = ACTIONS(1259), + [anon_sym_c_longdouble] = ACTIONS(1259), + [anon_sym_PLUS_EQ] = ACTIONS(1257), + [anon_sym_DASH_EQ] = ACTIONS(1257), + [anon_sym_STAR_EQ] = ACTIONS(1257), + [anon_sym_SLASH_EQ] = ACTIONS(1257), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_yield] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_defer] = ACTIONS(1259), + [anon_sym_errdefer] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_else] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_match] = ACTIONS(1259), + [anon_sym_DOT_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1257), + [anon_sym_orelse] = ACTIONS(1259), + [anon_sym_catch] = ACTIONS(1259), + [anon_sym_or] = ACTIONS(1259), + [anon_sym_and] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_try] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [sym_none] = ACTIONS(1259), + [sym_undefined] = ACTIONS(1259), + [sym_sink] = ACTIONS(1259), + [sym_integer] = ACTIONS(1259), + [sym_float] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym_multiline_string] = ACTIONS(1257), + [sym_character] = ACTIONS(1257), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1255), + [sym__newline] = ACTIONS(1257), }, [STATE(486)] = { - [ts_builtin_sym_end] = ACTIONS(1259), - [sym_identifier] = ACTIONS(1261), - [anon_sym_import] = ACTIONS(1261), - [anon_sym_func] = ACTIONS(1261), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_EQ] = ACTIONS(1261), - [anon_sym_struct] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_COMMA] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [anon_sym_RBRACK] = ACTIONS(1259), - [anon_sym_void] = ACTIONS(1261), - [anon_sym_anyopaque] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_int] = ACTIONS(1261), - [anon_sym_float] = ACTIONS(1261), - [anon_sym_range] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_c_char] = ACTIONS(1261), - [anon_sym_c_schar] = ACTIONS(1261), - [anon_sym_c_uchar] = ACTIONS(1261), - [anon_sym_c_short] = ACTIONS(1261), - [anon_sym_c_ushort] = ACTIONS(1261), - [anon_sym_c_int] = ACTIONS(1261), - [anon_sym_c_uint] = ACTIONS(1261), - [anon_sym_c_long] = ACTIONS(1261), - [anon_sym_c_ulong] = ACTIONS(1261), - [anon_sym_c_longlong] = ACTIONS(1261), - [anon_sym_c_ulonglong] = ACTIONS(1261), - [anon_sym_c_float] = ACTIONS(1261), - [anon_sym_c_double] = ACTIONS(1261), - [anon_sym_c_longdouble] = ACTIONS(1261), - [anon_sym_PLUS_EQ] = ACTIONS(1259), - [anon_sym_DASH_EQ] = ACTIONS(1259), - [anon_sym_STAR_EQ] = ACTIONS(1259), - [anon_sym_SLASH_EQ] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1261), - [anon_sym_yield] = ACTIONS(1261), - [anon_sym_COLON] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1261), - [anon_sym_continue] = ACTIONS(1261), - [anon_sym_defer] = ACTIONS(1261), - [anon_sym_errdefer] = ACTIONS(1261), - [anon_sym_if] = ACTIONS(1261), - [anon_sym_else] = ACTIONS(1261), - [anon_sym_while] = ACTIONS(1261), - [anon_sym_for] = ACTIONS(1261), - [anon_sym_match] = ACTIONS(1261), - [anon_sym_DOT_DOT] = ACTIONS(1261), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1259), - [anon_sym_orelse] = ACTIONS(1261), - [anon_sym_catch] = ACTIONS(1261), - [anon_sym_or] = ACTIONS(1261), - [anon_sym_and] = ACTIONS(1261), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1261), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_try] = ACTIONS(1261), - [anon_sym_DOT] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [sym_none] = ACTIONS(1261), - [sym_undefined] = ACTIONS(1261), - [sym_sink] = ACTIONS(1261), - [sym_integer] = ACTIONS(1261), - [sym_float] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym_multiline_string] = ACTIONS(1259), - [sym_character] = ACTIONS(1259), + [ts_builtin_sym_end] = ACTIONS(1261), + [sym_identifier] = ACTIONS(1263), + [anon_sym_import] = ACTIONS(1263), + [anon_sym_func] = ACTIONS(1263), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1261), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(1261), + [anon_sym_void] = ACTIONS(1263), + [anon_sym_anyopaque] = ACTIONS(1263), + [anon_sym_bool] = ACTIONS(1263), + [anon_sym_int] = ACTIONS(1263), + [anon_sym_float] = ACTIONS(1263), + [anon_sym_range] = ACTIONS(1263), + [anon_sym_i8] = ACTIONS(1263), + [anon_sym_i16] = ACTIONS(1263), + [anon_sym_i32] = ACTIONS(1263), + [anon_sym_i64] = ACTIONS(1263), + [anon_sym_u8] = ACTIONS(1263), + [anon_sym_u16] = ACTIONS(1263), + [anon_sym_u32] = ACTIONS(1263), + [anon_sym_u64] = ACTIONS(1263), + [anon_sym_isize] = ACTIONS(1263), + [anon_sym_usize] = ACTIONS(1263), + [anon_sym_f32] = ACTIONS(1263), + [anon_sym_f64] = ACTIONS(1263), + [anon_sym_c_char] = ACTIONS(1263), + [anon_sym_c_schar] = ACTIONS(1263), + [anon_sym_c_uchar] = ACTIONS(1263), + [anon_sym_c_short] = ACTIONS(1263), + [anon_sym_c_ushort] = ACTIONS(1263), + [anon_sym_c_int] = ACTIONS(1263), + [anon_sym_c_uint] = ACTIONS(1263), + [anon_sym_c_long] = ACTIONS(1263), + [anon_sym_c_ulong] = ACTIONS(1263), + [anon_sym_c_longlong] = ACTIONS(1263), + [anon_sym_c_ulonglong] = ACTIONS(1263), + [anon_sym_c_float] = ACTIONS(1263), + [anon_sym_c_double] = ACTIONS(1263), + [anon_sym_c_longdouble] = ACTIONS(1263), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_yield] = ACTIONS(1263), + [anon_sym_COLON] = ACTIONS(1261), + [anon_sym_break] = ACTIONS(1263), + [anon_sym_continue] = ACTIONS(1263), + [anon_sym_defer] = ACTIONS(1263), + [anon_sym_errdefer] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_else] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1263), + [anon_sym_for] = ACTIONS(1263), + [anon_sym_match] = ACTIONS(1263), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1261), + [anon_sym_orelse] = ACTIONS(1263), + [anon_sym_catch] = ACTIONS(1263), + [anon_sym_or] = ACTIONS(1263), + [anon_sym_and] = ACTIONS(1263), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_try] = ACTIONS(1263), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [sym_none] = ACTIONS(1263), + [sym_undefined] = ACTIONS(1263), + [sym_sink] = ACTIONS(1263), + [sym_integer] = ACTIONS(1263), + [sym_float] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_multiline_string] = ACTIONS(1261), + [sym_character] = ACTIONS(1261), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1259), + [sym__newline] = ACTIONS(1261), }, [STATE(487)] = { - [ts_builtin_sym_end] = ACTIONS(1263), - [sym_identifier] = ACTIONS(1265), - [anon_sym_import] = ACTIONS(1265), - [anon_sym_func] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_EQ] = ACTIONS(1265), - [anon_sym_struct] = ACTIONS(1265), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_COMMA] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_QMARK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_RBRACK] = ACTIONS(1263), - [anon_sym_void] = ACTIONS(1265), - [anon_sym_anyopaque] = ACTIONS(1265), - [anon_sym_bool] = ACTIONS(1265), - [anon_sym_int] = ACTIONS(1265), - [anon_sym_float] = ACTIONS(1265), - [anon_sym_range] = ACTIONS(1265), - [anon_sym_i8] = ACTIONS(1265), - [anon_sym_i16] = ACTIONS(1265), - [anon_sym_i32] = ACTIONS(1265), - [anon_sym_i64] = ACTIONS(1265), - [anon_sym_u8] = ACTIONS(1265), - [anon_sym_u16] = ACTIONS(1265), - [anon_sym_u32] = ACTIONS(1265), - [anon_sym_u64] = ACTIONS(1265), - [anon_sym_isize] = ACTIONS(1265), - [anon_sym_usize] = ACTIONS(1265), - [anon_sym_f32] = ACTIONS(1265), - [anon_sym_f64] = ACTIONS(1265), - [anon_sym_c_char] = ACTIONS(1265), - [anon_sym_c_schar] = ACTIONS(1265), - [anon_sym_c_uchar] = ACTIONS(1265), - [anon_sym_c_short] = ACTIONS(1265), - [anon_sym_c_ushort] = ACTIONS(1265), - [anon_sym_c_int] = ACTIONS(1265), - [anon_sym_c_uint] = ACTIONS(1265), - [anon_sym_c_long] = ACTIONS(1265), - [anon_sym_c_ulong] = ACTIONS(1265), - [anon_sym_c_longlong] = ACTIONS(1265), - [anon_sym_c_ulonglong] = ACTIONS(1265), - [anon_sym_c_float] = ACTIONS(1265), - [anon_sym_c_double] = ACTIONS(1265), - [anon_sym_c_longdouble] = ACTIONS(1265), - [anon_sym_PLUS_EQ] = ACTIONS(1263), - [anon_sym_DASH_EQ] = ACTIONS(1263), - [anon_sym_STAR_EQ] = ACTIONS(1263), - [anon_sym_SLASH_EQ] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1265), - [anon_sym_yield] = ACTIONS(1265), - [anon_sym_COLON] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1265), - [anon_sym_continue] = ACTIONS(1265), - [anon_sym_defer] = ACTIONS(1265), - [anon_sym_errdefer] = ACTIONS(1265), - [anon_sym_if] = ACTIONS(1265), - [anon_sym_else] = ACTIONS(1265), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_for] = ACTIONS(1265), - [anon_sym_match] = ACTIONS(1265), - [anon_sym_DOT_DOT] = ACTIONS(1265), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1263), - [anon_sym_orelse] = ACTIONS(1265), - [anon_sym_catch] = ACTIONS(1265), - [anon_sym_or] = ACTIONS(1265), - [anon_sym_and] = ACTIONS(1265), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1265), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1265), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1265), - [anon_sym_DOT] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1265), - [anon_sym_false] = ACTIONS(1265), - [sym_none] = ACTIONS(1265), - [sym_undefined] = ACTIONS(1265), - [sym_sink] = ACTIONS(1265), - [sym_integer] = ACTIONS(1265), - [sym_float] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym_multiline_string] = ACTIONS(1263), - [sym_character] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1265), + [sym_identifier] = ACTIONS(1267), + [anon_sym_import] = ACTIONS(1267), + [anon_sym_func] = ACTIONS(1267), + [anon_sym_BANG] = ACTIONS(1267), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_COMMA] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_RBRACK] = ACTIONS(1265), + [anon_sym_void] = ACTIONS(1267), + [anon_sym_anyopaque] = ACTIONS(1267), + [anon_sym_bool] = ACTIONS(1267), + [anon_sym_int] = ACTIONS(1267), + [anon_sym_float] = ACTIONS(1267), + [anon_sym_range] = ACTIONS(1267), + [anon_sym_i8] = ACTIONS(1267), + [anon_sym_i16] = ACTIONS(1267), + [anon_sym_i32] = ACTIONS(1267), + [anon_sym_i64] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1267), + [anon_sym_u16] = ACTIONS(1267), + [anon_sym_u32] = ACTIONS(1267), + [anon_sym_u64] = ACTIONS(1267), + [anon_sym_isize] = ACTIONS(1267), + [anon_sym_usize] = ACTIONS(1267), + [anon_sym_f32] = ACTIONS(1267), + [anon_sym_f64] = ACTIONS(1267), + [anon_sym_c_char] = ACTIONS(1267), + [anon_sym_c_schar] = ACTIONS(1267), + [anon_sym_c_uchar] = ACTIONS(1267), + [anon_sym_c_short] = ACTIONS(1267), + [anon_sym_c_ushort] = ACTIONS(1267), + [anon_sym_c_int] = ACTIONS(1267), + [anon_sym_c_uint] = ACTIONS(1267), + [anon_sym_c_long] = ACTIONS(1267), + [anon_sym_c_ulong] = ACTIONS(1267), + [anon_sym_c_longlong] = ACTIONS(1267), + [anon_sym_c_ulonglong] = ACTIONS(1267), + [anon_sym_c_float] = ACTIONS(1267), + [anon_sym_c_double] = ACTIONS(1267), + [anon_sym_c_longdouble] = ACTIONS(1267), + [anon_sym_PLUS_EQ] = ACTIONS(1265), + [anon_sym_DASH_EQ] = ACTIONS(1265), + [anon_sym_STAR_EQ] = ACTIONS(1265), + [anon_sym_SLASH_EQ] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_yield] = ACTIONS(1267), + [anon_sym_COLON] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_defer] = ACTIONS(1267), + [anon_sym_errdefer] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_match] = ACTIONS(1267), + [anon_sym_DOT_DOT] = ACTIONS(1267), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_orelse] = ACTIONS(1267), + [anon_sym_catch] = ACTIONS(1267), + [anon_sym_or] = ACTIONS(1267), + [anon_sym_and] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_try] = ACTIONS(1267), + [anon_sym_DOT] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1267), + [anon_sym_false] = ACTIONS(1267), + [sym_none] = ACTIONS(1267), + [sym_undefined] = ACTIONS(1267), + [sym_sink] = ACTIONS(1267), + [sym_integer] = ACTIONS(1267), + [sym_float] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_multiline_string] = ACTIONS(1265), + [sym_character] = ACTIONS(1265), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1263), + [sym__newline] = ACTIONS(1265), }, [STATE(488)] = { - [ts_builtin_sym_end] = ACTIONS(1267), - [sym_identifier] = ACTIONS(1269), - [anon_sym_import] = ACTIONS(1269), - [anon_sym_func] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1269), - [anon_sym_EQ] = ACTIONS(1269), - [anon_sym_struct] = ACTIONS(1269), - [anon_sym_LPAREN] = ACTIONS(1267), - [anon_sym_RPAREN] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_COMMA] = ACTIONS(1267), - [anon_sym_RBRACE] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1269), - [anon_sym_DOLLAR] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1267), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_LBRACK] = ACTIONS(1267), - [anon_sym_SEMI] = ACTIONS(1267), - [anon_sym_RBRACK] = ACTIONS(1267), - [anon_sym_void] = ACTIONS(1269), - [anon_sym_anyopaque] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_int] = ACTIONS(1269), - [anon_sym_float] = ACTIONS(1269), - [anon_sym_range] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_c_char] = ACTIONS(1269), - [anon_sym_c_schar] = ACTIONS(1269), - [anon_sym_c_uchar] = ACTIONS(1269), - [anon_sym_c_short] = ACTIONS(1269), - [anon_sym_c_ushort] = ACTIONS(1269), - [anon_sym_c_int] = ACTIONS(1269), - [anon_sym_c_uint] = ACTIONS(1269), - [anon_sym_c_long] = ACTIONS(1269), - [anon_sym_c_ulong] = ACTIONS(1269), - [anon_sym_c_longlong] = ACTIONS(1269), - [anon_sym_c_ulonglong] = ACTIONS(1269), - [anon_sym_c_float] = ACTIONS(1269), - [anon_sym_c_double] = ACTIONS(1269), - [anon_sym_c_longdouble] = ACTIONS(1269), - [anon_sym_PLUS_EQ] = ACTIONS(1267), - [anon_sym_DASH_EQ] = ACTIONS(1267), - [anon_sym_STAR_EQ] = ACTIONS(1267), - [anon_sym_SLASH_EQ] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(1269), - [anon_sym_yield] = ACTIONS(1269), - [anon_sym_COLON] = ACTIONS(1267), - [anon_sym_break] = ACTIONS(1269), - [anon_sym_continue] = ACTIONS(1269), - [anon_sym_defer] = ACTIONS(1269), - [anon_sym_errdefer] = ACTIONS(1269), - [anon_sym_if] = ACTIONS(1269), - [anon_sym_else] = ACTIONS(1269), - [anon_sym_while] = ACTIONS(1269), - [anon_sym_for] = ACTIONS(1269), - [anon_sym_match] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1269), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1267), - [anon_sym_orelse] = ACTIONS(1269), - [anon_sym_catch] = ACTIONS(1269), - [anon_sym_or] = ACTIONS(1269), - [anon_sym_and] = ACTIONS(1269), - [anon_sym_EQ_EQ] = ACTIONS(1267), - [anon_sym_BANG_EQ] = ACTIONS(1267), - [anon_sym_LT] = ACTIONS(1269), - [anon_sym_LT_EQ] = ACTIONS(1267), - [anon_sym_GT] = ACTIONS(1269), - [anon_sym_GT_EQ] = ACTIONS(1267), - [anon_sym_PLUS] = ACTIONS(1269), - [anon_sym_SLASH] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_try] = ACTIONS(1269), - [anon_sym_DOT] = ACTIONS(1269), - [anon_sym_CARET] = ACTIONS(1267), - [anon_sym_true] = ACTIONS(1269), - [anon_sym_false] = ACTIONS(1269), - [sym_none] = ACTIONS(1269), - [sym_undefined] = ACTIONS(1269), - [sym_sink] = ACTIONS(1269), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1267), - [sym_multiline_string] = ACTIONS(1267), - [sym_character] = ACTIONS(1267), + [ts_builtin_sym_end] = ACTIONS(351), + [sym_identifier] = ACTIONS(347), + [anon_sym_import] = ACTIONS(347), + [anon_sym_func] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(347), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_struct] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_RBRACE] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_STAR] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_RBRACK] = ACTIONS(351), + [anon_sym_void] = ACTIONS(347), + [anon_sym_anyopaque] = ACTIONS(347), + [anon_sym_bool] = ACTIONS(347), + [anon_sym_int] = ACTIONS(347), + [anon_sym_float] = ACTIONS(347), + [anon_sym_range] = ACTIONS(347), + [anon_sym_i8] = ACTIONS(347), + [anon_sym_i16] = ACTIONS(347), + [anon_sym_i32] = ACTIONS(347), + [anon_sym_i64] = ACTIONS(347), + [anon_sym_u8] = ACTIONS(347), + [anon_sym_u16] = ACTIONS(347), + [anon_sym_u32] = ACTIONS(347), + [anon_sym_u64] = ACTIONS(347), + [anon_sym_isize] = ACTIONS(347), + [anon_sym_usize] = ACTIONS(347), + [anon_sym_f32] = ACTIONS(347), + [anon_sym_f64] = ACTIONS(347), + [anon_sym_c_char] = ACTIONS(347), + [anon_sym_c_schar] = ACTIONS(347), + [anon_sym_c_uchar] = ACTIONS(347), + [anon_sym_c_short] = ACTIONS(347), + [anon_sym_c_ushort] = ACTIONS(347), + [anon_sym_c_int] = ACTIONS(347), + [anon_sym_c_uint] = ACTIONS(347), + [anon_sym_c_long] = ACTIONS(347), + [anon_sym_c_ulong] = ACTIONS(347), + [anon_sym_c_longlong] = ACTIONS(347), + [anon_sym_c_ulonglong] = ACTIONS(347), + [anon_sym_c_float] = ACTIONS(347), + [anon_sym_c_double] = ACTIONS(347), + [anon_sym_c_longdouble] = ACTIONS(347), + [anon_sym_PLUS_EQ] = ACTIONS(351), + [anon_sym_DASH_EQ] = ACTIONS(351), + [anon_sym_STAR_EQ] = ACTIONS(351), + [anon_sym_SLASH_EQ] = ACTIONS(351), + [anon_sym_return] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(347), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_break] = ACTIONS(347), + [anon_sym_continue] = ACTIONS(347), + [anon_sym_defer] = ACTIONS(347), + [anon_sym_errdefer] = ACTIONS(347), + [anon_sym_if] = ACTIONS(347), + [anon_sym_else] = ACTIONS(347), + [anon_sym_while] = ACTIONS(347), + [anon_sym_for] = ACTIONS(347), + [anon_sym_match] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT_EQ] = ACTIONS(351), + [anon_sym_orelse] = ACTIONS(347), + [anon_sym_catch] = ACTIONS(347), + [anon_sym_or] = ACTIONS(347), + [anon_sym_and] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_try] = ACTIONS(347), + [anon_sym_DOT] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(351), + [anon_sym_true] = ACTIONS(347), + [anon_sym_false] = ACTIONS(347), + [sym_none] = ACTIONS(347), + [sym_undefined] = ACTIONS(347), + [sym_sink] = ACTIONS(347), + [sym_integer] = ACTIONS(347), + [sym_float] = ACTIONS(351), + [anon_sym_DQUOTE] = ACTIONS(351), + [sym_multiline_string] = ACTIONS(351), + [sym_character] = ACTIONS(351), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1267), + [sym__newline] = ACTIONS(351), }, [STATE(489)] = { - [ts_builtin_sym_end] = ACTIONS(1271), - [sym_identifier] = ACTIONS(1273), - [anon_sym_import] = ACTIONS(1273), - [anon_sym_func] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_EQ] = ACTIONS(1273), - [anon_sym_struct] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1271), - [anon_sym_RPAREN] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(1271), - [anon_sym_COMMA] = ACTIONS(1271), - [anon_sym_RBRACE] = ACTIONS(1271), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_DOLLAR] = ACTIONS(1271), - [anon_sym_PIPE] = ACTIONS(1271), - [anon_sym_QMARK] = ACTIONS(1271), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym_RBRACK] = ACTIONS(1271), - [anon_sym_void] = ACTIONS(1273), - [anon_sym_anyopaque] = ACTIONS(1273), - [anon_sym_bool] = ACTIONS(1273), - [anon_sym_int] = ACTIONS(1273), - [anon_sym_float] = ACTIONS(1273), - [anon_sym_range] = ACTIONS(1273), - [anon_sym_i8] = ACTIONS(1273), - [anon_sym_i16] = ACTIONS(1273), - [anon_sym_i32] = ACTIONS(1273), - [anon_sym_i64] = ACTIONS(1273), - [anon_sym_u8] = ACTIONS(1273), - [anon_sym_u16] = ACTIONS(1273), - [anon_sym_u32] = ACTIONS(1273), - [anon_sym_u64] = ACTIONS(1273), - [anon_sym_isize] = ACTIONS(1273), - [anon_sym_usize] = ACTIONS(1273), - [anon_sym_f32] = ACTIONS(1273), - [anon_sym_f64] = ACTIONS(1273), - [anon_sym_c_char] = ACTIONS(1273), - [anon_sym_c_schar] = ACTIONS(1273), - [anon_sym_c_uchar] = ACTIONS(1273), - [anon_sym_c_short] = ACTIONS(1273), - [anon_sym_c_ushort] = ACTIONS(1273), - [anon_sym_c_int] = ACTIONS(1273), - [anon_sym_c_uint] = ACTIONS(1273), - [anon_sym_c_long] = ACTIONS(1273), - [anon_sym_c_ulong] = ACTIONS(1273), - [anon_sym_c_longlong] = ACTIONS(1273), - [anon_sym_c_ulonglong] = ACTIONS(1273), - [anon_sym_c_float] = ACTIONS(1273), - [anon_sym_c_double] = ACTIONS(1273), - [anon_sym_c_longdouble] = ACTIONS(1273), - [anon_sym_PLUS_EQ] = ACTIONS(1271), - [anon_sym_DASH_EQ] = ACTIONS(1271), - [anon_sym_STAR_EQ] = ACTIONS(1271), - [anon_sym_SLASH_EQ] = ACTIONS(1271), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_yield] = ACTIONS(1273), - [anon_sym_COLON] = ACTIONS(1271), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_defer] = ACTIONS(1273), - [anon_sym_errdefer] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_else] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1271), - [anon_sym_orelse] = ACTIONS(1273), - [anon_sym_catch] = ACTIONS(1273), - [anon_sym_or] = ACTIONS(1273), - [anon_sym_and] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1271), - [anon_sym_BANG_EQ] = ACTIONS(1271), - [anon_sym_LT] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1271), - [anon_sym_GT] = ACTIONS(1273), - [anon_sym_GT_EQ] = ACTIONS(1271), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1271), - [anon_sym_try] = ACTIONS(1273), - [anon_sym_DOT] = ACTIONS(1273), - [anon_sym_CARET] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1273), - [anon_sym_false] = ACTIONS(1273), - [sym_none] = ACTIONS(1273), - [sym_undefined] = ACTIONS(1273), - [sym_sink] = ACTIONS(1273), - [sym_integer] = ACTIONS(1273), - [sym_float] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1271), - [sym_multiline_string] = ACTIONS(1271), - [sym_character] = ACTIONS(1271), + [ts_builtin_sym_end] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1271), + [anon_sym_import] = ACTIONS(1271), + [anon_sym_func] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1271), + [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_RBRACE] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(1269), + [anon_sym_void] = ACTIONS(1271), + [anon_sym_anyopaque] = ACTIONS(1271), + [anon_sym_bool] = ACTIONS(1271), + [anon_sym_int] = ACTIONS(1271), + [anon_sym_float] = ACTIONS(1271), + [anon_sym_range] = ACTIONS(1271), + [anon_sym_i8] = ACTIONS(1271), + [anon_sym_i16] = ACTIONS(1271), + [anon_sym_i32] = ACTIONS(1271), + [anon_sym_i64] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1271), + [anon_sym_u16] = ACTIONS(1271), + [anon_sym_u32] = ACTIONS(1271), + [anon_sym_u64] = ACTIONS(1271), + [anon_sym_isize] = ACTIONS(1271), + [anon_sym_usize] = ACTIONS(1271), + [anon_sym_f32] = ACTIONS(1271), + [anon_sym_f64] = ACTIONS(1271), + [anon_sym_c_char] = ACTIONS(1271), + [anon_sym_c_schar] = ACTIONS(1271), + [anon_sym_c_uchar] = ACTIONS(1271), + [anon_sym_c_short] = ACTIONS(1271), + [anon_sym_c_ushort] = ACTIONS(1271), + [anon_sym_c_int] = ACTIONS(1271), + [anon_sym_c_uint] = ACTIONS(1271), + [anon_sym_c_long] = ACTIONS(1271), + [anon_sym_c_ulong] = ACTIONS(1271), + [anon_sym_c_longlong] = ACTIONS(1271), + [anon_sym_c_ulonglong] = ACTIONS(1271), + [anon_sym_c_float] = ACTIONS(1271), + [anon_sym_c_double] = ACTIONS(1271), + [anon_sym_c_longdouble] = ACTIONS(1271), + [anon_sym_PLUS_EQ] = ACTIONS(1269), + [anon_sym_DASH_EQ] = ACTIONS(1269), + [anon_sym_STAR_EQ] = ACTIONS(1269), + [anon_sym_SLASH_EQ] = ACTIONS(1269), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_yield] = ACTIONS(1271), + [anon_sym_COLON] = ACTIONS(1269), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_defer] = ACTIONS(1271), + [anon_sym_errdefer] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_else] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_match] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1269), + [anon_sym_orelse] = ACTIONS(1271), + [anon_sym_catch] = ACTIONS(1271), + [anon_sym_or] = ACTIONS(1271), + [anon_sym_and] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1269), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_LT_EQ] = ACTIONS(1269), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym_try] = ACTIONS(1271), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [sym_none] = ACTIONS(1271), + [sym_undefined] = ACTIONS(1271), + [sym_sink] = ACTIONS(1271), + [sym_integer] = ACTIONS(1271), + [sym_float] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_multiline_string] = ACTIONS(1269), + [sym_character] = ACTIONS(1269), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1271), + [sym__newline] = ACTIONS(1269), }, [STATE(490)] = { - [ts_builtin_sym_end] = ACTIONS(1275), - [sym_identifier] = ACTIONS(1277), - [anon_sym_import] = ACTIONS(1277), - [anon_sym_func] = ACTIONS(1277), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_EQ] = ACTIONS(1277), - [anon_sym_struct] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(1275), - [anon_sym_RPAREN] = ACTIONS(1275), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_COMMA] = ACTIONS(1275), - [anon_sym_RBRACE] = ACTIONS(1275), - [anon_sym_DASH] = ACTIONS(1277), - [anon_sym_DOLLAR] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_QMARK] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(1277), - [anon_sym_LBRACK] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym_RBRACK] = ACTIONS(1275), - [anon_sym_void] = ACTIONS(1277), - [anon_sym_anyopaque] = ACTIONS(1277), - [anon_sym_bool] = ACTIONS(1277), - [anon_sym_int] = ACTIONS(1277), - [anon_sym_float] = ACTIONS(1277), - [anon_sym_range] = ACTIONS(1277), - [anon_sym_i8] = ACTIONS(1277), - [anon_sym_i16] = ACTIONS(1277), - [anon_sym_i32] = ACTIONS(1277), - [anon_sym_i64] = ACTIONS(1277), - [anon_sym_u8] = ACTIONS(1277), - [anon_sym_u16] = ACTIONS(1277), - [anon_sym_u32] = ACTIONS(1277), - [anon_sym_u64] = ACTIONS(1277), - [anon_sym_isize] = ACTIONS(1277), - [anon_sym_usize] = ACTIONS(1277), - [anon_sym_f32] = ACTIONS(1277), - [anon_sym_f64] = ACTIONS(1277), - [anon_sym_c_char] = ACTIONS(1277), - [anon_sym_c_schar] = ACTIONS(1277), - [anon_sym_c_uchar] = ACTIONS(1277), - [anon_sym_c_short] = ACTIONS(1277), - [anon_sym_c_ushort] = ACTIONS(1277), - [anon_sym_c_int] = ACTIONS(1277), - [anon_sym_c_uint] = ACTIONS(1277), - [anon_sym_c_long] = ACTIONS(1277), - [anon_sym_c_ulong] = ACTIONS(1277), - [anon_sym_c_longlong] = ACTIONS(1277), - [anon_sym_c_ulonglong] = ACTIONS(1277), - [anon_sym_c_float] = ACTIONS(1277), - [anon_sym_c_double] = ACTIONS(1277), - [anon_sym_c_longdouble] = ACTIONS(1277), - [anon_sym_PLUS_EQ] = ACTIONS(1275), - [anon_sym_DASH_EQ] = ACTIONS(1275), - [anon_sym_STAR_EQ] = ACTIONS(1275), - [anon_sym_SLASH_EQ] = ACTIONS(1275), - [anon_sym_return] = ACTIONS(1277), - [anon_sym_yield] = ACTIONS(1277), - [anon_sym_COLON] = ACTIONS(1275), - [anon_sym_break] = ACTIONS(1277), - [anon_sym_continue] = ACTIONS(1277), - [anon_sym_defer] = ACTIONS(1277), - [anon_sym_errdefer] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1277), - [anon_sym_else] = ACTIONS(1277), - [anon_sym_while] = ACTIONS(1277), - [anon_sym_for] = ACTIONS(1277), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1277), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1275), - [anon_sym_orelse] = ACTIONS(1277), - [anon_sym_catch] = ACTIONS(1277), - [anon_sym_or] = ACTIONS(1277), - [anon_sym_and] = ACTIONS(1277), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1277), - [anon_sym_LT_EQ] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1277), - [anon_sym_GT_EQ] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1277), - [anon_sym_SLASH] = ACTIONS(1277), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_try] = ACTIONS(1277), - [anon_sym_DOT] = ACTIONS(1277), - [anon_sym_CARET] = ACTIONS(1275), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [sym_none] = ACTIONS(1277), - [sym_undefined] = ACTIONS(1277), - [sym_sink] = ACTIONS(1277), - [sym_integer] = ACTIONS(1277), - [sym_float] = ACTIONS(1275), - [anon_sym_DQUOTE] = ACTIONS(1275), - [sym_multiline_string] = ACTIONS(1275), - [sym_character] = ACTIONS(1275), + [ts_builtin_sym_end] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [anon_sym_import] = ACTIONS(1275), + [anon_sym_func] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_EQ] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1273), + [anon_sym_RPAREN] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_COMMA] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_DOLLAR] = ACTIONS(1273), + [anon_sym_PIPE] = ACTIONS(1273), + [anon_sym_QMARK] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_RBRACK] = ACTIONS(1273), + [anon_sym_void] = ACTIONS(1275), + [anon_sym_anyopaque] = ACTIONS(1275), + [anon_sym_bool] = ACTIONS(1275), + [anon_sym_int] = ACTIONS(1275), + [anon_sym_float] = ACTIONS(1275), + [anon_sym_range] = ACTIONS(1275), + [anon_sym_i8] = ACTIONS(1275), + [anon_sym_i16] = ACTIONS(1275), + [anon_sym_i32] = ACTIONS(1275), + [anon_sym_i64] = ACTIONS(1275), + [anon_sym_u8] = ACTIONS(1275), + [anon_sym_u16] = ACTIONS(1275), + [anon_sym_u32] = ACTIONS(1275), + [anon_sym_u64] = ACTIONS(1275), + [anon_sym_isize] = ACTIONS(1275), + [anon_sym_usize] = ACTIONS(1275), + [anon_sym_f32] = ACTIONS(1275), + [anon_sym_f64] = ACTIONS(1275), + [anon_sym_c_char] = ACTIONS(1275), + [anon_sym_c_schar] = ACTIONS(1275), + [anon_sym_c_uchar] = ACTIONS(1275), + [anon_sym_c_short] = ACTIONS(1275), + [anon_sym_c_ushort] = ACTIONS(1275), + [anon_sym_c_int] = ACTIONS(1275), + [anon_sym_c_uint] = ACTIONS(1275), + [anon_sym_c_long] = ACTIONS(1275), + [anon_sym_c_ulong] = ACTIONS(1275), + [anon_sym_c_longlong] = ACTIONS(1275), + [anon_sym_c_ulonglong] = ACTIONS(1275), + [anon_sym_c_float] = ACTIONS(1275), + [anon_sym_c_double] = ACTIONS(1275), + [anon_sym_c_longdouble] = ACTIONS(1275), + [anon_sym_PLUS_EQ] = ACTIONS(1273), + [anon_sym_DASH_EQ] = ACTIONS(1273), + [anon_sym_STAR_EQ] = ACTIONS(1273), + [anon_sym_SLASH_EQ] = ACTIONS(1273), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_yield] = ACTIONS(1275), + [anon_sym_COLON] = ACTIONS(1273), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_defer] = ACTIONS(1275), + [anon_sym_errdefer] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_else] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1275), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1273), + [anon_sym_orelse] = ACTIONS(1275), + [anon_sym_catch] = ACTIONS(1275), + [anon_sym_or] = ACTIONS(1275), + [anon_sym_and] = ACTIONS(1275), + [anon_sym_EQ_EQ] = ACTIONS(1273), + [anon_sym_BANG_EQ] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_LT_EQ] = ACTIONS(1273), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_GT_EQ] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_SLASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_try] = ACTIONS(1275), + [anon_sym_DOT] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1275), + [anon_sym_false] = ACTIONS(1275), + [sym_none] = ACTIONS(1275), + [sym_undefined] = ACTIONS(1275), + [sym_sink] = ACTIONS(1275), + [sym_integer] = ACTIONS(1275), + [sym_float] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym_multiline_string] = ACTIONS(1273), + [sym_character] = ACTIONS(1273), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1275), + [sym__newline] = ACTIONS(1273), }, [STATE(491)] = { - [ts_builtin_sym_end] = ACTIONS(1279), - [sym_identifier] = ACTIONS(1281), - [anon_sym_import] = ACTIONS(1281), - [anon_sym_func] = ACTIONS(1281), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_struct] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1279), - [anon_sym_RPAREN] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_RBRACE] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_DOLLAR] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_QMARK] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_RBRACK] = ACTIONS(1279), - [anon_sym_void] = ACTIONS(1281), - [anon_sym_anyopaque] = ACTIONS(1281), - [anon_sym_bool] = ACTIONS(1281), - [anon_sym_int] = ACTIONS(1281), - [anon_sym_float] = ACTIONS(1281), - [anon_sym_range] = ACTIONS(1281), - [anon_sym_i8] = ACTIONS(1281), - [anon_sym_i16] = ACTIONS(1281), - [anon_sym_i32] = ACTIONS(1281), - [anon_sym_i64] = ACTIONS(1281), - [anon_sym_u8] = ACTIONS(1281), - [anon_sym_u16] = ACTIONS(1281), - [anon_sym_u32] = ACTIONS(1281), - [anon_sym_u64] = ACTIONS(1281), - [anon_sym_isize] = ACTIONS(1281), - [anon_sym_usize] = ACTIONS(1281), - [anon_sym_f32] = ACTIONS(1281), - [anon_sym_f64] = ACTIONS(1281), - [anon_sym_c_char] = ACTIONS(1281), - [anon_sym_c_schar] = ACTIONS(1281), - [anon_sym_c_uchar] = ACTIONS(1281), - [anon_sym_c_short] = ACTIONS(1281), - [anon_sym_c_ushort] = ACTIONS(1281), - [anon_sym_c_int] = ACTIONS(1281), - [anon_sym_c_uint] = ACTIONS(1281), - [anon_sym_c_long] = ACTIONS(1281), - [anon_sym_c_ulong] = ACTIONS(1281), - [anon_sym_c_longlong] = ACTIONS(1281), - [anon_sym_c_ulonglong] = ACTIONS(1281), - [anon_sym_c_float] = ACTIONS(1281), - [anon_sym_c_double] = ACTIONS(1281), - [anon_sym_c_longdouble] = ACTIONS(1281), - [anon_sym_PLUS_EQ] = ACTIONS(1279), - [anon_sym_DASH_EQ] = ACTIONS(1279), - [anon_sym_STAR_EQ] = ACTIONS(1279), - [anon_sym_SLASH_EQ] = ACTIONS(1279), - [anon_sym_return] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1281), - [anon_sym_COLON] = ACTIONS(1279), - [anon_sym_break] = ACTIONS(1281), - [anon_sym_continue] = ACTIONS(1281), - [anon_sym_defer] = ACTIONS(1281), - [anon_sym_errdefer] = ACTIONS(1281), - [anon_sym_if] = ACTIONS(1281), - [anon_sym_else] = ACTIONS(1281), - [anon_sym_while] = ACTIONS(1281), - [anon_sym_for] = ACTIONS(1281), - [anon_sym_match] = ACTIONS(1281), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1279), - [anon_sym_orelse] = ACTIONS(1281), - [anon_sym_catch] = ACTIONS(1281), - [anon_sym_or] = ACTIONS(1281), - [anon_sym_and] = ACTIONS(1281), - [anon_sym_EQ_EQ] = ACTIONS(1279), - [anon_sym_BANG_EQ] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_LT_EQ] = ACTIONS(1279), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_try] = ACTIONS(1281), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_CARET] = ACTIONS(1279), - [anon_sym_true] = ACTIONS(1281), - [anon_sym_false] = ACTIONS(1281), - [sym_none] = ACTIONS(1281), - [sym_undefined] = ACTIONS(1281), - [sym_sink] = ACTIONS(1281), - [sym_integer] = ACTIONS(1281), - [sym_float] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [sym_multiline_string] = ACTIONS(1279), - [sym_character] = ACTIONS(1279), + [ts_builtin_sym_end] = ACTIONS(606), + [sym_identifier] = ACTIONS(604), + [anon_sym_import] = ACTIONS(604), + [anon_sym_func] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_EQ] = ACTIONS(604), + [anon_sym_struct] = ACTIONS(604), + [anon_sym_LPAREN] = ACTIONS(606), + [anon_sym_RPAREN] = ACTIONS(606), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_COMMA] = ACTIONS(606), + [anon_sym_RBRACE] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(604), + [anon_sym_DOLLAR] = ACTIONS(606), + [anon_sym_PIPE] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_LBRACK] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(606), + [anon_sym_RBRACK] = ACTIONS(606), + [anon_sym_void] = ACTIONS(604), + [anon_sym_anyopaque] = ACTIONS(604), + [anon_sym_bool] = ACTIONS(604), + [anon_sym_int] = ACTIONS(604), + [anon_sym_float] = ACTIONS(604), + [anon_sym_range] = ACTIONS(604), + [anon_sym_i8] = ACTIONS(604), + [anon_sym_i16] = ACTIONS(604), + [anon_sym_i32] = ACTIONS(604), + [anon_sym_i64] = ACTIONS(604), + [anon_sym_u8] = ACTIONS(604), + [anon_sym_u16] = ACTIONS(604), + [anon_sym_u32] = ACTIONS(604), + [anon_sym_u64] = ACTIONS(604), + [anon_sym_isize] = ACTIONS(604), + [anon_sym_usize] = ACTIONS(604), + [anon_sym_f32] = ACTIONS(604), + [anon_sym_f64] = ACTIONS(604), + [anon_sym_c_char] = ACTIONS(604), + [anon_sym_c_schar] = ACTIONS(604), + [anon_sym_c_uchar] = ACTIONS(604), + [anon_sym_c_short] = ACTIONS(604), + [anon_sym_c_ushort] = ACTIONS(604), + [anon_sym_c_int] = ACTIONS(604), + [anon_sym_c_uint] = ACTIONS(604), + [anon_sym_c_long] = ACTIONS(604), + [anon_sym_c_ulong] = ACTIONS(604), + [anon_sym_c_longlong] = ACTIONS(604), + [anon_sym_c_ulonglong] = ACTIONS(604), + [anon_sym_c_float] = ACTIONS(604), + [anon_sym_c_double] = ACTIONS(604), + [anon_sym_c_longdouble] = ACTIONS(604), + [anon_sym_PLUS_EQ] = ACTIONS(606), + [anon_sym_DASH_EQ] = ACTIONS(606), + [anon_sym_STAR_EQ] = ACTIONS(606), + [anon_sym_SLASH_EQ] = ACTIONS(606), + [anon_sym_return] = ACTIONS(604), + [anon_sym_yield] = ACTIONS(604), + [anon_sym_COLON] = ACTIONS(606), + [anon_sym_break] = ACTIONS(604), + [anon_sym_continue] = ACTIONS(604), + [anon_sym_defer] = ACTIONS(604), + [anon_sym_errdefer] = ACTIONS(604), + [anon_sym_if] = ACTIONS(604), + [anon_sym_else] = ACTIONS(604), + [anon_sym_while] = ACTIONS(604), + [anon_sym_for] = ACTIONS(604), + [anon_sym_match] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(604), + [anon_sym_DOT_DOT_EQ] = ACTIONS(606), + [anon_sym_orelse] = ACTIONS(604), + [anon_sym_catch] = ACTIONS(604), + [anon_sym_or] = ACTIONS(604), + [anon_sym_and] = ACTIONS(604), + [anon_sym_EQ_EQ] = ACTIONS(606), + [anon_sym_BANG_EQ] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(604), + [anon_sym_LT_EQ] = ACTIONS(606), + [anon_sym_GT] = ACTIONS(604), + [anon_sym_GT_EQ] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(604), + [anon_sym_SLASH] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_try] = ACTIONS(604), + [anon_sym_DOT] = ACTIONS(604), + [anon_sym_CARET] = ACTIONS(606), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_none] = ACTIONS(604), + [sym_undefined] = ACTIONS(604), + [sym_sink] = ACTIONS(604), + [sym_integer] = ACTIONS(604), + [sym_float] = ACTIONS(606), + [anon_sym_DQUOTE] = ACTIONS(606), + [sym_multiline_string] = ACTIONS(606), + [sym_character] = ACTIONS(606), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1279), + [sym__newline] = ACTIONS(606), }, [STATE(492)] = { - [ts_builtin_sym_end] = ACTIONS(1283), - [sym_identifier] = ACTIONS(1285), - [anon_sym_import] = ACTIONS(1285), - [anon_sym_func] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_struct] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_RPAREN] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(1283), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_RBRACE] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1283), - [anon_sym_QMARK] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_RBRACK] = ACTIONS(1283), - [anon_sym_void] = ACTIONS(1285), - [anon_sym_anyopaque] = ACTIONS(1285), - [anon_sym_bool] = ACTIONS(1285), - [anon_sym_int] = ACTIONS(1285), - [anon_sym_float] = ACTIONS(1285), - [anon_sym_range] = ACTIONS(1285), - [anon_sym_i8] = ACTIONS(1285), - [anon_sym_i16] = ACTIONS(1285), - [anon_sym_i32] = ACTIONS(1285), - [anon_sym_i64] = ACTIONS(1285), - [anon_sym_u8] = ACTIONS(1285), - [anon_sym_u16] = ACTIONS(1285), - [anon_sym_u32] = ACTIONS(1285), - [anon_sym_u64] = ACTIONS(1285), - [anon_sym_isize] = ACTIONS(1285), - [anon_sym_usize] = ACTIONS(1285), - [anon_sym_f32] = ACTIONS(1285), - [anon_sym_f64] = ACTIONS(1285), - [anon_sym_c_char] = ACTIONS(1285), - [anon_sym_c_schar] = ACTIONS(1285), - [anon_sym_c_uchar] = ACTIONS(1285), - [anon_sym_c_short] = ACTIONS(1285), - [anon_sym_c_ushort] = ACTIONS(1285), - [anon_sym_c_int] = ACTIONS(1285), - [anon_sym_c_uint] = ACTIONS(1285), - [anon_sym_c_long] = ACTIONS(1285), - [anon_sym_c_ulong] = ACTIONS(1285), - [anon_sym_c_longlong] = ACTIONS(1285), - [anon_sym_c_ulonglong] = ACTIONS(1285), - [anon_sym_c_float] = ACTIONS(1285), - [anon_sym_c_double] = ACTIONS(1285), - [anon_sym_c_longdouble] = ACTIONS(1285), - [anon_sym_PLUS_EQ] = ACTIONS(1283), - [anon_sym_DASH_EQ] = ACTIONS(1283), - [anon_sym_STAR_EQ] = ACTIONS(1283), - [anon_sym_SLASH_EQ] = ACTIONS(1283), - [anon_sym_return] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1283), - [anon_sym_break] = ACTIONS(1285), - [anon_sym_continue] = ACTIONS(1285), - [anon_sym_defer] = ACTIONS(1285), - [anon_sym_errdefer] = ACTIONS(1285), - [anon_sym_if] = ACTIONS(1285), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1285), - [anon_sym_for] = ACTIONS(1285), - [anon_sym_match] = ACTIONS(1285), - [anon_sym_DOT_DOT] = ACTIONS(1285), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1283), - [anon_sym_orelse] = ACTIONS(1285), - [anon_sym_catch] = ACTIONS(1285), - [anon_sym_or] = ACTIONS(1285), - [anon_sym_and] = ACTIONS(1285), - [anon_sym_EQ_EQ] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_LT_EQ] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_GT_EQ] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_try] = ACTIONS(1285), - [anon_sym_DOT] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_true] = ACTIONS(1285), - [anon_sym_false] = ACTIONS(1285), - [sym_none] = ACTIONS(1285), - [sym_undefined] = ACTIONS(1285), - [sym_sink] = ACTIONS(1285), - [sym_integer] = ACTIONS(1285), - [sym_float] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1283), - [sym_multiline_string] = ACTIONS(1283), - [sym_character] = ACTIONS(1283), + [ts_builtin_sym_end] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1279), + [anon_sym_import] = ACTIONS(1279), + [anon_sym_func] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_EQ] = ACTIONS(1279), + [anon_sym_struct] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1277), + [anon_sym_RPAREN] = ACTIONS(1277), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACE] = ACTIONS(1277), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1277), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1279), + [anon_sym_anyopaque] = ACTIONS(1279), + [anon_sym_bool] = ACTIONS(1279), + [anon_sym_int] = ACTIONS(1279), + [anon_sym_float] = ACTIONS(1279), + [anon_sym_range] = ACTIONS(1279), + [anon_sym_i8] = ACTIONS(1279), + [anon_sym_i16] = ACTIONS(1279), + [anon_sym_i32] = ACTIONS(1279), + [anon_sym_i64] = ACTIONS(1279), + [anon_sym_u8] = ACTIONS(1279), + [anon_sym_u16] = ACTIONS(1279), + [anon_sym_u32] = ACTIONS(1279), + [anon_sym_u64] = ACTIONS(1279), + [anon_sym_isize] = ACTIONS(1279), + [anon_sym_usize] = ACTIONS(1279), + [anon_sym_f32] = ACTIONS(1279), + [anon_sym_f64] = ACTIONS(1279), + [anon_sym_c_char] = ACTIONS(1279), + [anon_sym_c_schar] = ACTIONS(1279), + [anon_sym_c_uchar] = ACTIONS(1279), + [anon_sym_c_short] = ACTIONS(1279), + [anon_sym_c_ushort] = ACTIONS(1279), + [anon_sym_c_int] = ACTIONS(1279), + [anon_sym_c_uint] = ACTIONS(1279), + [anon_sym_c_long] = ACTIONS(1279), + [anon_sym_c_ulong] = ACTIONS(1279), + [anon_sym_c_longlong] = ACTIONS(1279), + [anon_sym_c_ulonglong] = ACTIONS(1279), + [anon_sym_c_float] = ACTIONS(1279), + [anon_sym_c_double] = ACTIONS(1279), + [anon_sym_c_longdouble] = ACTIONS(1279), + [anon_sym_PLUS_EQ] = ACTIONS(1277), + [anon_sym_DASH_EQ] = ACTIONS(1277), + [anon_sym_STAR_EQ] = ACTIONS(1277), + [anon_sym_SLASH_EQ] = ACTIONS(1277), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_COLON] = ACTIONS(1277), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_defer] = ACTIONS(1279), + [anon_sym_errdefer] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_else] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_match] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym_orelse] = ACTIONS(1279), + [anon_sym_catch] = ACTIONS(1279), + [anon_sym_or] = ACTIONS(1279), + [anon_sym_and] = ACTIONS(1279), + [anon_sym_EQ_EQ] = ACTIONS(1277), + [anon_sym_BANG_EQ] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(1279), + [anon_sym_LT_EQ] = ACTIONS(1277), + [anon_sym_GT] = ACTIONS(1279), + [anon_sym_GT_EQ] = ACTIONS(1277), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym_try] = ACTIONS(1279), + [anon_sym_DOT] = ACTIONS(1279), + [anon_sym_CARET] = ACTIONS(1277), + [anon_sym_true] = ACTIONS(1279), + [anon_sym_false] = ACTIONS(1279), + [sym_none] = ACTIONS(1279), + [sym_undefined] = ACTIONS(1279), + [sym_sink] = ACTIONS(1279), + [sym_integer] = ACTIONS(1279), + [sym_float] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym_multiline_string] = ACTIONS(1277), + [sym_character] = ACTIONS(1277), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1283), + [sym__newline] = ACTIONS(1277), }, [STATE(493)] = { - [ts_builtin_sym_end] = ACTIONS(1287), - [sym_identifier] = ACTIONS(1289), - [anon_sym_import] = ACTIONS(1289), - [anon_sym_func] = ACTIONS(1289), - [anon_sym_BANG] = ACTIONS(1289), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_struct] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1287), - [anon_sym_RPAREN] = ACTIONS(1287), - [anon_sym_LBRACE] = ACTIONS(1287), - [anon_sym_COMMA] = ACTIONS(1287), - [anon_sym_RBRACE] = ACTIONS(1287), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR] = ACTIONS(1287), - [anon_sym_PIPE] = ACTIONS(1287), - [anon_sym_QMARK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_RBRACK] = ACTIONS(1287), - [anon_sym_void] = ACTIONS(1289), - [anon_sym_anyopaque] = ACTIONS(1289), - [anon_sym_bool] = ACTIONS(1289), - [anon_sym_int] = ACTIONS(1289), - [anon_sym_float] = ACTIONS(1289), - [anon_sym_range] = ACTIONS(1289), - [anon_sym_i8] = ACTIONS(1289), - [anon_sym_i16] = ACTIONS(1289), - [anon_sym_i32] = ACTIONS(1289), - [anon_sym_i64] = ACTIONS(1289), - [anon_sym_u8] = ACTIONS(1289), - [anon_sym_u16] = ACTIONS(1289), - [anon_sym_u32] = ACTIONS(1289), - [anon_sym_u64] = ACTIONS(1289), - [anon_sym_isize] = ACTIONS(1289), - [anon_sym_usize] = ACTIONS(1289), - [anon_sym_f32] = ACTIONS(1289), - [anon_sym_f64] = ACTIONS(1289), - [anon_sym_c_char] = ACTIONS(1289), - [anon_sym_c_schar] = ACTIONS(1289), - [anon_sym_c_uchar] = ACTIONS(1289), - [anon_sym_c_short] = ACTIONS(1289), - [anon_sym_c_ushort] = ACTIONS(1289), - [anon_sym_c_int] = ACTIONS(1289), - [anon_sym_c_uint] = ACTIONS(1289), - [anon_sym_c_long] = ACTIONS(1289), - [anon_sym_c_ulong] = ACTIONS(1289), - [anon_sym_c_longlong] = ACTIONS(1289), - [anon_sym_c_ulonglong] = ACTIONS(1289), - [anon_sym_c_float] = ACTIONS(1289), - [anon_sym_c_double] = ACTIONS(1289), - [anon_sym_c_longdouble] = ACTIONS(1289), - [anon_sym_PLUS_EQ] = ACTIONS(1287), - [anon_sym_DASH_EQ] = ACTIONS(1287), - [anon_sym_STAR_EQ] = ACTIONS(1287), - [anon_sym_SLASH_EQ] = ACTIONS(1287), - [anon_sym_return] = ACTIONS(1289), - [anon_sym_yield] = ACTIONS(1289), - [anon_sym_COLON] = ACTIONS(1287), - [anon_sym_break] = ACTIONS(1289), - [anon_sym_continue] = ACTIONS(1289), - [anon_sym_defer] = ACTIONS(1289), - [anon_sym_errdefer] = ACTIONS(1289), - [anon_sym_if] = ACTIONS(1289), - [anon_sym_else] = ACTIONS(1289), - [anon_sym_while] = ACTIONS(1289), - [anon_sym_for] = ACTIONS(1289), - [anon_sym_match] = ACTIONS(1289), - [anon_sym_DOT_DOT] = ACTIONS(1289), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1287), - [anon_sym_orelse] = ACTIONS(1289), - [anon_sym_catch] = ACTIONS(1289), - [anon_sym_or] = ACTIONS(1289), - [anon_sym_and] = ACTIONS(1289), - [anon_sym_EQ_EQ] = ACTIONS(1287), - [anon_sym_BANG_EQ] = ACTIONS(1287), - [anon_sym_LT] = ACTIONS(1289), - [anon_sym_LT_EQ] = ACTIONS(1287), - [anon_sym_GT] = ACTIONS(1289), - [anon_sym_GT_EQ] = ACTIONS(1287), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_SLASH] = ACTIONS(1289), - [anon_sym_AMP] = ACTIONS(1287), - [anon_sym_try] = ACTIONS(1289), - [anon_sym_DOT] = ACTIONS(1289), - [anon_sym_CARET] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1289), - [anon_sym_false] = ACTIONS(1289), - [sym_none] = ACTIONS(1289), - [sym_undefined] = ACTIONS(1289), - [sym_sink] = ACTIONS(1289), - [sym_integer] = ACTIONS(1289), - [sym_float] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1287), - [sym_multiline_string] = ACTIONS(1287), - [sym_character] = ACTIONS(1287), + [ts_builtin_sym_end] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [anon_sym_import] = ACTIONS(1283), + [anon_sym_func] = ACTIONS(1283), + [anon_sym_BANG] = ACTIONS(1283), + [anon_sym_EQ] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_RPAREN] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_COMMA] = ACTIONS(1281), + [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_QMARK] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_RBRACK] = ACTIONS(1281), + [anon_sym_void] = ACTIONS(1283), + [anon_sym_anyopaque] = ACTIONS(1283), + [anon_sym_bool] = ACTIONS(1283), + [anon_sym_int] = ACTIONS(1283), + [anon_sym_float] = ACTIONS(1283), + [anon_sym_range] = ACTIONS(1283), + [anon_sym_i8] = ACTIONS(1283), + [anon_sym_i16] = ACTIONS(1283), + [anon_sym_i32] = ACTIONS(1283), + [anon_sym_i64] = ACTIONS(1283), + [anon_sym_u8] = ACTIONS(1283), + [anon_sym_u16] = ACTIONS(1283), + [anon_sym_u32] = ACTIONS(1283), + [anon_sym_u64] = ACTIONS(1283), + [anon_sym_isize] = ACTIONS(1283), + [anon_sym_usize] = ACTIONS(1283), + [anon_sym_f32] = ACTIONS(1283), + [anon_sym_f64] = ACTIONS(1283), + [anon_sym_c_char] = ACTIONS(1283), + [anon_sym_c_schar] = ACTIONS(1283), + [anon_sym_c_uchar] = ACTIONS(1283), + [anon_sym_c_short] = ACTIONS(1283), + [anon_sym_c_ushort] = ACTIONS(1283), + [anon_sym_c_int] = ACTIONS(1283), + [anon_sym_c_uint] = ACTIONS(1283), + [anon_sym_c_long] = ACTIONS(1283), + [anon_sym_c_ulong] = ACTIONS(1283), + [anon_sym_c_longlong] = ACTIONS(1283), + [anon_sym_c_ulonglong] = ACTIONS(1283), + [anon_sym_c_float] = ACTIONS(1283), + [anon_sym_c_double] = ACTIONS(1283), + [anon_sym_c_longdouble] = ACTIONS(1283), + [anon_sym_PLUS_EQ] = ACTIONS(1281), + [anon_sym_DASH_EQ] = ACTIONS(1281), + [anon_sym_STAR_EQ] = ACTIONS(1281), + [anon_sym_SLASH_EQ] = ACTIONS(1281), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_COLON] = ACTIONS(1281), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_defer] = ACTIONS(1283), + [anon_sym_errdefer] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_else] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1283), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1281), + [anon_sym_orelse] = ACTIONS(1283), + [anon_sym_catch] = ACTIONS(1283), + [anon_sym_or] = ACTIONS(1283), + [anon_sym_and] = ACTIONS(1283), + [anon_sym_EQ_EQ] = ACTIONS(1281), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_LT_EQ] = ACTIONS(1281), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_GT_EQ] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_SLASH] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_try] = ACTIONS(1283), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(1283), + [anon_sym_false] = ACTIONS(1283), + [sym_none] = ACTIONS(1283), + [sym_undefined] = ACTIONS(1283), + [sym_sink] = ACTIONS(1283), + [sym_integer] = ACTIONS(1283), + [sym_float] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_multiline_string] = ACTIONS(1281), + [sym_character] = ACTIONS(1281), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1287), + [sym__newline] = ACTIONS(1281), }, [STATE(494)] = { - [ts_builtin_sym_end] = ACTIONS(1291), - [sym_identifier] = ACTIONS(1293), - [anon_sym_import] = ACTIONS(1293), - [anon_sym_func] = ACTIONS(1293), - [anon_sym_BANG] = ACTIONS(1293), - [anon_sym_EQ] = ACTIONS(1293), - [anon_sym_struct] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_RPAREN] = ACTIONS(1291), - [anon_sym_LBRACE] = ACTIONS(1291), - [anon_sym_COMMA] = ACTIONS(1291), - [anon_sym_RBRACE] = ACTIONS(1291), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_DOLLAR] = ACTIONS(1291), - [anon_sym_PIPE] = ACTIONS(1291), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_STAR] = ACTIONS(1293), - [anon_sym_LBRACK] = ACTIONS(1291), - [anon_sym_SEMI] = ACTIONS(1291), - [anon_sym_RBRACK] = ACTIONS(1291), - [anon_sym_void] = ACTIONS(1293), - [anon_sym_anyopaque] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_int] = ACTIONS(1293), - [anon_sym_float] = ACTIONS(1293), - [anon_sym_range] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_c_char] = ACTIONS(1293), - [anon_sym_c_schar] = ACTIONS(1293), - [anon_sym_c_uchar] = ACTIONS(1293), - [anon_sym_c_short] = ACTIONS(1293), - [anon_sym_c_ushort] = ACTIONS(1293), - [anon_sym_c_int] = ACTIONS(1293), - [anon_sym_c_uint] = ACTIONS(1293), - [anon_sym_c_long] = ACTIONS(1293), - [anon_sym_c_ulong] = ACTIONS(1293), - [anon_sym_c_longlong] = ACTIONS(1293), - [anon_sym_c_ulonglong] = ACTIONS(1293), - [anon_sym_c_float] = ACTIONS(1293), - [anon_sym_c_double] = ACTIONS(1293), - [anon_sym_c_longdouble] = ACTIONS(1293), - [anon_sym_PLUS_EQ] = ACTIONS(1291), - [anon_sym_DASH_EQ] = ACTIONS(1291), - [anon_sym_STAR_EQ] = ACTIONS(1291), - [anon_sym_SLASH_EQ] = ACTIONS(1291), - [anon_sym_return] = ACTIONS(1293), - [anon_sym_yield] = ACTIONS(1293), - [anon_sym_COLON] = ACTIONS(1291), - [anon_sym_break] = ACTIONS(1293), - [anon_sym_continue] = ACTIONS(1293), - [anon_sym_defer] = ACTIONS(1293), - [anon_sym_errdefer] = ACTIONS(1293), - [anon_sym_if] = ACTIONS(1293), - [anon_sym_else] = ACTIONS(1293), - [anon_sym_while] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1293), - [anon_sym_match] = ACTIONS(1293), - [anon_sym_DOT_DOT] = ACTIONS(1293), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1291), - [anon_sym_orelse] = ACTIONS(1293), - [anon_sym_catch] = ACTIONS(1293), - [anon_sym_or] = ACTIONS(1293), - [anon_sym_and] = ACTIONS(1293), - [anon_sym_EQ_EQ] = ACTIONS(1291), - [anon_sym_BANG_EQ] = ACTIONS(1291), - [anon_sym_LT] = ACTIONS(1293), - [anon_sym_LT_EQ] = ACTIONS(1291), - [anon_sym_GT] = ACTIONS(1293), - [anon_sym_GT_EQ] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_SLASH] = ACTIONS(1293), - [anon_sym_AMP] = ACTIONS(1291), - [anon_sym_try] = ACTIONS(1293), - [anon_sym_DOT] = ACTIONS(1293), - [anon_sym_CARET] = ACTIONS(1291), - [anon_sym_true] = ACTIONS(1293), - [anon_sym_false] = ACTIONS(1293), - [sym_none] = ACTIONS(1293), - [sym_undefined] = ACTIONS(1293), - [sym_sink] = ACTIONS(1293), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1291), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_multiline_string] = ACTIONS(1291), - [sym_character] = ACTIONS(1291), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1287), + [anon_sym_import] = ACTIONS(1287), + [anon_sym_func] = ACTIONS(1287), + [anon_sym_BANG] = ACTIONS(1287), + [anon_sym_EQ] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1285), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_RBRACK] = ACTIONS(1285), + [anon_sym_void] = ACTIONS(1287), + [anon_sym_anyopaque] = ACTIONS(1287), + [anon_sym_bool] = ACTIONS(1287), + [anon_sym_int] = ACTIONS(1287), + [anon_sym_float] = ACTIONS(1287), + [anon_sym_range] = ACTIONS(1287), + [anon_sym_i8] = ACTIONS(1287), + [anon_sym_i16] = ACTIONS(1287), + [anon_sym_i32] = ACTIONS(1287), + [anon_sym_i64] = ACTIONS(1287), + [anon_sym_u8] = ACTIONS(1287), + [anon_sym_u16] = ACTIONS(1287), + [anon_sym_u32] = ACTIONS(1287), + [anon_sym_u64] = ACTIONS(1287), + [anon_sym_isize] = ACTIONS(1287), + [anon_sym_usize] = ACTIONS(1287), + [anon_sym_f32] = ACTIONS(1287), + [anon_sym_f64] = ACTIONS(1287), + [anon_sym_c_char] = ACTIONS(1287), + [anon_sym_c_schar] = ACTIONS(1287), + [anon_sym_c_uchar] = ACTIONS(1287), + [anon_sym_c_short] = ACTIONS(1287), + [anon_sym_c_ushort] = ACTIONS(1287), + [anon_sym_c_int] = ACTIONS(1287), + [anon_sym_c_uint] = ACTIONS(1287), + [anon_sym_c_long] = ACTIONS(1287), + [anon_sym_c_ulong] = ACTIONS(1287), + [anon_sym_c_longlong] = ACTIONS(1287), + [anon_sym_c_ulonglong] = ACTIONS(1287), + [anon_sym_c_float] = ACTIONS(1287), + [anon_sym_c_double] = ACTIONS(1287), + [anon_sym_c_longdouble] = ACTIONS(1287), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_yield] = ACTIONS(1287), + [anon_sym_COLON] = ACTIONS(1285), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_defer] = ACTIONS(1287), + [anon_sym_errdefer] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_else] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_match] = ACTIONS(1287), + [anon_sym_DOT_DOT] = ACTIONS(1287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_orelse] = ACTIONS(1287), + [anon_sym_catch] = ACTIONS(1287), + [anon_sym_or] = ACTIONS(1287), + [anon_sym_and] = ACTIONS(1287), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1287), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_SLASH] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1287), + [anon_sym_DOT] = ACTIONS(1287), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [sym_none] = ACTIONS(1287), + [sym_undefined] = ACTIONS(1287), + [sym_sink] = ACTIONS(1287), + [sym_integer] = ACTIONS(1287), + [sym_float] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_multiline_string] = ACTIONS(1285), + [sym_character] = ACTIONS(1285), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1291), + [sym__newline] = ACTIONS(1285), }, [STATE(495)] = { - [ts_builtin_sym_end] = ACTIONS(1295), - [sym_identifier] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(1297), - [anon_sym_func] = ACTIONS(1297), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_EQ] = ACTIONS(1297), - [anon_sym_struct] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(1295), - [anon_sym_COMMA] = ACTIONS(1295), - [anon_sym_RBRACE] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_DOLLAR] = ACTIONS(1295), - [anon_sym_PIPE] = ACTIONS(1295), - [anon_sym_QMARK] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1297), - [anon_sym_LBRACK] = ACTIONS(1295), - [anon_sym_SEMI] = ACTIONS(1295), - [anon_sym_RBRACK] = ACTIONS(1295), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_anyopaque] = ACTIONS(1297), - [anon_sym_bool] = ACTIONS(1297), - [anon_sym_int] = ACTIONS(1297), - [anon_sym_float] = ACTIONS(1297), - [anon_sym_range] = ACTIONS(1297), - [anon_sym_i8] = ACTIONS(1297), - [anon_sym_i16] = ACTIONS(1297), - [anon_sym_i32] = ACTIONS(1297), - [anon_sym_i64] = ACTIONS(1297), - [anon_sym_u8] = ACTIONS(1297), - [anon_sym_u16] = ACTIONS(1297), - [anon_sym_u32] = ACTIONS(1297), - [anon_sym_u64] = ACTIONS(1297), - [anon_sym_isize] = ACTIONS(1297), - [anon_sym_usize] = ACTIONS(1297), - [anon_sym_f32] = ACTIONS(1297), - [anon_sym_f64] = ACTIONS(1297), - [anon_sym_c_char] = ACTIONS(1297), - [anon_sym_c_schar] = ACTIONS(1297), - [anon_sym_c_uchar] = ACTIONS(1297), - [anon_sym_c_short] = ACTIONS(1297), - [anon_sym_c_ushort] = ACTIONS(1297), - [anon_sym_c_int] = ACTIONS(1297), - [anon_sym_c_uint] = ACTIONS(1297), - [anon_sym_c_long] = ACTIONS(1297), - [anon_sym_c_ulong] = ACTIONS(1297), - [anon_sym_c_longlong] = ACTIONS(1297), - [anon_sym_c_ulonglong] = ACTIONS(1297), - [anon_sym_c_float] = ACTIONS(1297), - [anon_sym_c_double] = ACTIONS(1297), - [anon_sym_c_longdouble] = ACTIONS(1297), - [anon_sym_PLUS_EQ] = ACTIONS(1295), - [anon_sym_DASH_EQ] = ACTIONS(1295), - [anon_sym_STAR_EQ] = ACTIONS(1295), - [anon_sym_SLASH_EQ] = ACTIONS(1295), - [anon_sym_return] = ACTIONS(1297), - [anon_sym_yield] = ACTIONS(1297), - [anon_sym_COLON] = ACTIONS(1295), - [anon_sym_break] = ACTIONS(1297), - [anon_sym_continue] = ACTIONS(1297), - [anon_sym_defer] = ACTIONS(1297), - [anon_sym_errdefer] = ACTIONS(1297), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_else] = ACTIONS(1297), - [anon_sym_while] = ACTIONS(1297), - [anon_sym_for] = ACTIONS(1297), - [anon_sym_match] = ACTIONS(1297), - [anon_sym_DOT_DOT] = ACTIONS(1297), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1295), - [anon_sym_orelse] = ACTIONS(1297), - [anon_sym_catch] = ACTIONS(1297), - [anon_sym_or] = ACTIONS(1297), - [anon_sym_and] = ACTIONS(1297), - [anon_sym_EQ_EQ] = ACTIONS(1295), - [anon_sym_BANG_EQ] = ACTIONS(1295), - [anon_sym_LT] = ACTIONS(1297), - [anon_sym_LT_EQ] = ACTIONS(1295), - [anon_sym_GT] = ACTIONS(1297), - [anon_sym_GT_EQ] = ACTIONS(1295), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1295), - [anon_sym_try] = ACTIONS(1297), - [anon_sym_DOT] = ACTIONS(1297), - [anon_sym_CARET] = ACTIONS(1295), - [anon_sym_true] = ACTIONS(1297), - [anon_sym_false] = ACTIONS(1297), - [sym_none] = ACTIONS(1297), - [sym_undefined] = ACTIONS(1297), - [sym_sink] = ACTIONS(1297), - [sym_integer] = ACTIONS(1297), - [sym_float] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_multiline_string] = ACTIONS(1295), - [sym_character] = ACTIONS(1295), + [ts_builtin_sym_end] = ACTIONS(1289), + [sym_identifier] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(1291), + [anon_sym_func] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_struct] = ACTIONS(1291), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_RPAREN] = ACTIONS(1289), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_COMMA] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_DOLLAR] = ACTIONS(1289), + [anon_sym_PIPE] = ACTIONS(1289), + [anon_sym_QMARK] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym_RBRACK] = ACTIONS(1289), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_anyopaque] = ACTIONS(1291), + [anon_sym_bool] = ACTIONS(1291), + [anon_sym_int] = ACTIONS(1291), + [anon_sym_float] = ACTIONS(1291), + [anon_sym_range] = ACTIONS(1291), + [anon_sym_i8] = ACTIONS(1291), + [anon_sym_i16] = ACTIONS(1291), + [anon_sym_i32] = ACTIONS(1291), + [anon_sym_i64] = ACTIONS(1291), + [anon_sym_u8] = ACTIONS(1291), + [anon_sym_u16] = ACTIONS(1291), + [anon_sym_u32] = ACTIONS(1291), + [anon_sym_u64] = ACTIONS(1291), + [anon_sym_isize] = ACTIONS(1291), + [anon_sym_usize] = ACTIONS(1291), + [anon_sym_f32] = ACTIONS(1291), + [anon_sym_f64] = ACTIONS(1291), + [anon_sym_c_char] = ACTIONS(1291), + [anon_sym_c_schar] = ACTIONS(1291), + [anon_sym_c_uchar] = ACTIONS(1291), + [anon_sym_c_short] = ACTIONS(1291), + [anon_sym_c_ushort] = ACTIONS(1291), + [anon_sym_c_int] = ACTIONS(1291), + [anon_sym_c_uint] = ACTIONS(1291), + [anon_sym_c_long] = ACTIONS(1291), + [anon_sym_c_ulong] = ACTIONS(1291), + [anon_sym_c_longlong] = ACTIONS(1291), + [anon_sym_c_ulonglong] = ACTIONS(1291), + [anon_sym_c_float] = ACTIONS(1291), + [anon_sym_c_double] = ACTIONS(1291), + [anon_sym_c_longdouble] = ACTIONS(1291), + [anon_sym_PLUS_EQ] = ACTIONS(1289), + [anon_sym_DASH_EQ] = ACTIONS(1289), + [anon_sym_STAR_EQ] = ACTIONS(1289), + [anon_sym_SLASH_EQ] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_yield] = ACTIONS(1291), + [anon_sym_COLON] = ACTIONS(1289), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_defer] = ACTIONS(1291), + [anon_sym_errdefer] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_else] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1289), + [anon_sym_orelse] = ACTIONS(1291), + [anon_sym_catch] = ACTIONS(1291), + [anon_sym_or] = ACTIONS(1291), + [anon_sym_and] = ACTIONS(1291), + [anon_sym_EQ_EQ] = ACTIONS(1289), + [anon_sym_BANG_EQ] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(1291), + [anon_sym_LT_EQ] = ACTIONS(1289), + [anon_sym_GT] = ACTIONS(1291), + [anon_sym_GT_EQ] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_try] = ACTIONS(1291), + [anon_sym_DOT] = ACTIONS(1291), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [sym_none] = ACTIONS(1291), + [sym_undefined] = ACTIONS(1291), + [sym_sink] = ACTIONS(1291), + [sym_integer] = ACTIONS(1291), + [sym_float] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym_multiline_string] = ACTIONS(1289), + [sym_character] = ACTIONS(1289), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1295), + [sym__newline] = ACTIONS(1289), }, [STATE(496)] = { - [ts_builtin_sym_end] = ACTIONS(285), - [sym_identifier] = ACTIONS(289), - [anon_sym_import] = ACTIONS(289), - [anon_sym_func] = ACTIONS(289), - [anon_sym_BANG] = ACTIONS(289), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_struct] = ACTIONS(289), - [anon_sym_LPAREN] = ACTIONS(285), - [anon_sym_RPAREN] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_QMARK] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(289), - [anon_sym_LBRACK] = ACTIONS(285), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_RBRACK] = ACTIONS(285), - [anon_sym_void] = ACTIONS(289), - [anon_sym_anyopaque] = ACTIONS(289), - [anon_sym_bool] = ACTIONS(289), - [anon_sym_int] = ACTIONS(289), - [anon_sym_float] = ACTIONS(289), - [anon_sym_range] = ACTIONS(289), - [anon_sym_i8] = ACTIONS(289), - [anon_sym_i16] = ACTIONS(289), - [anon_sym_i32] = ACTIONS(289), - [anon_sym_i64] = ACTIONS(289), - [anon_sym_u8] = ACTIONS(289), - [anon_sym_u16] = ACTIONS(289), - [anon_sym_u32] = ACTIONS(289), - [anon_sym_u64] = ACTIONS(289), - [anon_sym_isize] = ACTIONS(289), - [anon_sym_usize] = ACTIONS(289), - [anon_sym_f32] = ACTIONS(289), - [anon_sym_f64] = ACTIONS(289), - [anon_sym_c_char] = ACTIONS(289), - [anon_sym_c_schar] = ACTIONS(289), - [anon_sym_c_uchar] = ACTIONS(289), - [anon_sym_c_short] = ACTIONS(289), - [anon_sym_c_ushort] = ACTIONS(289), - [anon_sym_c_int] = ACTIONS(289), - [anon_sym_c_uint] = ACTIONS(289), - [anon_sym_c_long] = ACTIONS(289), - [anon_sym_c_ulong] = ACTIONS(289), - [anon_sym_c_longlong] = ACTIONS(289), - [anon_sym_c_ulonglong] = ACTIONS(289), - [anon_sym_c_float] = ACTIONS(289), - [anon_sym_c_double] = ACTIONS(289), - [anon_sym_c_longdouble] = ACTIONS(289), - [anon_sym_PLUS_EQ] = ACTIONS(285), - [anon_sym_DASH_EQ] = ACTIONS(285), - [anon_sym_STAR_EQ] = ACTIONS(285), - [anon_sym_SLASH_EQ] = ACTIONS(285), - [anon_sym_return] = ACTIONS(289), - [anon_sym_yield] = ACTIONS(289), - [anon_sym_COLON] = ACTIONS(285), - [anon_sym_break] = ACTIONS(289), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_defer] = ACTIONS(289), - [anon_sym_errdefer] = ACTIONS(289), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(289), - [anon_sym_while] = ACTIONS(289), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(289), - [anon_sym_DOT_DOT] = ACTIONS(289), - [anon_sym_DOT_DOT_EQ] = ACTIONS(285), - [anon_sym_orelse] = ACTIONS(289), - [anon_sym_catch] = ACTIONS(289), - [anon_sym_or] = ACTIONS(289), - [anon_sym_and] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(289), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(289), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_try] = ACTIONS(289), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_true] = ACTIONS(289), - [anon_sym_false] = ACTIONS(289), - [sym_none] = ACTIONS(289), - [sym_undefined] = ACTIONS(289), - [sym_sink] = ACTIONS(289), - [sym_integer] = ACTIONS(289), - [sym_float] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [sym_multiline_string] = ACTIONS(285), - [sym_character] = ACTIONS(285), + [ts_builtin_sym_end] = ACTIONS(1293), + [sym_identifier] = ACTIONS(1295), + [anon_sym_import] = ACTIONS(1295), + [anon_sym_func] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_EQ] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_RPAREN] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_COMMA] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_DOLLAR] = ACTIONS(1293), + [anon_sym_PIPE] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1293), + [anon_sym_STAR] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym_RBRACK] = ACTIONS(1293), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_anyopaque] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_int] = ACTIONS(1295), + [anon_sym_float] = ACTIONS(1295), + [anon_sym_range] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_c_char] = ACTIONS(1295), + [anon_sym_c_schar] = ACTIONS(1295), + [anon_sym_c_uchar] = ACTIONS(1295), + [anon_sym_c_short] = ACTIONS(1295), + [anon_sym_c_ushort] = ACTIONS(1295), + [anon_sym_c_int] = ACTIONS(1295), + [anon_sym_c_uint] = ACTIONS(1295), + [anon_sym_c_long] = ACTIONS(1295), + [anon_sym_c_ulong] = ACTIONS(1295), + [anon_sym_c_longlong] = ACTIONS(1295), + [anon_sym_c_ulonglong] = ACTIONS(1295), + [anon_sym_c_float] = ACTIONS(1295), + [anon_sym_c_double] = ACTIONS(1295), + [anon_sym_c_longdouble] = ACTIONS(1295), + [anon_sym_PLUS_EQ] = ACTIONS(1293), + [anon_sym_DASH_EQ] = ACTIONS(1293), + [anon_sym_STAR_EQ] = ACTIONS(1293), + [anon_sym_SLASH_EQ] = ACTIONS(1293), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_yield] = ACTIONS(1295), + [anon_sym_COLON] = ACTIONS(1293), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_defer] = ACTIONS(1295), + [anon_sym_errdefer] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_else] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_match] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1295), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1293), + [anon_sym_orelse] = ACTIONS(1295), + [anon_sym_catch] = ACTIONS(1295), + [anon_sym_or] = ACTIONS(1295), + [anon_sym_and] = ACTIONS(1295), + [anon_sym_EQ_EQ] = ACTIONS(1293), + [anon_sym_BANG_EQ] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(1295), + [anon_sym_LT_EQ] = ACTIONS(1293), + [anon_sym_GT] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_try] = ACTIONS(1295), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_CARET] = ACTIONS(1293), + [anon_sym_true] = ACTIONS(1295), + [anon_sym_false] = ACTIONS(1295), + [sym_none] = ACTIONS(1295), + [sym_undefined] = ACTIONS(1295), + [sym_sink] = ACTIONS(1295), + [sym_integer] = ACTIONS(1295), + [sym_float] = ACTIONS(1293), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_multiline_string] = ACTIONS(1293), + [sym_character] = ACTIONS(1293), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(285), + [sym__newline] = ACTIONS(1293), }, [STATE(497)] = { - [ts_builtin_sym_end] = ACTIONS(1299), - [sym_identifier] = ACTIONS(1301), - [anon_sym_import] = ACTIONS(1301), - [anon_sym_func] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1301), - [anon_sym_struct] = ACTIONS(1301), - [anon_sym_LPAREN] = ACTIONS(1299), - [anon_sym_RPAREN] = ACTIONS(1299), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_COMMA] = ACTIONS(1299), - [anon_sym_RBRACE] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1299), - [anon_sym_QMARK] = ACTIONS(1299), - [anon_sym_STAR] = ACTIONS(1301), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_SEMI] = ACTIONS(1299), - [anon_sym_RBRACK] = ACTIONS(1299), - [anon_sym_void] = ACTIONS(1301), - [anon_sym_anyopaque] = ACTIONS(1301), - [anon_sym_bool] = ACTIONS(1301), - [anon_sym_int] = ACTIONS(1301), - [anon_sym_float] = ACTIONS(1301), - [anon_sym_range] = ACTIONS(1301), - [anon_sym_i8] = ACTIONS(1301), - [anon_sym_i16] = ACTIONS(1301), - [anon_sym_i32] = ACTIONS(1301), - [anon_sym_i64] = ACTIONS(1301), - [anon_sym_u8] = ACTIONS(1301), - [anon_sym_u16] = ACTIONS(1301), - [anon_sym_u32] = ACTIONS(1301), - [anon_sym_u64] = ACTIONS(1301), - [anon_sym_isize] = ACTIONS(1301), - [anon_sym_usize] = ACTIONS(1301), - [anon_sym_f32] = ACTIONS(1301), - [anon_sym_f64] = ACTIONS(1301), - [anon_sym_c_char] = ACTIONS(1301), - [anon_sym_c_schar] = ACTIONS(1301), - [anon_sym_c_uchar] = ACTIONS(1301), - [anon_sym_c_short] = ACTIONS(1301), - [anon_sym_c_ushort] = ACTIONS(1301), - [anon_sym_c_int] = ACTIONS(1301), - [anon_sym_c_uint] = ACTIONS(1301), - [anon_sym_c_long] = ACTIONS(1301), - [anon_sym_c_ulong] = ACTIONS(1301), - [anon_sym_c_longlong] = ACTIONS(1301), - [anon_sym_c_ulonglong] = ACTIONS(1301), - [anon_sym_c_float] = ACTIONS(1301), - [anon_sym_c_double] = ACTIONS(1301), - [anon_sym_c_longdouble] = ACTIONS(1301), - [anon_sym_PLUS_EQ] = ACTIONS(1299), - [anon_sym_DASH_EQ] = ACTIONS(1299), - [anon_sym_STAR_EQ] = ACTIONS(1299), - [anon_sym_SLASH_EQ] = ACTIONS(1299), - [anon_sym_return] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(1301), - [anon_sym_COLON] = ACTIONS(1299), - [anon_sym_break] = ACTIONS(1301), - [anon_sym_continue] = ACTIONS(1301), - [anon_sym_defer] = ACTIONS(1301), - [anon_sym_errdefer] = ACTIONS(1301), - [anon_sym_if] = ACTIONS(1301), - [anon_sym_else] = ACTIONS(1301), - [anon_sym_while] = ACTIONS(1301), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_match] = ACTIONS(1301), - [anon_sym_DOT_DOT] = ACTIONS(1301), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1299), - [anon_sym_orelse] = ACTIONS(1301), - [anon_sym_catch] = ACTIONS(1301), - [anon_sym_or] = ACTIONS(1301), - [anon_sym_and] = ACTIONS(1301), - [anon_sym_EQ_EQ] = ACTIONS(1299), - [anon_sym_BANG_EQ] = ACTIONS(1299), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_LT_EQ] = ACTIONS(1299), - [anon_sym_GT] = ACTIONS(1301), - [anon_sym_GT_EQ] = ACTIONS(1299), - [anon_sym_PLUS] = ACTIONS(1301), - [anon_sym_SLASH] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_try] = ACTIONS(1301), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_CARET] = ACTIONS(1299), - [anon_sym_true] = ACTIONS(1301), - [anon_sym_false] = ACTIONS(1301), - [sym_none] = ACTIONS(1301), - [sym_undefined] = ACTIONS(1301), - [sym_sink] = ACTIONS(1301), - [sym_integer] = ACTIONS(1301), - [sym_float] = ACTIONS(1299), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_multiline_string] = ACTIONS(1299), - [sym_character] = ACTIONS(1299), + [ts_builtin_sym_end] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [anon_sym_import] = ACTIONS(1299), + [anon_sym_func] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1299), + [anon_sym_struct] = ACTIONS(1299), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_RPAREN] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_COMMA] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DOLLAR] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1297), + [anon_sym_QMARK] = ACTIONS(1297), + [anon_sym_STAR] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym_RBRACK] = ACTIONS(1297), + [anon_sym_void] = ACTIONS(1299), + [anon_sym_anyopaque] = ACTIONS(1299), + [anon_sym_bool] = ACTIONS(1299), + [anon_sym_int] = ACTIONS(1299), + [anon_sym_float] = ACTIONS(1299), + [anon_sym_range] = ACTIONS(1299), + [anon_sym_i8] = ACTIONS(1299), + [anon_sym_i16] = ACTIONS(1299), + [anon_sym_i32] = ACTIONS(1299), + [anon_sym_i64] = ACTIONS(1299), + [anon_sym_u8] = ACTIONS(1299), + [anon_sym_u16] = ACTIONS(1299), + [anon_sym_u32] = ACTIONS(1299), + [anon_sym_u64] = ACTIONS(1299), + [anon_sym_isize] = ACTIONS(1299), + [anon_sym_usize] = ACTIONS(1299), + [anon_sym_f32] = ACTIONS(1299), + [anon_sym_f64] = ACTIONS(1299), + [anon_sym_c_char] = ACTIONS(1299), + [anon_sym_c_schar] = ACTIONS(1299), + [anon_sym_c_uchar] = ACTIONS(1299), + [anon_sym_c_short] = ACTIONS(1299), + [anon_sym_c_ushort] = ACTIONS(1299), + [anon_sym_c_int] = ACTIONS(1299), + [anon_sym_c_uint] = ACTIONS(1299), + [anon_sym_c_long] = ACTIONS(1299), + [anon_sym_c_ulong] = ACTIONS(1299), + [anon_sym_c_longlong] = ACTIONS(1299), + [anon_sym_c_ulonglong] = ACTIONS(1299), + [anon_sym_c_float] = ACTIONS(1299), + [anon_sym_c_double] = ACTIONS(1299), + [anon_sym_c_longdouble] = ACTIONS(1299), + [anon_sym_PLUS_EQ] = ACTIONS(1297), + [anon_sym_DASH_EQ] = ACTIONS(1297), + [anon_sym_STAR_EQ] = ACTIONS(1297), + [anon_sym_SLASH_EQ] = ACTIONS(1297), + [anon_sym_return] = ACTIONS(1299), + [anon_sym_yield] = ACTIONS(1299), + [anon_sym_COLON] = ACTIONS(1297), + [anon_sym_break] = ACTIONS(1299), + [anon_sym_continue] = ACTIONS(1299), + [anon_sym_defer] = ACTIONS(1299), + [anon_sym_errdefer] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_else] = ACTIONS(1299), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_match] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(1299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1297), + [anon_sym_orelse] = ACTIONS(1299), + [anon_sym_catch] = ACTIONS(1299), + [anon_sym_or] = ACTIONS(1299), + [anon_sym_and] = ACTIONS(1299), + [anon_sym_EQ_EQ] = ACTIONS(1297), + [anon_sym_BANG_EQ] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_LT_EQ] = ACTIONS(1297), + [anon_sym_GT] = ACTIONS(1299), + [anon_sym_GT_EQ] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_SLASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_try] = ACTIONS(1299), + [anon_sym_DOT] = ACTIONS(1299), + [anon_sym_CARET] = ACTIONS(1297), + [anon_sym_true] = ACTIONS(1299), + [anon_sym_false] = ACTIONS(1299), + [sym_none] = ACTIONS(1299), + [sym_undefined] = ACTIONS(1299), + [sym_sink] = ACTIONS(1299), + [sym_integer] = ACTIONS(1299), + [sym_float] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym_multiline_string] = ACTIONS(1297), + [sym_character] = ACTIONS(1297), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1299), + [sym__newline] = ACTIONS(1297), }, [STATE(498)] = { - [ts_builtin_sym_end] = ACTIONS(1303), - [sym_identifier] = ACTIONS(1305), - [anon_sym_import] = ACTIONS(1305), - [anon_sym_func] = ACTIONS(1305), - [anon_sym_BANG] = ACTIONS(1305), - [anon_sym_EQ] = ACTIONS(1305), - [anon_sym_struct] = ACTIONS(1305), - [anon_sym_LPAREN] = ACTIONS(1303), - [anon_sym_RPAREN] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_COMMA] = ACTIONS(1303), - [anon_sym_RBRACE] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_DOLLAR] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1303), - [anon_sym_QMARK] = ACTIONS(1303), - [anon_sym_STAR] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1303), - [anon_sym_RBRACK] = ACTIONS(1303), - [anon_sym_void] = ACTIONS(1305), - [anon_sym_anyopaque] = ACTIONS(1305), - [anon_sym_bool] = ACTIONS(1305), - [anon_sym_int] = ACTIONS(1305), - [anon_sym_float] = ACTIONS(1305), - [anon_sym_range] = ACTIONS(1305), - [anon_sym_i8] = ACTIONS(1305), - [anon_sym_i16] = ACTIONS(1305), - [anon_sym_i32] = ACTIONS(1305), - [anon_sym_i64] = ACTIONS(1305), - [anon_sym_u8] = ACTIONS(1305), - [anon_sym_u16] = ACTIONS(1305), - [anon_sym_u32] = ACTIONS(1305), - [anon_sym_u64] = ACTIONS(1305), - [anon_sym_isize] = ACTIONS(1305), - [anon_sym_usize] = ACTIONS(1305), - [anon_sym_f32] = ACTIONS(1305), - [anon_sym_f64] = ACTIONS(1305), - [anon_sym_c_char] = ACTIONS(1305), - [anon_sym_c_schar] = ACTIONS(1305), - [anon_sym_c_uchar] = ACTIONS(1305), - [anon_sym_c_short] = ACTIONS(1305), - [anon_sym_c_ushort] = ACTIONS(1305), - [anon_sym_c_int] = ACTIONS(1305), - [anon_sym_c_uint] = ACTIONS(1305), - [anon_sym_c_long] = ACTIONS(1305), - [anon_sym_c_ulong] = ACTIONS(1305), - [anon_sym_c_longlong] = ACTIONS(1305), - [anon_sym_c_ulonglong] = ACTIONS(1305), - [anon_sym_c_float] = ACTIONS(1305), - [anon_sym_c_double] = ACTIONS(1305), - [anon_sym_c_longdouble] = ACTIONS(1305), - [anon_sym_PLUS_EQ] = ACTIONS(1303), - [anon_sym_DASH_EQ] = ACTIONS(1303), - [anon_sym_STAR_EQ] = ACTIONS(1303), - [anon_sym_SLASH_EQ] = ACTIONS(1303), - [anon_sym_return] = ACTIONS(1305), - [anon_sym_yield] = ACTIONS(1305), - [anon_sym_COLON] = ACTIONS(1303), - [anon_sym_break] = ACTIONS(1305), - [anon_sym_continue] = ACTIONS(1305), - [anon_sym_defer] = ACTIONS(1305), - [anon_sym_errdefer] = ACTIONS(1305), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_else] = ACTIONS(1305), - [anon_sym_while] = ACTIONS(1305), - [anon_sym_for] = ACTIONS(1305), - [anon_sym_match] = ACTIONS(1305), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1303), - [anon_sym_orelse] = ACTIONS(1305), - [anon_sym_catch] = ACTIONS(1305), - [anon_sym_or] = ACTIONS(1305), - [anon_sym_and] = ACTIONS(1305), - [anon_sym_EQ_EQ] = ACTIONS(1303), - [anon_sym_BANG_EQ] = ACTIONS(1303), - [anon_sym_LT] = ACTIONS(1305), - [anon_sym_LT_EQ] = ACTIONS(1303), - [anon_sym_GT] = ACTIONS(1305), - [anon_sym_GT_EQ] = ACTIONS(1303), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_SLASH] = ACTIONS(1305), - [anon_sym_AMP] = ACTIONS(1303), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_DOT] = ACTIONS(1305), - [anon_sym_CARET] = ACTIONS(1303), - [anon_sym_true] = ACTIONS(1305), - [anon_sym_false] = ACTIONS(1305), - [sym_none] = ACTIONS(1305), - [sym_undefined] = ACTIONS(1305), - [sym_sink] = ACTIONS(1305), - [sym_integer] = ACTIONS(1305), - [sym_float] = ACTIONS(1303), - [anon_sym_DQUOTE] = ACTIONS(1303), - [sym_multiline_string] = ACTIONS(1303), - [sym_character] = ACTIONS(1303), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(1303), + [anon_sym_func] = ACTIONS(1303), + [anon_sym_BANG] = ACTIONS(1303), + [anon_sym_EQ] = ACTIONS(1303), + [anon_sym_struct] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_COMMA] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_DOLLAR] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1301), + [anon_sym_RBRACK] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1303), + [anon_sym_anyopaque] = ACTIONS(1303), + [anon_sym_bool] = ACTIONS(1303), + [anon_sym_int] = ACTIONS(1303), + [anon_sym_float] = ACTIONS(1303), + [anon_sym_range] = ACTIONS(1303), + [anon_sym_i8] = ACTIONS(1303), + [anon_sym_i16] = ACTIONS(1303), + [anon_sym_i32] = ACTIONS(1303), + [anon_sym_i64] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1303), + [anon_sym_u16] = ACTIONS(1303), + [anon_sym_u32] = ACTIONS(1303), + [anon_sym_u64] = ACTIONS(1303), + [anon_sym_isize] = ACTIONS(1303), + [anon_sym_usize] = ACTIONS(1303), + [anon_sym_f32] = ACTIONS(1303), + [anon_sym_f64] = ACTIONS(1303), + [anon_sym_c_char] = ACTIONS(1303), + [anon_sym_c_schar] = ACTIONS(1303), + [anon_sym_c_uchar] = ACTIONS(1303), + [anon_sym_c_short] = ACTIONS(1303), + [anon_sym_c_ushort] = ACTIONS(1303), + [anon_sym_c_int] = ACTIONS(1303), + [anon_sym_c_uint] = ACTIONS(1303), + [anon_sym_c_long] = ACTIONS(1303), + [anon_sym_c_ulong] = ACTIONS(1303), + [anon_sym_c_longlong] = ACTIONS(1303), + [anon_sym_c_ulonglong] = ACTIONS(1303), + [anon_sym_c_float] = ACTIONS(1303), + [anon_sym_c_double] = ACTIONS(1303), + [anon_sym_c_longdouble] = ACTIONS(1303), + [anon_sym_PLUS_EQ] = ACTIONS(1301), + [anon_sym_DASH_EQ] = ACTIONS(1301), + [anon_sym_STAR_EQ] = ACTIONS(1301), + [anon_sym_SLASH_EQ] = ACTIONS(1301), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_COLON] = ACTIONS(1301), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_defer] = ACTIONS(1303), + [anon_sym_errdefer] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_else] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1301), + [anon_sym_orelse] = ACTIONS(1303), + [anon_sym_catch] = ACTIONS(1303), + [anon_sym_or] = ACTIONS(1303), + [anon_sym_and] = ACTIONS(1303), + [anon_sym_EQ_EQ] = ACTIONS(1301), + [anon_sym_BANG_EQ] = ACTIONS(1301), + [anon_sym_LT] = ACTIONS(1303), + [anon_sym_LT_EQ] = ACTIONS(1301), + [anon_sym_GT] = ACTIONS(1303), + [anon_sym_GT_EQ] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_SLASH] = ACTIONS(1303), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_try] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1303), + [anon_sym_CARET] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [sym_none] = ACTIONS(1303), + [sym_undefined] = ACTIONS(1303), + [sym_sink] = ACTIONS(1303), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1301), + [anon_sym_DQUOTE] = ACTIONS(1301), + [sym_multiline_string] = ACTIONS(1301), + [sym_character] = ACTIONS(1301), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1303), + [sym__newline] = ACTIONS(1301), }, [STATE(499)] = { - [ts_builtin_sym_end] = ACTIONS(1307), - [sym_identifier] = ACTIONS(1309), - [anon_sym_import] = ACTIONS(1309), - [anon_sym_func] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_EQ] = ACTIONS(1309), - [anon_sym_struct] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_RPAREN] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1307), - [anon_sym_COMMA] = ACTIONS(1307), - [anon_sym_RBRACE] = ACTIONS(1307), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_DOLLAR] = ACTIONS(1307), - [anon_sym_PIPE] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(1307), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1307), - [anon_sym_RBRACK] = ACTIONS(1307), - [anon_sym_void] = ACTIONS(1309), - [anon_sym_anyopaque] = ACTIONS(1309), - [anon_sym_bool] = ACTIONS(1309), - [anon_sym_int] = ACTIONS(1309), - [anon_sym_float] = ACTIONS(1309), - [anon_sym_range] = ACTIONS(1309), - [anon_sym_i8] = ACTIONS(1309), - [anon_sym_i16] = ACTIONS(1309), - [anon_sym_i32] = ACTIONS(1309), - [anon_sym_i64] = ACTIONS(1309), - [anon_sym_u8] = ACTIONS(1309), - [anon_sym_u16] = ACTIONS(1309), - [anon_sym_u32] = ACTIONS(1309), - [anon_sym_u64] = ACTIONS(1309), - [anon_sym_isize] = ACTIONS(1309), - [anon_sym_usize] = ACTIONS(1309), - [anon_sym_f32] = ACTIONS(1309), - [anon_sym_f64] = ACTIONS(1309), - [anon_sym_c_char] = ACTIONS(1309), - [anon_sym_c_schar] = ACTIONS(1309), - [anon_sym_c_uchar] = ACTIONS(1309), - [anon_sym_c_short] = ACTIONS(1309), - [anon_sym_c_ushort] = ACTIONS(1309), - [anon_sym_c_int] = ACTIONS(1309), - [anon_sym_c_uint] = ACTIONS(1309), - [anon_sym_c_long] = ACTIONS(1309), - [anon_sym_c_ulong] = ACTIONS(1309), - [anon_sym_c_longlong] = ACTIONS(1309), - [anon_sym_c_ulonglong] = ACTIONS(1309), - [anon_sym_c_float] = ACTIONS(1309), - [anon_sym_c_double] = ACTIONS(1309), - [anon_sym_c_longdouble] = ACTIONS(1309), - [anon_sym_PLUS_EQ] = ACTIONS(1307), - [anon_sym_DASH_EQ] = ACTIONS(1307), - [anon_sym_STAR_EQ] = ACTIONS(1307), - [anon_sym_SLASH_EQ] = ACTIONS(1307), - [anon_sym_return] = ACTIONS(1309), - [anon_sym_yield] = ACTIONS(1309), - [anon_sym_COLON] = ACTIONS(1307), - [anon_sym_break] = ACTIONS(1309), - [anon_sym_continue] = ACTIONS(1309), - [anon_sym_defer] = ACTIONS(1309), - [anon_sym_errdefer] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_else] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1309), - [anon_sym_for] = ACTIONS(1309), - [anon_sym_match] = ACTIONS(1309), - [anon_sym_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1307), - [anon_sym_orelse] = ACTIONS(1309), - [anon_sym_catch] = ACTIONS(1309), - [anon_sym_or] = ACTIONS(1309), - [anon_sym_and] = ACTIONS(1309), - [anon_sym_EQ_EQ] = ACTIONS(1307), - [anon_sym_BANG_EQ] = ACTIONS(1307), - [anon_sym_LT] = ACTIONS(1309), - [anon_sym_LT_EQ] = ACTIONS(1307), - [anon_sym_GT] = ACTIONS(1309), - [anon_sym_GT_EQ] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_SLASH] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1307), - [anon_sym_try] = ACTIONS(1309), - [anon_sym_DOT] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1307), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [sym_none] = ACTIONS(1309), - [sym_undefined] = ACTIONS(1309), - [sym_sink] = ACTIONS(1309), - [sym_integer] = ACTIONS(1309), - [sym_float] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), - [sym_multiline_string] = ACTIONS(1307), - [sym_character] = ACTIONS(1307), + [ts_builtin_sym_end] = ACTIONS(1305), + [sym_identifier] = ACTIONS(1307), + [anon_sym_import] = ACTIONS(1307), + [anon_sym_func] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1307), + [anon_sym_EQ] = ACTIONS(1307), + [anon_sym_struct] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1305), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_QMARK] = ACTIONS(1305), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_RBRACK] = ACTIONS(1305), + [anon_sym_void] = ACTIONS(1307), + [anon_sym_anyopaque] = ACTIONS(1307), + [anon_sym_bool] = ACTIONS(1307), + [anon_sym_int] = ACTIONS(1307), + [anon_sym_float] = ACTIONS(1307), + [anon_sym_range] = ACTIONS(1307), + [anon_sym_i8] = ACTIONS(1307), + [anon_sym_i16] = ACTIONS(1307), + [anon_sym_i32] = ACTIONS(1307), + [anon_sym_i64] = ACTIONS(1307), + [anon_sym_u8] = ACTIONS(1307), + [anon_sym_u16] = ACTIONS(1307), + [anon_sym_u32] = ACTIONS(1307), + [anon_sym_u64] = ACTIONS(1307), + [anon_sym_isize] = ACTIONS(1307), + [anon_sym_usize] = ACTIONS(1307), + [anon_sym_f32] = ACTIONS(1307), + [anon_sym_f64] = ACTIONS(1307), + [anon_sym_c_char] = ACTIONS(1307), + [anon_sym_c_schar] = ACTIONS(1307), + [anon_sym_c_uchar] = ACTIONS(1307), + [anon_sym_c_short] = ACTIONS(1307), + [anon_sym_c_ushort] = ACTIONS(1307), + [anon_sym_c_int] = ACTIONS(1307), + [anon_sym_c_uint] = ACTIONS(1307), + [anon_sym_c_long] = ACTIONS(1307), + [anon_sym_c_ulong] = ACTIONS(1307), + [anon_sym_c_longlong] = ACTIONS(1307), + [anon_sym_c_ulonglong] = ACTIONS(1307), + [anon_sym_c_float] = ACTIONS(1307), + [anon_sym_c_double] = ACTIONS(1307), + [anon_sym_c_longdouble] = ACTIONS(1307), + [anon_sym_PLUS_EQ] = ACTIONS(1305), + [anon_sym_DASH_EQ] = ACTIONS(1305), + [anon_sym_STAR_EQ] = ACTIONS(1305), + [anon_sym_SLASH_EQ] = ACTIONS(1305), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_yield] = ACTIONS(1307), + [anon_sym_COLON] = ACTIONS(1305), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_defer] = ACTIONS(1307), + [anon_sym_errdefer] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_else] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_match] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1305), + [anon_sym_orelse] = ACTIONS(1307), + [anon_sym_catch] = ACTIONS(1307), + [anon_sym_or] = ACTIONS(1307), + [anon_sym_and] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1305), + [anon_sym_BANG_EQ] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(1307), + [anon_sym_LT_EQ] = ACTIONS(1305), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_GT_EQ] = ACTIONS(1305), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_DOT] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1305), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), + [sym_none] = ACTIONS(1307), + [sym_undefined] = ACTIONS(1307), + [sym_sink] = ACTIONS(1307), + [sym_integer] = ACTIONS(1307), + [sym_float] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [sym_multiline_string] = ACTIONS(1305), + [sym_character] = ACTIONS(1305), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1307), + [sym__newline] = ACTIONS(1305), }, [STATE(500)] = { - [ts_builtin_sym_end] = ACTIONS(1311), - [sym_identifier] = ACTIONS(1313), - [anon_sym_import] = ACTIONS(1313), - [anon_sym_func] = ACTIONS(1313), - [anon_sym_BANG] = ACTIONS(1313), - [anon_sym_EQ] = ACTIONS(1313), - [anon_sym_struct] = ACTIONS(1313), - [anon_sym_LPAREN] = ACTIONS(1311), - [anon_sym_RPAREN] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1311), - [anon_sym_COMMA] = ACTIONS(1311), - [anon_sym_RBRACE] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_DOLLAR] = ACTIONS(1311), - [anon_sym_PIPE] = ACTIONS(1311), - [anon_sym_QMARK] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_SEMI] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(1311), - [anon_sym_void] = ACTIONS(1313), - [anon_sym_anyopaque] = ACTIONS(1313), - [anon_sym_bool] = ACTIONS(1313), - [anon_sym_int] = ACTIONS(1313), - [anon_sym_float] = ACTIONS(1313), - [anon_sym_range] = ACTIONS(1313), - [anon_sym_i8] = ACTIONS(1313), - [anon_sym_i16] = ACTIONS(1313), - [anon_sym_i32] = ACTIONS(1313), - [anon_sym_i64] = ACTIONS(1313), - [anon_sym_u8] = ACTIONS(1313), - [anon_sym_u16] = ACTIONS(1313), - [anon_sym_u32] = ACTIONS(1313), - [anon_sym_u64] = ACTIONS(1313), - [anon_sym_isize] = ACTIONS(1313), - [anon_sym_usize] = ACTIONS(1313), - [anon_sym_f32] = ACTIONS(1313), - [anon_sym_f64] = ACTIONS(1313), - [anon_sym_c_char] = ACTIONS(1313), - [anon_sym_c_schar] = ACTIONS(1313), - [anon_sym_c_uchar] = ACTIONS(1313), - [anon_sym_c_short] = ACTIONS(1313), - [anon_sym_c_ushort] = ACTIONS(1313), - [anon_sym_c_int] = ACTIONS(1313), - [anon_sym_c_uint] = ACTIONS(1313), - [anon_sym_c_long] = ACTIONS(1313), - [anon_sym_c_ulong] = ACTIONS(1313), - [anon_sym_c_longlong] = ACTIONS(1313), - [anon_sym_c_ulonglong] = ACTIONS(1313), - [anon_sym_c_float] = ACTIONS(1313), - [anon_sym_c_double] = ACTIONS(1313), - [anon_sym_c_longdouble] = ACTIONS(1313), - [anon_sym_PLUS_EQ] = ACTIONS(1311), - [anon_sym_DASH_EQ] = ACTIONS(1311), - [anon_sym_STAR_EQ] = ACTIONS(1311), - [anon_sym_SLASH_EQ] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_yield] = ACTIONS(1313), - [anon_sym_COLON] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_defer] = ACTIONS(1313), - [anon_sym_errdefer] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1313), - [anon_sym_while] = ACTIONS(1313), - [anon_sym_for] = ACTIONS(1313), - [anon_sym_match] = ACTIONS(1313), - [anon_sym_DOT_DOT] = ACTIONS(1313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1311), - [anon_sym_orelse] = ACTIONS(1313), - [anon_sym_catch] = ACTIONS(1313), - [anon_sym_or] = ACTIONS(1313), - [anon_sym_and] = ACTIONS(1313), - [anon_sym_EQ_EQ] = ACTIONS(1311), - [anon_sym_BANG_EQ] = ACTIONS(1311), - [anon_sym_LT] = ACTIONS(1313), - [anon_sym_LT_EQ] = ACTIONS(1311), - [anon_sym_GT] = ACTIONS(1313), - [anon_sym_GT_EQ] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_AMP] = ACTIONS(1311), - [anon_sym_try] = ACTIONS(1313), - [anon_sym_DOT] = ACTIONS(1313), - [anon_sym_CARET] = ACTIONS(1311), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [sym_none] = ACTIONS(1313), - [sym_undefined] = ACTIONS(1313), - [sym_sink] = ACTIONS(1313), - [sym_integer] = ACTIONS(1313), - [sym_float] = ACTIONS(1311), - [anon_sym_DQUOTE] = ACTIONS(1311), - [sym_multiline_string] = ACTIONS(1311), - [sym_character] = ACTIONS(1311), + [ts_builtin_sym_end] = ACTIONS(1309), + [sym_identifier] = ACTIONS(1311), + [anon_sym_import] = ACTIONS(1311), + [anon_sym_func] = ACTIONS(1311), + [anon_sym_BANG] = ACTIONS(1311), + [anon_sym_EQ] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1309), + [anon_sym_RPAREN] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_COMMA] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_DOLLAR] = ACTIONS(1309), + [anon_sym_PIPE] = ACTIONS(1309), + [anon_sym_QMARK] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_LBRACK] = ACTIONS(1309), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_RBRACK] = ACTIONS(1309), + [anon_sym_void] = ACTIONS(1311), + [anon_sym_anyopaque] = ACTIONS(1311), + [anon_sym_bool] = ACTIONS(1311), + [anon_sym_int] = ACTIONS(1311), + [anon_sym_float] = ACTIONS(1311), + [anon_sym_range] = ACTIONS(1311), + [anon_sym_i8] = ACTIONS(1311), + [anon_sym_i16] = ACTIONS(1311), + [anon_sym_i32] = ACTIONS(1311), + [anon_sym_i64] = ACTIONS(1311), + [anon_sym_u8] = ACTIONS(1311), + [anon_sym_u16] = ACTIONS(1311), + [anon_sym_u32] = ACTIONS(1311), + [anon_sym_u64] = ACTIONS(1311), + [anon_sym_isize] = ACTIONS(1311), + [anon_sym_usize] = ACTIONS(1311), + [anon_sym_f32] = ACTIONS(1311), + [anon_sym_f64] = ACTIONS(1311), + [anon_sym_c_char] = ACTIONS(1311), + [anon_sym_c_schar] = ACTIONS(1311), + [anon_sym_c_uchar] = ACTIONS(1311), + [anon_sym_c_short] = ACTIONS(1311), + [anon_sym_c_ushort] = ACTIONS(1311), + [anon_sym_c_int] = ACTIONS(1311), + [anon_sym_c_uint] = ACTIONS(1311), + [anon_sym_c_long] = ACTIONS(1311), + [anon_sym_c_ulong] = ACTIONS(1311), + [anon_sym_c_longlong] = ACTIONS(1311), + [anon_sym_c_ulonglong] = ACTIONS(1311), + [anon_sym_c_float] = ACTIONS(1311), + [anon_sym_c_double] = ACTIONS(1311), + [anon_sym_c_longdouble] = ACTIONS(1311), + [anon_sym_PLUS_EQ] = ACTIONS(1309), + [anon_sym_DASH_EQ] = ACTIONS(1309), + [anon_sym_STAR_EQ] = ACTIONS(1309), + [anon_sym_SLASH_EQ] = ACTIONS(1309), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_yield] = ACTIONS(1311), + [anon_sym_COLON] = ACTIONS(1309), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_defer] = ACTIONS(1311), + [anon_sym_errdefer] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_else] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_match] = ACTIONS(1311), + [anon_sym_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1309), + [anon_sym_orelse] = ACTIONS(1311), + [anon_sym_catch] = ACTIONS(1311), + [anon_sym_or] = ACTIONS(1311), + [anon_sym_and] = ACTIONS(1311), + [anon_sym_EQ_EQ] = ACTIONS(1309), + [anon_sym_BANG_EQ] = ACTIONS(1309), + [anon_sym_LT] = ACTIONS(1311), + [anon_sym_LT_EQ] = ACTIONS(1309), + [anon_sym_GT] = ACTIONS(1311), + [anon_sym_GT_EQ] = ACTIONS(1309), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_SLASH] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym_try] = ACTIONS(1311), + [anon_sym_DOT] = ACTIONS(1311), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_true] = ACTIONS(1311), + [anon_sym_false] = ACTIONS(1311), + [sym_none] = ACTIONS(1311), + [sym_undefined] = ACTIONS(1311), + [sym_sink] = ACTIONS(1311), + [sym_integer] = ACTIONS(1311), + [sym_float] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1309), + [sym_multiline_string] = ACTIONS(1309), + [sym_character] = ACTIONS(1309), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1311), + [sym__newline] = ACTIONS(1309), }, [STATE(501)] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [sym_identifier] = ACTIONS(1317), - [anon_sym_import] = ACTIONS(1317), - [anon_sym_func] = ACTIONS(1317), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_EQ] = ACTIONS(1317), - [anon_sym_struct] = ACTIONS(1317), - [anon_sym_LPAREN] = ACTIONS(1315), - [anon_sym_RPAREN] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1315), - [anon_sym_COMMA] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(1315), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1315), - [anon_sym_QMARK] = ACTIONS(1315), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_LBRACK] = ACTIONS(1315), - [anon_sym_SEMI] = ACTIONS(1315), - [anon_sym_RBRACK] = ACTIONS(1315), - [anon_sym_void] = ACTIONS(1317), - [anon_sym_anyopaque] = ACTIONS(1317), - [anon_sym_bool] = ACTIONS(1317), - [anon_sym_int] = ACTIONS(1317), - [anon_sym_float] = ACTIONS(1317), - [anon_sym_range] = ACTIONS(1317), - [anon_sym_i8] = ACTIONS(1317), - [anon_sym_i16] = ACTIONS(1317), - [anon_sym_i32] = ACTIONS(1317), - [anon_sym_i64] = ACTIONS(1317), - [anon_sym_u8] = ACTIONS(1317), - [anon_sym_u16] = ACTIONS(1317), - [anon_sym_u32] = ACTIONS(1317), - [anon_sym_u64] = ACTIONS(1317), - [anon_sym_isize] = ACTIONS(1317), - [anon_sym_usize] = ACTIONS(1317), - [anon_sym_f32] = ACTIONS(1317), - [anon_sym_f64] = ACTIONS(1317), - [anon_sym_c_char] = ACTIONS(1317), - [anon_sym_c_schar] = ACTIONS(1317), - [anon_sym_c_uchar] = ACTIONS(1317), - [anon_sym_c_short] = ACTIONS(1317), - [anon_sym_c_ushort] = ACTIONS(1317), - [anon_sym_c_int] = ACTIONS(1317), - [anon_sym_c_uint] = ACTIONS(1317), - [anon_sym_c_long] = ACTIONS(1317), - [anon_sym_c_ulong] = ACTIONS(1317), - [anon_sym_c_longlong] = ACTIONS(1317), - [anon_sym_c_ulonglong] = ACTIONS(1317), - [anon_sym_c_float] = ACTIONS(1317), - [anon_sym_c_double] = ACTIONS(1317), - [anon_sym_c_longdouble] = ACTIONS(1317), - [anon_sym_PLUS_EQ] = ACTIONS(1315), - [anon_sym_DASH_EQ] = ACTIONS(1315), - [anon_sym_STAR_EQ] = ACTIONS(1315), - [anon_sym_SLASH_EQ] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1317), - [anon_sym_yield] = ACTIONS(1317), - [anon_sym_COLON] = ACTIONS(1315), - [anon_sym_break] = ACTIONS(1317), - [anon_sym_continue] = ACTIONS(1317), - [anon_sym_defer] = ACTIONS(1317), - [anon_sym_errdefer] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1317), - [anon_sym_else] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1317), - [anon_sym_for] = ACTIONS(1317), - [anon_sym_match] = ACTIONS(1317), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1315), - [anon_sym_orelse] = ACTIONS(1317), - [anon_sym_catch] = ACTIONS(1317), - [anon_sym_or] = ACTIONS(1317), - [anon_sym_and] = ACTIONS(1317), - [anon_sym_EQ_EQ] = ACTIONS(1315), - [anon_sym_BANG_EQ] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(1317), - [anon_sym_LT_EQ] = ACTIONS(1315), - [anon_sym_GT] = ACTIONS(1317), - [anon_sym_GT_EQ] = ACTIONS(1315), - [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_SLASH] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(1315), - [anon_sym_try] = ACTIONS(1317), - [anon_sym_DOT] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1317), - [anon_sym_false] = ACTIONS(1317), - [sym_none] = ACTIONS(1317), - [sym_undefined] = ACTIONS(1317), - [sym_sink] = ACTIONS(1317), - [sym_integer] = ACTIONS(1317), - [sym_float] = ACTIONS(1315), - [anon_sym_DQUOTE] = ACTIONS(1315), - [sym_multiline_string] = ACTIONS(1315), - [sym_character] = ACTIONS(1315), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1315), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_func] = ACTIONS(1315), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_EQ] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_RPAREN] = ACTIONS(1313), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_DOLLAR] = ACTIONS(1313), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_QMARK] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_RBRACK] = ACTIONS(1313), + [anon_sym_void] = ACTIONS(1315), + [anon_sym_anyopaque] = ACTIONS(1315), + [anon_sym_bool] = ACTIONS(1315), + [anon_sym_int] = ACTIONS(1315), + [anon_sym_float] = ACTIONS(1315), + [anon_sym_range] = ACTIONS(1315), + [anon_sym_i8] = ACTIONS(1315), + [anon_sym_i16] = ACTIONS(1315), + [anon_sym_i32] = ACTIONS(1315), + [anon_sym_i64] = ACTIONS(1315), + [anon_sym_u8] = ACTIONS(1315), + [anon_sym_u16] = ACTIONS(1315), + [anon_sym_u32] = ACTIONS(1315), + [anon_sym_u64] = ACTIONS(1315), + [anon_sym_isize] = ACTIONS(1315), + [anon_sym_usize] = ACTIONS(1315), + [anon_sym_f32] = ACTIONS(1315), + [anon_sym_f64] = ACTIONS(1315), + [anon_sym_c_char] = ACTIONS(1315), + [anon_sym_c_schar] = ACTIONS(1315), + [anon_sym_c_uchar] = ACTIONS(1315), + [anon_sym_c_short] = ACTIONS(1315), + [anon_sym_c_ushort] = ACTIONS(1315), + [anon_sym_c_int] = ACTIONS(1315), + [anon_sym_c_uint] = ACTIONS(1315), + [anon_sym_c_long] = ACTIONS(1315), + [anon_sym_c_ulong] = ACTIONS(1315), + [anon_sym_c_longlong] = ACTIONS(1315), + [anon_sym_c_ulonglong] = ACTIONS(1315), + [anon_sym_c_float] = ACTIONS(1315), + [anon_sym_c_double] = ACTIONS(1315), + [anon_sym_c_longdouble] = ACTIONS(1315), + [anon_sym_PLUS_EQ] = ACTIONS(1313), + [anon_sym_DASH_EQ] = ACTIONS(1313), + [anon_sym_STAR_EQ] = ACTIONS(1313), + [anon_sym_SLASH_EQ] = ACTIONS(1313), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_yield] = ACTIONS(1315), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_defer] = ACTIONS(1315), + [anon_sym_errdefer] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_match] = ACTIONS(1315), + [anon_sym_DOT_DOT] = ACTIONS(1315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_orelse] = ACTIONS(1315), + [anon_sym_catch] = ACTIONS(1315), + [anon_sym_or] = ACTIONS(1315), + [anon_sym_and] = ACTIONS(1315), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1313), + [anon_sym_try] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1315), + [anon_sym_CARET] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [sym_none] = ACTIONS(1315), + [sym_undefined] = ACTIONS(1315), + [sym_sink] = ACTIONS(1315), + [sym_integer] = ACTIONS(1315), + [sym_float] = ACTIONS(1313), + [anon_sym_DQUOTE] = ACTIONS(1313), + [sym_multiline_string] = ACTIONS(1313), + [sym_character] = ACTIONS(1313), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1315), + [sym__newline] = ACTIONS(1313), }, [STATE(502)] = { - [ts_builtin_sym_end] = ACTIONS(1319), - [sym_identifier] = ACTIONS(1321), - [anon_sym_import] = ACTIONS(1321), - [anon_sym_func] = ACTIONS(1321), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1319), - [anon_sym_RPAREN] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_COMMA] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_QMARK] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym_RBRACK] = ACTIONS(1319), - [anon_sym_void] = ACTIONS(1321), - [anon_sym_anyopaque] = ACTIONS(1321), - [anon_sym_bool] = ACTIONS(1321), - [anon_sym_int] = ACTIONS(1321), - [anon_sym_float] = ACTIONS(1321), - [anon_sym_range] = ACTIONS(1321), - [anon_sym_i8] = ACTIONS(1321), - [anon_sym_i16] = ACTIONS(1321), - [anon_sym_i32] = ACTIONS(1321), - [anon_sym_i64] = ACTIONS(1321), - [anon_sym_u8] = ACTIONS(1321), - [anon_sym_u16] = ACTIONS(1321), - [anon_sym_u32] = ACTIONS(1321), - [anon_sym_u64] = ACTIONS(1321), - [anon_sym_isize] = ACTIONS(1321), - [anon_sym_usize] = ACTIONS(1321), - [anon_sym_f32] = ACTIONS(1321), - [anon_sym_f64] = ACTIONS(1321), - [anon_sym_c_char] = ACTIONS(1321), - [anon_sym_c_schar] = ACTIONS(1321), - [anon_sym_c_uchar] = ACTIONS(1321), - [anon_sym_c_short] = ACTIONS(1321), - [anon_sym_c_ushort] = ACTIONS(1321), - [anon_sym_c_int] = ACTIONS(1321), - [anon_sym_c_uint] = ACTIONS(1321), - [anon_sym_c_long] = ACTIONS(1321), - [anon_sym_c_ulong] = ACTIONS(1321), - [anon_sym_c_longlong] = ACTIONS(1321), - [anon_sym_c_ulonglong] = ACTIONS(1321), - [anon_sym_c_float] = ACTIONS(1321), - [anon_sym_c_double] = ACTIONS(1321), - [anon_sym_c_longdouble] = ACTIONS(1321), - [anon_sym_PLUS_EQ] = ACTIONS(1319), - [anon_sym_DASH_EQ] = ACTIONS(1319), - [anon_sym_STAR_EQ] = ACTIONS(1319), - [anon_sym_SLASH_EQ] = ACTIONS(1319), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_yield] = ACTIONS(1321), - [anon_sym_COLON] = ACTIONS(1319), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_defer] = ACTIONS(1321), - [anon_sym_errdefer] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_else] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_match] = ACTIONS(1321), - [anon_sym_DOT_DOT] = ACTIONS(1321), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1319), - [anon_sym_orelse] = ACTIONS(1321), - [anon_sym_catch] = ACTIONS(1321), - [anon_sym_or] = ACTIONS(1321), - [anon_sym_and] = ACTIONS(1321), - [anon_sym_EQ_EQ] = ACTIONS(1319), - [anon_sym_BANG_EQ] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1321), - [anon_sym_LT_EQ] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1321), - [anon_sym_GT_EQ] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_SLASH] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_try] = ACTIONS(1321), - [anon_sym_DOT] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1319), - [anon_sym_true] = ACTIONS(1321), - [anon_sym_false] = ACTIONS(1321), - [sym_none] = ACTIONS(1321), - [sym_undefined] = ACTIONS(1321), - [sym_sink] = ACTIONS(1321), - [sym_integer] = ACTIONS(1321), - [sym_float] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [sym_multiline_string] = ACTIONS(1319), - [sym_character] = ACTIONS(1319), + [ts_builtin_sym_end] = ACTIONS(1317), + [sym_identifier] = ACTIONS(1319), + [anon_sym_import] = ACTIONS(1319), + [anon_sym_func] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(1319), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_RPAREN] = ACTIONS(1317), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_COMMA] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_DOLLAR] = ACTIONS(1317), + [anon_sym_PIPE] = ACTIONS(1317), + [anon_sym_QMARK] = ACTIONS(1317), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym_RBRACK] = ACTIONS(1317), + [anon_sym_void] = ACTIONS(1319), + [anon_sym_anyopaque] = ACTIONS(1319), + [anon_sym_bool] = ACTIONS(1319), + [anon_sym_int] = ACTIONS(1319), + [anon_sym_float] = ACTIONS(1319), + [anon_sym_range] = ACTIONS(1319), + [anon_sym_i8] = ACTIONS(1319), + [anon_sym_i16] = ACTIONS(1319), + [anon_sym_i32] = ACTIONS(1319), + [anon_sym_i64] = ACTIONS(1319), + [anon_sym_u8] = ACTIONS(1319), + [anon_sym_u16] = ACTIONS(1319), + [anon_sym_u32] = ACTIONS(1319), + [anon_sym_u64] = ACTIONS(1319), + [anon_sym_isize] = ACTIONS(1319), + [anon_sym_usize] = ACTIONS(1319), + [anon_sym_f32] = ACTIONS(1319), + [anon_sym_f64] = ACTIONS(1319), + [anon_sym_c_char] = ACTIONS(1319), + [anon_sym_c_schar] = ACTIONS(1319), + [anon_sym_c_uchar] = ACTIONS(1319), + [anon_sym_c_short] = ACTIONS(1319), + [anon_sym_c_ushort] = ACTIONS(1319), + [anon_sym_c_int] = ACTIONS(1319), + [anon_sym_c_uint] = ACTIONS(1319), + [anon_sym_c_long] = ACTIONS(1319), + [anon_sym_c_ulong] = ACTIONS(1319), + [anon_sym_c_longlong] = ACTIONS(1319), + [anon_sym_c_ulonglong] = ACTIONS(1319), + [anon_sym_c_float] = ACTIONS(1319), + [anon_sym_c_double] = ACTIONS(1319), + [anon_sym_c_longdouble] = ACTIONS(1319), + [anon_sym_PLUS_EQ] = ACTIONS(1317), + [anon_sym_DASH_EQ] = ACTIONS(1317), + [anon_sym_STAR_EQ] = ACTIONS(1317), + [anon_sym_SLASH_EQ] = ACTIONS(1317), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_yield] = ACTIONS(1319), + [anon_sym_COLON] = ACTIONS(1317), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_defer] = ACTIONS(1319), + [anon_sym_errdefer] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_else] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_match] = ACTIONS(1319), + [anon_sym_DOT_DOT] = ACTIONS(1319), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1317), + [anon_sym_orelse] = ACTIONS(1319), + [anon_sym_catch] = ACTIONS(1319), + [anon_sym_or] = ACTIONS(1319), + [anon_sym_and] = ACTIONS(1319), + [anon_sym_EQ_EQ] = ACTIONS(1317), + [anon_sym_BANG_EQ] = ACTIONS(1317), + [anon_sym_LT] = ACTIONS(1319), + [anon_sym_LT_EQ] = ACTIONS(1317), + [anon_sym_GT] = ACTIONS(1319), + [anon_sym_GT_EQ] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_try] = ACTIONS(1319), + [anon_sym_DOT] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [sym_none] = ACTIONS(1319), + [sym_undefined] = ACTIONS(1319), + [sym_sink] = ACTIONS(1319), + [sym_integer] = ACTIONS(1319), + [sym_float] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_multiline_string] = ACTIONS(1317), + [sym_character] = ACTIONS(1317), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1319), + [sym__newline] = ACTIONS(1317), }, [STATE(503)] = { - [ts_builtin_sym_end] = ACTIONS(1323), - [sym_identifier] = ACTIONS(1325), - [anon_sym_import] = ACTIONS(1325), - [anon_sym_func] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_EQ] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1323), - [anon_sym_RPAREN] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_COMMA] = ACTIONS(1323), - [anon_sym_RBRACE] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1323), - [anon_sym_PIPE] = ACTIONS(1323), - [anon_sym_QMARK] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_RBRACK] = ACTIONS(1323), - [anon_sym_void] = ACTIONS(1325), - [anon_sym_anyopaque] = ACTIONS(1325), - [anon_sym_bool] = ACTIONS(1325), - [anon_sym_int] = ACTIONS(1325), - [anon_sym_float] = ACTIONS(1325), - [anon_sym_range] = ACTIONS(1325), - [anon_sym_i8] = ACTIONS(1325), - [anon_sym_i16] = ACTIONS(1325), - [anon_sym_i32] = ACTIONS(1325), - [anon_sym_i64] = ACTIONS(1325), - [anon_sym_u8] = ACTIONS(1325), - [anon_sym_u16] = ACTIONS(1325), - [anon_sym_u32] = ACTIONS(1325), - [anon_sym_u64] = ACTIONS(1325), - [anon_sym_isize] = ACTIONS(1325), - [anon_sym_usize] = ACTIONS(1325), - [anon_sym_f32] = ACTIONS(1325), - [anon_sym_f64] = ACTIONS(1325), - [anon_sym_c_char] = ACTIONS(1325), - [anon_sym_c_schar] = ACTIONS(1325), - [anon_sym_c_uchar] = ACTIONS(1325), - [anon_sym_c_short] = ACTIONS(1325), - [anon_sym_c_ushort] = ACTIONS(1325), - [anon_sym_c_int] = ACTIONS(1325), - [anon_sym_c_uint] = ACTIONS(1325), - [anon_sym_c_long] = ACTIONS(1325), - [anon_sym_c_ulong] = ACTIONS(1325), - [anon_sym_c_longlong] = ACTIONS(1325), - [anon_sym_c_ulonglong] = ACTIONS(1325), - [anon_sym_c_float] = ACTIONS(1325), - [anon_sym_c_double] = ACTIONS(1325), - [anon_sym_c_longdouble] = ACTIONS(1325), - [anon_sym_PLUS_EQ] = ACTIONS(1323), - [anon_sym_DASH_EQ] = ACTIONS(1323), - [anon_sym_STAR_EQ] = ACTIONS(1323), - [anon_sym_SLASH_EQ] = ACTIONS(1323), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_yield] = ACTIONS(1325), - [anon_sym_COLON] = ACTIONS(1323), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_defer] = ACTIONS(1325), - [anon_sym_errdefer] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_else] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_match] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1323), - [anon_sym_orelse] = ACTIONS(1325), - [anon_sym_catch] = ACTIONS(1325), - [anon_sym_or] = ACTIONS(1325), - [anon_sym_and] = ACTIONS(1325), - [anon_sym_EQ_EQ] = ACTIONS(1323), - [anon_sym_BANG_EQ] = ACTIONS(1323), - [anon_sym_LT] = ACTIONS(1325), - [anon_sym_LT_EQ] = ACTIONS(1323), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_GT_EQ] = ACTIONS(1323), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(1325), - [anon_sym_DOT] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(1325), - [anon_sym_false] = ACTIONS(1325), - [sym_none] = ACTIONS(1325), - [sym_undefined] = ACTIONS(1325), - [sym_sink] = ACTIONS(1325), - [sym_integer] = ACTIONS(1325), - [sym_float] = ACTIONS(1323), - [anon_sym_DQUOTE] = ACTIONS(1323), - [sym_multiline_string] = ACTIONS(1323), - [sym_character] = ACTIONS(1323), + [ts_builtin_sym_end] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1323), + [anon_sym_import] = ACTIONS(1323), + [anon_sym_func] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1323), + [anon_sym_EQ] = ACTIONS(1323), + [anon_sym_struct] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_RPAREN] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_COMMA] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_DOLLAR] = ACTIONS(1321), + [anon_sym_PIPE] = ACTIONS(1321), + [anon_sym_QMARK] = ACTIONS(1321), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_RBRACK] = ACTIONS(1321), + [anon_sym_void] = ACTIONS(1323), + [anon_sym_anyopaque] = ACTIONS(1323), + [anon_sym_bool] = ACTIONS(1323), + [anon_sym_int] = ACTIONS(1323), + [anon_sym_float] = ACTIONS(1323), + [anon_sym_range] = ACTIONS(1323), + [anon_sym_i8] = ACTIONS(1323), + [anon_sym_i16] = ACTIONS(1323), + [anon_sym_i32] = ACTIONS(1323), + [anon_sym_i64] = ACTIONS(1323), + [anon_sym_u8] = ACTIONS(1323), + [anon_sym_u16] = ACTIONS(1323), + [anon_sym_u32] = ACTIONS(1323), + [anon_sym_u64] = ACTIONS(1323), + [anon_sym_isize] = ACTIONS(1323), + [anon_sym_usize] = ACTIONS(1323), + [anon_sym_f32] = ACTIONS(1323), + [anon_sym_f64] = ACTIONS(1323), + [anon_sym_c_char] = ACTIONS(1323), + [anon_sym_c_schar] = ACTIONS(1323), + [anon_sym_c_uchar] = ACTIONS(1323), + [anon_sym_c_short] = ACTIONS(1323), + [anon_sym_c_ushort] = ACTIONS(1323), + [anon_sym_c_int] = ACTIONS(1323), + [anon_sym_c_uint] = ACTIONS(1323), + [anon_sym_c_long] = ACTIONS(1323), + [anon_sym_c_ulong] = ACTIONS(1323), + [anon_sym_c_longlong] = ACTIONS(1323), + [anon_sym_c_ulonglong] = ACTIONS(1323), + [anon_sym_c_float] = ACTIONS(1323), + [anon_sym_c_double] = ACTIONS(1323), + [anon_sym_c_longdouble] = ACTIONS(1323), + [anon_sym_PLUS_EQ] = ACTIONS(1321), + [anon_sym_DASH_EQ] = ACTIONS(1321), + [anon_sym_STAR_EQ] = ACTIONS(1321), + [anon_sym_SLASH_EQ] = ACTIONS(1321), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_yield] = ACTIONS(1323), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_break] = ACTIONS(1323), + [anon_sym_continue] = ACTIONS(1323), + [anon_sym_defer] = ACTIONS(1323), + [anon_sym_errdefer] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_else] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_match] = ACTIONS(1323), + [anon_sym_DOT_DOT] = ACTIONS(1323), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1321), + [anon_sym_orelse] = ACTIONS(1323), + [anon_sym_catch] = ACTIONS(1323), + [anon_sym_or] = ACTIONS(1323), + [anon_sym_and] = ACTIONS(1323), + [anon_sym_EQ_EQ] = ACTIONS(1321), + [anon_sym_BANG_EQ] = ACTIONS(1321), + [anon_sym_LT] = ACTIONS(1323), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(1323), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_SLASH] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym_try] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(1323), + [anon_sym_CARET] = ACTIONS(1321), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [sym_none] = ACTIONS(1323), + [sym_undefined] = ACTIONS(1323), + [sym_sink] = ACTIONS(1323), + [sym_integer] = ACTIONS(1323), + [sym_float] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1321), + [sym_multiline_string] = ACTIONS(1321), + [sym_character] = ACTIONS(1321), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1323), + [sym__newline] = ACTIONS(1321), }, [STATE(504)] = { - [ts_builtin_sym_end] = ACTIONS(1327), - [sym_identifier] = ACTIONS(1329), - [anon_sym_import] = ACTIONS(1329), - [anon_sym_func] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_EQ] = ACTIONS(1329), - [anon_sym_struct] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1327), - [anon_sym_RPAREN] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_COMMA] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_DOLLAR] = ACTIONS(1327), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_QMARK] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(1327), - [anon_sym_void] = ACTIONS(1329), - [anon_sym_anyopaque] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_int] = ACTIONS(1329), - [anon_sym_float] = ACTIONS(1329), - [anon_sym_range] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_c_char] = ACTIONS(1329), - [anon_sym_c_schar] = ACTIONS(1329), - [anon_sym_c_uchar] = ACTIONS(1329), - [anon_sym_c_short] = ACTIONS(1329), - [anon_sym_c_ushort] = ACTIONS(1329), - [anon_sym_c_int] = ACTIONS(1329), - [anon_sym_c_uint] = ACTIONS(1329), - [anon_sym_c_long] = ACTIONS(1329), - [anon_sym_c_ulong] = ACTIONS(1329), - [anon_sym_c_longlong] = ACTIONS(1329), - [anon_sym_c_ulonglong] = ACTIONS(1329), - [anon_sym_c_float] = ACTIONS(1329), - [anon_sym_c_double] = ACTIONS(1329), - [anon_sym_c_longdouble] = ACTIONS(1329), - [anon_sym_PLUS_EQ] = ACTIONS(1327), - [anon_sym_DASH_EQ] = ACTIONS(1327), - [anon_sym_STAR_EQ] = ACTIONS(1327), - [anon_sym_SLASH_EQ] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_yield] = ACTIONS(1329), - [anon_sym_COLON] = ACTIONS(1327), - [anon_sym_break] = ACTIONS(1329), - [anon_sym_continue] = ACTIONS(1329), - [anon_sym_defer] = ACTIONS(1329), - [anon_sym_errdefer] = ACTIONS(1329), - [anon_sym_if] = ACTIONS(1329), - [anon_sym_else] = ACTIONS(1329), - [anon_sym_while] = ACTIONS(1329), - [anon_sym_for] = ACTIONS(1329), - [anon_sym_match] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1329), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1327), - [anon_sym_orelse] = ACTIONS(1329), - [anon_sym_catch] = ACTIONS(1329), - [anon_sym_or] = ACTIONS(1329), - [anon_sym_and] = ACTIONS(1329), - [anon_sym_EQ_EQ] = ACTIONS(1327), - [anon_sym_BANG_EQ] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(1329), - [anon_sym_LT_EQ] = ACTIONS(1327), - [anon_sym_GT] = ACTIONS(1329), - [anon_sym_GT_EQ] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_SLASH] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_try] = ACTIONS(1329), - [anon_sym_DOT] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(1329), - [anon_sym_false] = ACTIONS(1329), - [sym_none] = ACTIONS(1329), - [sym_undefined] = ACTIONS(1329), - [sym_sink] = ACTIONS(1329), - [sym_integer] = ACTIONS(1329), - [sym_float] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [sym_multiline_string] = ACTIONS(1327), - [sym_character] = ACTIONS(1327), + [ts_builtin_sym_end] = ACTIONS(1325), + [sym_identifier] = ACTIONS(1327), + [anon_sym_import] = ACTIONS(1327), + [anon_sym_func] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_EQ] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_RPAREN] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_COMMA] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_DOLLAR] = ACTIONS(1325), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_QMARK] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_RBRACK] = ACTIONS(1325), + [anon_sym_void] = ACTIONS(1327), + [anon_sym_anyopaque] = ACTIONS(1327), + [anon_sym_bool] = ACTIONS(1327), + [anon_sym_int] = ACTIONS(1327), + [anon_sym_float] = ACTIONS(1327), + [anon_sym_range] = ACTIONS(1327), + [anon_sym_i8] = ACTIONS(1327), + [anon_sym_i16] = ACTIONS(1327), + [anon_sym_i32] = ACTIONS(1327), + [anon_sym_i64] = ACTIONS(1327), + [anon_sym_u8] = ACTIONS(1327), + [anon_sym_u16] = ACTIONS(1327), + [anon_sym_u32] = ACTIONS(1327), + [anon_sym_u64] = ACTIONS(1327), + [anon_sym_isize] = ACTIONS(1327), + [anon_sym_usize] = ACTIONS(1327), + [anon_sym_f32] = ACTIONS(1327), + [anon_sym_f64] = ACTIONS(1327), + [anon_sym_c_char] = ACTIONS(1327), + [anon_sym_c_schar] = ACTIONS(1327), + [anon_sym_c_uchar] = ACTIONS(1327), + [anon_sym_c_short] = ACTIONS(1327), + [anon_sym_c_ushort] = ACTIONS(1327), + [anon_sym_c_int] = ACTIONS(1327), + [anon_sym_c_uint] = ACTIONS(1327), + [anon_sym_c_long] = ACTIONS(1327), + [anon_sym_c_ulong] = ACTIONS(1327), + [anon_sym_c_longlong] = ACTIONS(1327), + [anon_sym_c_ulonglong] = ACTIONS(1327), + [anon_sym_c_float] = ACTIONS(1327), + [anon_sym_c_double] = ACTIONS(1327), + [anon_sym_c_longdouble] = ACTIONS(1327), + [anon_sym_PLUS_EQ] = ACTIONS(1325), + [anon_sym_DASH_EQ] = ACTIONS(1325), + [anon_sym_STAR_EQ] = ACTIONS(1325), + [anon_sym_SLASH_EQ] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_yield] = ACTIONS(1327), + [anon_sym_COLON] = ACTIONS(1325), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_defer] = ACTIONS(1327), + [anon_sym_errdefer] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_else] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_match] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1325), + [anon_sym_orelse] = ACTIONS(1327), + [anon_sym_catch] = ACTIONS(1327), + [anon_sym_or] = ACTIONS(1327), + [anon_sym_and] = ACTIONS(1327), + [anon_sym_EQ_EQ] = ACTIONS(1325), + [anon_sym_BANG_EQ] = ACTIONS(1325), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_LT_EQ] = ACTIONS(1325), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym_try] = ACTIONS(1327), + [anon_sym_DOT] = ACTIONS(1327), + [anon_sym_CARET] = ACTIONS(1325), + [anon_sym_true] = ACTIONS(1327), + [anon_sym_false] = ACTIONS(1327), + [sym_none] = ACTIONS(1327), + [sym_undefined] = ACTIONS(1327), + [sym_sink] = ACTIONS(1327), + [sym_integer] = ACTIONS(1327), + [sym_float] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1325), + [sym_multiline_string] = ACTIONS(1325), + [sym_character] = ACTIONS(1325), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1327), + [sym__newline] = ACTIONS(1325), }, [STATE(505)] = { - [ts_builtin_sym_end] = ACTIONS(1331), - [sym_identifier] = ACTIONS(1333), - [anon_sym_import] = ACTIONS(1333), - [anon_sym_func] = ACTIONS(1333), - [anon_sym_BANG] = ACTIONS(1333), - [anon_sym_EQ] = ACTIONS(1333), - [anon_sym_struct] = ACTIONS(1333), - [anon_sym_LPAREN] = ACTIONS(1331), - [anon_sym_RPAREN] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_COMMA] = ACTIONS(1331), - [anon_sym_RBRACE] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1333), - [anon_sym_DOLLAR] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1331), - [anon_sym_QMARK] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_RBRACK] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1333), - [anon_sym_anyopaque] = ACTIONS(1333), - [anon_sym_bool] = ACTIONS(1333), - [anon_sym_int] = ACTIONS(1333), - [anon_sym_float] = ACTIONS(1333), - [anon_sym_range] = ACTIONS(1333), - [anon_sym_i8] = ACTIONS(1333), - [anon_sym_i16] = ACTIONS(1333), - [anon_sym_i32] = ACTIONS(1333), - [anon_sym_i64] = ACTIONS(1333), - [anon_sym_u8] = ACTIONS(1333), - [anon_sym_u16] = ACTIONS(1333), - [anon_sym_u32] = ACTIONS(1333), - [anon_sym_u64] = ACTIONS(1333), - [anon_sym_isize] = ACTIONS(1333), - [anon_sym_usize] = ACTIONS(1333), - [anon_sym_f32] = ACTIONS(1333), - [anon_sym_f64] = ACTIONS(1333), - [anon_sym_c_char] = ACTIONS(1333), - [anon_sym_c_schar] = ACTIONS(1333), - [anon_sym_c_uchar] = ACTIONS(1333), - [anon_sym_c_short] = ACTIONS(1333), - [anon_sym_c_ushort] = ACTIONS(1333), - [anon_sym_c_int] = ACTIONS(1333), - [anon_sym_c_uint] = ACTIONS(1333), - [anon_sym_c_long] = ACTIONS(1333), - [anon_sym_c_ulong] = ACTIONS(1333), - [anon_sym_c_longlong] = ACTIONS(1333), - [anon_sym_c_ulonglong] = ACTIONS(1333), - [anon_sym_c_float] = ACTIONS(1333), - [anon_sym_c_double] = ACTIONS(1333), - [anon_sym_c_longdouble] = ACTIONS(1333), - [anon_sym_PLUS_EQ] = ACTIONS(1331), - [anon_sym_DASH_EQ] = ACTIONS(1331), - [anon_sym_STAR_EQ] = ACTIONS(1331), - [anon_sym_SLASH_EQ] = ACTIONS(1331), - [anon_sym_return] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1333), - [anon_sym_COLON] = ACTIONS(1331), - [anon_sym_break] = ACTIONS(1333), - [anon_sym_continue] = ACTIONS(1333), - [anon_sym_defer] = ACTIONS(1333), - [anon_sym_errdefer] = ACTIONS(1333), - [anon_sym_if] = ACTIONS(1333), - [anon_sym_else] = ACTIONS(1333), - [anon_sym_while] = ACTIONS(1333), - [anon_sym_for] = ACTIONS(1333), - [anon_sym_match] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1333), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1331), - [anon_sym_orelse] = ACTIONS(1333), - [anon_sym_catch] = ACTIONS(1333), - [anon_sym_or] = ACTIONS(1333), - [anon_sym_and] = ACTIONS(1333), - [anon_sym_EQ_EQ] = ACTIONS(1331), - [anon_sym_BANG_EQ] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_LT_EQ] = ACTIONS(1331), - [anon_sym_GT] = ACTIONS(1333), - [anon_sym_GT_EQ] = ACTIONS(1331), - [anon_sym_PLUS] = ACTIONS(1333), - [anon_sym_SLASH] = ACTIONS(1333), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_try] = ACTIONS(1333), - [anon_sym_DOT] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym_true] = ACTIONS(1333), - [anon_sym_false] = ACTIONS(1333), - [sym_none] = ACTIONS(1333), - [sym_undefined] = ACTIONS(1333), - [sym_sink] = ACTIONS(1333), - [sym_integer] = ACTIONS(1333), - [sym_float] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1331), - [sym_multiline_string] = ACTIONS(1331), - [sym_character] = ACTIONS(1331), + [ts_builtin_sym_end] = ACTIONS(1329), + [sym_identifier] = ACTIONS(1331), + [anon_sym_import] = ACTIONS(1331), + [anon_sym_func] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_EQ] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_LPAREN] = ACTIONS(1329), + [anon_sym_RPAREN] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(1329), + [anon_sym_PIPE] = ACTIONS(1329), + [anon_sym_QMARK] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_RBRACK] = ACTIONS(1329), + [anon_sym_void] = ACTIONS(1331), + [anon_sym_anyopaque] = ACTIONS(1331), + [anon_sym_bool] = ACTIONS(1331), + [anon_sym_int] = ACTIONS(1331), + [anon_sym_float] = ACTIONS(1331), + [anon_sym_range] = ACTIONS(1331), + [anon_sym_i8] = ACTIONS(1331), + [anon_sym_i16] = ACTIONS(1331), + [anon_sym_i32] = ACTIONS(1331), + [anon_sym_i64] = ACTIONS(1331), + [anon_sym_u8] = ACTIONS(1331), + [anon_sym_u16] = ACTIONS(1331), + [anon_sym_u32] = ACTIONS(1331), + [anon_sym_u64] = ACTIONS(1331), + [anon_sym_isize] = ACTIONS(1331), + [anon_sym_usize] = ACTIONS(1331), + [anon_sym_f32] = ACTIONS(1331), + [anon_sym_f64] = ACTIONS(1331), + [anon_sym_c_char] = ACTIONS(1331), + [anon_sym_c_schar] = ACTIONS(1331), + [anon_sym_c_uchar] = ACTIONS(1331), + [anon_sym_c_short] = ACTIONS(1331), + [anon_sym_c_ushort] = ACTIONS(1331), + [anon_sym_c_int] = ACTIONS(1331), + [anon_sym_c_uint] = ACTIONS(1331), + [anon_sym_c_long] = ACTIONS(1331), + [anon_sym_c_ulong] = ACTIONS(1331), + [anon_sym_c_longlong] = ACTIONS(1331), + [anon_sym_c_ulonglong] = ACTIONS(1331), + [anon_sym_c_float] = ACTIONS(1331), + [anon_sym_c_double] = ACTIONS(1331), + [anon_sym_c_longdouble] = ACTIONS(1331), + [anon_sym_PLUS_EQ] = ACTIONS(1329), + [anon_sym_DASH_EQ] = ACTIONS(1329), + [anon_sym_STAR_EQ] = ACTIONS(1329), + [anon_sym_SLASH_EQ] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_yield] = ACTIONS(1331), + [anon_sym_COLON] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_defer] = ACTIONS(1331), + [anon_sym_errdefer] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_else] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_match] = ACTIONS(1331), + [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1329), + [anon_sym_orelse] = ACTIONS(1331), + [anon_sym_catch] = ACTIONS(1331), + [anon_sym_or] = ACTIONS(1331), + [anon_sym_and] = ACTIONS(1331), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_SLASH] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1331), + [anon_sym_DOT] = ACTIONS(1331), + [anon_sym_CARET] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [sym_none] = ACTIONS(1331), + [sym_undefined] = ACTIONS(1331), + [sym_sink] = ACTIONS(1331), + [sym_integer] = ACTIONS(1331), + [sym_float] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_multiline_string] = ACTIONS(1329), + [sym_character] = ACTIONS(1329), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1331), + [sym__newline] = ACTIONS(1329), }, [STATE(506)] = { - [ts_builtin_sym_end] = ACTIONS(1335), - [sym_identifier] = ACTIONS(1337), - [anon_sym_import] = ACTIONS(1337), - [anon_sym_func] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_EQ] = ACTIONS(1337), - [anon_sym_struct] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1335), - [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_COMMA] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_QMARK] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_RBRACK] = ACTIONS(1335), - [anon_sym_void] = ACTIONS(1337), - [anon_sym_anyopaque] = ACTIONS(1337), - [anon_sym_bool] = ACTIONS(1337), - [anon_sym_int] = ACTIONS(1337), - [anon_sym_float] = ACTIONS(1337), - [anon_sym_range] = ACTIONS(1337), - [anon_sym_i8] = ACTIONS(1337), - [anon_sym_i16] = ACTIONS(1337), - [anon_sym_i32] = ACTIONS(1337), - [anon_sym_i64] = ACTIONS(1337), - [anon_sym_u8] = ACTIONS(1337), - [anon_sym_u16] = ACTIONS(1337), - [anon_sym_u32] = ACTIONS(1337), - [anon_sym_u64] = ACTIONS(1337), - [anon_sym_isize] = ACTIONS(1337), - [anon_sym_usize] = ACTIONS(1337), - [anon_sym_f32] = ACTIONS(1337), - [anon_sym_f64] = ACTIONS(1337), - [anon_sym_c_char] = ACTIONS(1337), - [anon_sym_c_schar] = ACTIONS(1337), - [anon_sym_c_uchar] = ACTIONS(1337), - [anon_sym_c_short] = ACTIONS(1337), - [anon_sym_c_ushort] = ACTIONS(1337), - [anon_sym_c_int] = ACTIONS(1337), - [anon_sym_c_uint] = ACTIONS(1337), - [anon_sym_c_long] = ACTIONS(1337), - [anon_sym_c_ulong] = ACTIONS(1337), - [anon_sym_c_longlong] = ACTIONS(1337), - [anon_sym_c_ulonglong] = ACTIONS(1337), - [anon_sym_c_float] = ACTIONS(1337), - [anon_sym_c_double] = ACTIONS(1337), - [anon_sym_c_longdouble] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(1335), - [anon_sym_DASH_EQ] = ACTIONS(1335), - [anon_sym_STAR_EQ] = ACTIONS(1335), - [anon_sym_SLASH_EQ] = ACTIONS(1335), - [anon_sym_return] = ACTIONS(1337), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_COLON] = ACTIONS(1335), - [anon_sym_break] = ACTIONS(1337), - [anon_sym_continue] = ACTIONS(1337), - [anon_sym_defer] = ACTIONS(1337), - [anon_sym_errdefer] = ACTIONS(1337), - [anon_sym_if] = ACTIONS(1337), - [anon_sym_else] = ACTIONS(1337), - [anon_sym_while] = ACTIONS(1337), - [anon_sym_for] = ACTIONS(1337), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_DOT_DOT] = ACTIONS(1337), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1335), - [anon_sym_orelse] = ACTIONS(1337), - [anon_sym_catch] = ACTIONS(1337), - [anon_sym_or] = ACTIONS(1337), - [anon_sym_and] = ACTIONS(1337), - [anon_sym_EQ_EQ] = ACTIONS(1335), - [anon_sym_BANG_EQ] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1337), - [anon_sym_LT_EQ] = ACTIONS(1335), - [anon_sym_GT] = ACTIONS(1337), - [anon_sym_GT_EQ] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_SLASH] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_try] = ACTIONS(1337), - [anon_sym_DOT] = ACTIONS(1337), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_true] = ACTIONS(1337), - [anon_sym_false] = ACTIONS(1337), - [sym_none] = ACTIONS(1337), - [sym_undefined] = ACTIONS(1337), - [sym_sink] = ACTIONS(1337), - [sym_integer] = ACTIONS(1337), - [sym_float] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [sym_multiline_string] = ACTIONS(1335), - [sym_character] = ACTIONS(1335), + [ts_builtin_sym_end] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1335), + [anon_sym_import] = ACTIONS(1335), + [anon_sym_func] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_EQ] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_RPAREN] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_COMMA] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_DOLLAR] = ACTIONS(1333), + [anon_sym_PIPE] = ACTIONS(1333), + [anon_sym_QMARK] = ACTIONS(1333), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_RBRACK] = ACTIONS(1333), + [anon_sym_void] = ACTIONS(1335), + [anon_sym_anyopaque] = ACTIONS(1335), + [anon_sym_bool] = ACTIONS(1335), + [anon_sym_int] = ACTIONS(1335), + [anon_sym_float] = ACTIONS(1335), + [anon_sym_range] = ACTIONS(1335), + [anon_sym_i8] = ACTIONS(1335), + [anon_sym_i16] = ACTIONS(1335), + [anon_sym_i32] = ACTIONS(1335), + [anon_sym_i64] = ACTIONS(1335), + [anon_sym_u8] = ACTIONS(1335), + [anon_sym_u16] = ACTIONS(1335), + [anon_sym_u32] = ACTIONS(1335), + [anon_sym_u64] = ACTIONS(1335), + [anon_sym_isize] = ACTIONS(1335), + [anon_sym_usize] = ACTIONS(1335), + [anon_sym_f32] = ACTIONS(1335), + [anon_sym_f64] = ACTIONS(1335), + [anon_sym_c_char] = ACTIONS(1335), + [anon_sym_c_schar] = ACTIONS(1335), + [anon_sym_c_uchar] = ACTIONS(1335), + [anon_sym_c_short] = ACTIONS(1335), + [anon_sym_c_ushort] = ACTIONS(1335), + [anon_sym_c_int] = ACTIONS(1335), + [anon_sym_c_uint] = ACTIONS(1335), + [anon_sym_c_long] = ACTIONS(1335), + [anon_sym_c_ulong] = ACTIONS(1335), + [anon_sym_c_longlong] = ACTIONS(1335), + [anon_sym_c_ulonglong] = ACTIONS(1335), + [anon_sym_c_float] = ACTIONS(1335), + [anon_sym_c_double] = ACTIONS(1335), + [anon_sym_c_longdouble] = ACTIONS(1335), + [anon_sym_PLUS_EQ] = ACTIONS(1333), + [anon_sym_DASH_EQ] = ACTIONS(1333), + [anon_sym_STAR_EQ] = ACTIONS(1333), + [anon_sym_SLASH_EQ] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1335), + [anon_sym_COLON] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_defer] = ACTIONS(1335), + [anon_sym_errdefer] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_else] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1335), + [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1333), + [anon_sym_orelse] = ACTIONS(1335), + [anon_sym_catch] = ACTIONS(1335), + [anon_sym_or] = ACTIONS(1335), + [anon_sym_and] = ACTIONS(1335), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_SLASH] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_try] = ACTIONS(1335), + [anon_sym_DOT] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(1335), + [anon_sym_false] = ACTIONS(1335), + [sym_none] = ACTIONS(1335), + [sym_undefined] = ACTIONS(1335), + [sym_sink] = ACTIONS(1335), + [sym_integer] = ACTIONS(1335), + [sym_float] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym_multiline_string] = ACTIONS(1333), + [sym_character] = ACTIONS(1333), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1335), + [sym__newline] = ACTIONS(1333), }, [STATE(507)] = { - [ts_builtin_sym_end] = ACTIONS(1339), - [sym_identifier] = ACTIONS(1341), - [anon_sym_import] = ACTIONS(1341), - [anon_sym_func] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [anon_sym_EQ] = ACTIONS(1341), - [anon_sym_struct] = ACTIONS(1341), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_RPAREN] = ACTIONS(1339), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_COMMA] = ACTIONS(1339), - [anon_sym_RBRACE] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1341), - [anon_sym_DOLLAR] = ACTIONS(1339), - [anon_sym_PIPE] = ACTIONS(1339), - [anon_sym_QMARK] = ACTIONS(1339), - [anon_sym_STAR] = ACTIONS(1341), - [anon_sym_LBRACK] = ACTIONS(1339), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_RBRACK] = ACTIONS(1339), - [anon_sym_void] = ACTIONS(1341), - [anon_sym_anyopaque] = ACTIONS(1341), - [anon_sym_bool] = ACTIONS(1341), - [anon_sym_int] = ACTIONS(1341), - [anon_sym_float] = ACTIONS(1341), - [anon_sym_range] = ACTIONS(1341), - [anon_sym_i8] = ACTIONS(1341), - [anon_sym_i16] = ACTIONS(1341), - [anon_sym_i32] = ACTIONS(1341), - [anon_sym_i64] = ACTIONS(1341), - [anon_sym_u8] = ACTIONS(1341), - [anon_sym_u16] = ACTIONS(1341), - [anon_sym_u32] = ACTIONS(1341), - [anon_sym_u64] = ACTIONS(1341), - [anon_sym_isize] = ACTIONS(1341), - [anon_sym_usize] = ACTIONS(1341), - [anon_sym_f32] = ACTIONS(1341), - [anon_sym_f64] = ACTIONS(1341), - [anon_sym_c_char] = ACTIONS(1341), - [anon_sym_c_schar] = ACTIONS(1341), - [anon_sym_c_uchar] = ACTIONS(1341), - [anon_sym_c_short] = ACTIONS(1341), - [anon_sym_c_ushort] = ACTIONS(1341), - [anon_sym_c_int] = ACTIONS(1341), - [anon_sym_c_uint] = ACTIONS(1341), - [anon_sym_c_long] = ACTIONS(1341), - [anon_sym_c_ulong] = ACTIONS(1341), - [anon_sym_c_longlong] = ACTIONS(1341), - [anon_sym_c_ulonglong] = ACTIONS(1341), - [anon_sym_c_float] = ACTIONS(1341), - [anon_sym_c_double] = ACTIONS(1341), - [anon_sym_c_longdouble] = ACTIONS(1341), - [anon_sym_PLUS_EQ] = ACTIONS(1339), - [anon_sym_DASH_EQ] = ACTIONS(1339), - [anon_sym_STAR_EQ] = ACTIONS(1339), - [anon_sym_SLASH_EQ] = ACTIONS(1339), - [anon_sym_return] = ACTIONS(1341), - [anon_sym_yield] = ACTIONS(1341), - [anon_sym_COLON] = ACTIONS(1339), - [anon_sym_break] = ACTIONS(1341), - [anon_sym_continue] = ACTIONS(1341), - [anon_sym_defer] = ACTIONS(1341), - [anon_sym_errdefer] = ACTIONS(1341), - [anon_sym_if] = ACTIONS(1341), - [anon_sym_else] = ACTIONS(1341), - [anon_sym_while] = ACTIONS(1341), - [anon_sym_for] = ACTIONS(1341), - [anon_sym_match] = ACTIONS(1341), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1339), - [anon_sym_orelse] = ACTIONS(1341), - [anon_sym_catch] = ACTIONS(1341), - [anon_sym_or] = ACTIONS(1341), - [anon_sym_and] = ACTIONS(1341), - [anon_sym_EQ_EQ] = ACTIONS(1339), - [anon_sym_BANG_EQ] = ACTIONS(1339), - [anon_sym_LT] = ACTIONS(1341), - [anon_sym_LT_EQ] = ACTIONS(1339), - [anon_sym_GT] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(1341), - [anon_sym_SLASH] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(1339), - [anon_sym_try] = ACTIONS(1341), - [anon_sym_DOT] = ACTIONS(1341), - [anon_sym_CARET] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1341), - [anon_sym_false] = ACTIONS(1341), - [sym_none] = ACTIONS(1341), - [sym_undefined] = ACTIONS(1341), - [sym_sink] = ACTIONS(1341), - [sym_integer] = ACTIONS(1341), - [sym_float] = ACTIONS(1339), - [anon_sym_DQUOTE] = ACTIONS(1339), - [sym_multiline_string] = ACTIONS(1339), - [sym_character] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1339), + [anon_sym_import] = ACTIONS(1339), + [anon_sym_func] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1339), + [anon_sym_EQ] = ACTIONS(1339), + [anon_sym_struct] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_COMMA] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_DOLLAR] = ACTIONS(1337), + [anon_sym_PIPE] = ACTIONS(1337), + [anon_sym_QMARK] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_RBRACK] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1339), + [anon_sym_anyopaque] = ACTIONS(1339), + [anon_sym_bool] = ACTIONS(1339), + [anon_sym_int] = ACTIONS(1339), + [anon_sym_float] = ACTIONS(1339), + [anon_sym_range] = ACTIONS(1339), + [anon_sym_i8] = ACTIONS(1339), + [anon_sym_i16] = ACTIONS(1339), + [anon_sym_i32] = ACTIONS(1339), + [anon_sym_i64] = ACTIONS(1339), + [anon_sym_u8] = ACTIONS(1339), + [anon_sym_u16] = ACTIONS(1339), + [anon_sym_u32] = ACTIONS(1339), + [anon_sym_u64] = ACTIONS(1339), + [anon_sym_isize] = ACTIONS(1339), + [anon_sym_usize] = ACTIONS(1339), + [anon_sym_f32] = ACTIONS(1339), + [anon_sym_f64] = ACTIONS(1339), + [anon_sym_c_char] = ACTIONS(1339), + [anon_sym_c_schar] = ACTIONS(1339), + [anon_sym_c_uchar] = ACTIONS(1339), + [anon_sym_c_short] = ACTIONS(1339), + [anon_sym_c_ushort] = ACTIONS(1339), + [anon_sym_c_int] = ACTIONS(1339), + [anon_sym_c_uint] = ACTIONS(1339), + [anon_sym_c_long] = ACTIONS(1339), + [anon_sym_c_ulong] = ACTIONS(1339), + [anon_sym_c_longlong] = ACTIONS(1339), + [anon_sym_c_ulonglong] = ACTIONS(1339), + [anon_sym_c_float] = ACTIONS(1339), + [anon_sym_c_double] = ACTIONS(1339), + [anon_sym_c_longdouble] = ACTIONS(1339), + [anon_sym_PLUS_EQ] = ACTIONS(1337), + [anon_sym_DASH_EQ] = ACTIONS(1337), + [anon_sym_STAR_EQ] = ACTIONS(1337), + [anon_sym_SLASH_EQ] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1339), + [anon_sym_COLON] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1339), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_defer] = ACTIONS(1339), + [anon_sym_errdefer] = ACTIONS(1339), + [anon_sym_if] = ACTIONS(1339), + [anon_sym_else] = ACTIONS(1339), + [anon_sym_while] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1339), + [anon_sym_match] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1337), + [anon_sym_orelse] = ACTIONS(1339), + [anon_sym_catch] = ACTIONS(1339), + [anon_sym_or] = ACTIONS(1339), + [anon_sym_and] = ACTIONS(1339), + [anon_sym_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ] = ACTIONS(1337), + [anon_sym_LT] = ACTIONS(1339), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1339), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_SLASH] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_try] = ACTIONS(1339), + [anon_sym_DOT] = ACTIONS(1339), + [anon_sym_CARET] = ACTIONS(1337), + [anon_sym_true] = ACTIONS(1339), + [anon_sym_false] = ACTIONS(1339), + [sym_none] = ACTIONS(1339), + [sym_undefined] = ACTIONS(1339), + [sym_sink] = ACTIONS(1339), + [sym_integer] = ACTIONS(1339), + [sym_float] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym_multiline_string] = ACTIONS(1337), + [sym_character] = ACTIONS(1337), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1339), + [sym__newline] = ACTIONS(1337), }, [STATE(508)] = { - [ts_builtin_sym_end] = ACTIONS(1343), - [sym_identifier] = ACTIONS(1345), - [anon_sym_import] = ACTIONS(1345), - [anon_sym_func] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_EQ] = ACTIONS(1345), - [anon_sym_struct] = ACTIONS(1345), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_RPAREN] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_COMMA] = ACTIONS(1343), - [anon_sym_RBRACE] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_DOLLAR] = ACTIONS(1343), - [anon_sym_PIPE] = ACTIONS(1343), - [anon_sym_QMARK] = ACTIONS(1343), - [anon_sym_STAR] = ACTIONS(1345), - [anon_sym_LBRACK] = ACTIONS(1343), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_RBRACK] = ACTIONS(1343), - [anon_sym_void] = ACTIONS(1345), - [anon_sym_anyopaque] = ACTIONS(1345), - [anon_sym_bool] = ACTIONS(1345), - [anon_sym_int] = ACTIONS(1345), - [anon_sym_float] = ACTIONS(1345), - [anon_sym_range] = ACTIONS(1345), - [anon_sym_i8] = ACTIONS(1345), - [anon_sym_i16] = ACTIONS(1345), - [anon_sym_i32] = ACTIONS(1345), - [anon_sym_i64] = ACTIONS(1345), - [anon_sym_u8] = ACTIONS(1345), - [anon_sym_u16] = ACTIONS(1345), - [anon_sym_u32] = ACTIONS(1345), - [anon_sym_u64] = ACTIONS(1345), - [anon_sym_isize] = ACTIONS(1345), - [anon_sym_usize] = ACTIONS(1345), - [anon_sym_f32] = ACTIONS(1345), - [anon_sym_f64] = ACTIONS(1345), - [anon_sym_c_char] = ACTIONS(1345), - [anon_sym_c_schar] = ACTIONS(1345), - [anon_sym_c_uchar] = ACTIONS(1345), - [anon_sym_c_short] = ACTIONS(1345), - [anon_sym_c_ushort] = ACTIONS(1345), - [anon_sym_c_int] = ACTIONS(1345), - [anon_sym_c_uint] = ACTIONS(1345), - [anon_sym_c_long] = ACTIONS(1345), - [anon_sym_c_ulong] = ACTIONS(1345), - [anon_sym_c_longlong] = ACTIONS(1345), - [anon_sym_c_ulonglong] = ACTIONS(1345), - [anon_sym_c_float] = ACTIONS(1345), - [anon_sym_c_double] = ACTIONS(1345), - [anon_sym_c_longdouble] = ACTIONS(1345), - [anon_sym_PLUS_EQ] = ACTIONS(1343), - [anon_sym_DASH_EQ] = ACTIONS(1343), - [anon_sym_STAR_EQ] = ACTIONS(1343), - [anon_sym_SLASH_EQ] = ACTIONS(1343), - [anon_sym_return] = ACTIONS(1345), - [anon_sym_yield] = ACTIONS(1345), - [anon_sym_COLON] = ACTIONS(1343), - [anon_sym_break] = ACTIONS(1345), - [anon_sym_continue] = ACTIONS(1345), - [anon_sym_defer] = ACTIONS(1345), - [anon_sym_errdefer] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_DOT_DOT] = ACTIONS(1345), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1343), - [anon_sym_orelse] = ACTIONS(1345), - [anon_sym_catch] = ACTIONS(1345), - [anon_sym_or] = ACTIONS(1345), - [anon_sym_and] = ACTIONS(1345), - [anon_sym_EQ_EQ] = ACTIONS(1343), - [anon_sym_BANG_EQ] = ACTIONS(1343), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_LT_EQ] = ACTIONS(1343), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_SLASH] = ACTIONS(1345), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_try] = ACTIONS(1345), - [anon_sym_DOT] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1343), - [anon_sym_true] = ACTIONS(1345), - [anon_sym_false] = ACTIONS(1345), - [sym_none] = ACTIONS(1345), - [sym_undefined] = ACTIONS(1345), - [sym_sink] = ACTIONS(1345), - [sym_integer] = ACTIONS(1345), - [sym_float] = ACTIONS(1343), - [anon_sym_DQUOTE] = ACTIONS(1343), - [sym_multiline_string] = ACTIONS(1343), - [sym_character] = ACTIONS(1343), + [ts_builtin_sym_end] = ACTIONS(1341), + [sym_identifier] = ACTIONS(1343), + [anon_sym_import] = ACTIONS(1343), + [anon_sym_func] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_EQ] = ACTIONS(1343), + [anon_sym_struct] = ACTIONS(1343), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_RPAREN] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_COMMA] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_DOLLAR] = ACTIONS(1341), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_LBRACK] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_RBRACK] = ACTIONS(1341), + [anon_sym_void] = ACTIONS(1343), + [anon_sym_anyopaque] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_int] = ACTIONS(1343), + [anon_sym_float] = ACTIONS(1343), + [anon_sym_range] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_c_char] = ACTIONS(1343), + [anon_sym_c_schar] = ACTIONS(1343), + [anon_sym_c_uchar] = ACTIONS(1343), + [anon_sym_c_short] = ACTIONS(1343), + [anon_sym_c_ushort] = ACTIONS(1343), + [anon_sym_c_int] = ACTIONS(1343), + [anon_sym_c_uint] = ACTIONS(1343), + [anon_sym_c_long] = ACTIONS(1343), + [anon_sym_c_ulong] = ACTIONS(1343), + [anon_sym_c_longlong] = ACTIONS(1343), + [anon_sym_c_ulonglong] = ACTIONS(1343), + [anon_sym_c_float] = ACTIONS(1343), + [anon_sym_c_double] = ACTIONS(1343), + [anon_sym_c_longdouble] = ACTIONS(1343), + [anon_sym_PLUS_EQ] = ACTIONS(1341), + [anon_sym_DASH_EQ] = ACTIONS(1341), + [anon_sym_STAR_EQ] = ACTIONS(1341), + [anon_sym_SLASH_EQ] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_yield] = ACTIONS(1343), + [anon_sym_COLON] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_defer] = ACTIONS(1343), + [anon_sym_errdefer] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_else] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_match] = ACTIONS(1343), + [anon_sym_DOT_DOT] = ACTIONS(1343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1341), + [anon_sym_orelse] = ACTIONS(1343), + [anon_sym_catch] = ACTIONS(1343), + [anon_sym_or] = ACTIONS(1343), + [anon_sym_and] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1341), + [anon_sym_BANG_EQ] = ACTIONS(1341), + [anon_sym_LT] = ACTIONS(1343), + [anon_sym_LT_EQ] = ACTIONS(1341), + [anon_sym_GT] = ACTIONS(1343), + [anon_sym_GT_EQ] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_SLASH] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_try] = ACTIONS(1343), + [anon_sym_DOT] = ACTIONS(1343), + [anon_sym_CARET] = ACTIONS(1341), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [sym_none] = ACTIONS(1343), + [sym_undefined] = ACTIONS(1343), + [sym_sink] = ACTIONS(1343), + [sym_integer] = ACTIONS(1343), + [sym_float] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym_multiline_string] = ACTIONS(1341), + [sym_character] = ACTIONS(1341), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1343), + [sym__newline] = ACTIONS(1341), }, [STATE(509)] = { - [ts_builtin_sym_end] = ACTIONS(1347), - [sym_identifier] = ACTIONS(1349), - [anon_sym_import] = ACTIONS(1349), - [anon_sym_func] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_EQ] = ACTIONS(1349), - [anon_sym_struct] = ACTIONS(1349), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_RPAREN] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1347), - [anon_sym_COMMA] = ACTIONS(1347), - [anon_sym_RBRACE] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_DOLLAR] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_QMARK] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_RBRACK] = ACTIONS(1347), - [anon_sym_void] = ACTIONS(1349), - [anon_sym_anyopaque] = ACTIONS(1349), - [anon_sym_bool] = ACTIONS(1349), - [anon_sym_int] = ACTIONS(1349), - [anon_sym_float] = ACTIONS(1349), - [anon_sym_range] = ACTIONS(1349), - [anon_sym_i8] = ACTIONS(1349), - [anon_sym_i16] = ACTIONS(1349), - [anon_sym_i32] = ACTIONS(1349), - [anon_sym_i64] = ACTIONS(1349), - [anon_sym_u8] = ACTIONS(1349), - [anon_sym_u16] = ACTIONS(1349), - [anon_sym_u32] = ACTIONS(1349), - [anon_sym_u64] = ACTIONS(1349), - [anon_sym_isize] = ACTIONS(1349), - [anon_sym_usize] = ACTIONS(1349), - [anon_sym_f32] = ACTIONS(1349), - [anon_sym_f64] = ACTIONS(1349), - [anon_sym_c_char] = ACTIONS(1349), - [anon_sym_c_schar] = ACTIONS(1349), - [anon_sym_c_uchar] = ACTIONS(1349), - [anon_sym_c_short] = ACTIONS(1349), - [anon_sym_c_ushort] = ACTIONS(1349), - [anon_sym_c_int] = ACTIONS(1349), - [anon_sym_c_uint] = ACTIONS(1349), - [anon_sym_c_long] = ACTIONS(1349), - [anon_sym_c_ulong] = ACTIONS(1349), - [anon_sym_c_longlong] = ACTIONS(1349), - [anon_sym_c_ulonglong] = ACTIONS(1349), - [anon_sym_c_float] = ACTIONS(1349), - [anon_sym_c_double] = ACTIONS(1349), - [anon_sym_c_longdouble] = ACTIONS(1349), - [anon_sym_PLUS_EQ] = ACTIONS(1347), - [anon_sym_DASH_EQ] = ACTIONS(1347), - [anon_sym_STAR_EQ] = ACTIONS(1347), - [anon_sym_SLASH_EQ] = ACTIONS(1347), - [anon_sym_return] = ACTIONS(1349), - [anon_sym_yield] = ACTIONS(1349), - [anon_sym_COLON] = ACTIONS(1347), - [anon_sym_break] = ACTIONS(1349), - [anon_sym_continue] = ACTIONS(1349), - [anon_sym_defer] = ACTIONS(1349), - [anon_sym_errdefer] = ACTIONS(1349), - [anon_sym_if] = ACTIONS(1349), - [anon_sym_else] = ACTIONS(1349), - [anon_sym_while] = ACTIONS(1349), - [anon_sym_for] = ACTIONS(1349), - [anon_sym_match] = ACTIONS(1349), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1347), - [anon_sym_orelse] = ACTIONS(1349), - [anon_sym_catch] = ACTIONS(1349), - [anon_sym_or] = ACTIONS(1349), - [anon_sym_and] = ACTIONS(1349), - [anon_sym_EQ_EQ] = ACTIONS(1347), - [anon_sym_BANG_EQ] = ACTIONS(1347), - [anon_sym_LT] = ACTIONS(1349), - [anon_sym_LT_EQ] = ACTIONS(1347), - [anon_sym_GT] = ACTIONS(1349), - [anon_sym_GT_EQ] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_SLASH] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_try] = ACTIONS(1349), - [anon_sym_DOT] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1347), - [anon_sym_true] = ACTIONS(1349), - [anon_sym_false] = ACTIONS(1349), - [sym_none] = ACTIONS(1349), - [sym_undefined] = ACTIONS(1349), - [sym_sink] = ACTIONS(1349), - [sym_integer] = ACTIONS(1349), - [sym_float] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(1347), - [sym_multiline_string] = ACTIONS(1347), - [sym_character] = ACTIONS(1347), + [ts_builtin_sym_end] = ACTIONS(1345), + [sym_identifier] = ACTIONS(1347), + [anon_sym_import] = ACTIONS(1347), + [anon_sym_func] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_RPAREN] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_COMMA] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1345), + [anon_sym_QMARK] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_RBRACK] = ACTIONS(1345), + [anon_sym_void] = ACTIONS(1347), + [anon_sym_anyopaque] = ACTIONS(1347), + [anon_sym_bool] = ACTIONS(1347), + [anon_sym_int] = ACTIONS(1347), + [anon_sym_float] = ACTIONS(1347), + [anon_sym_range] = ACTIONS(1347), + [anon_sym_i8] = ACTIONS(1347), + [anon_sym_i16] = ACTIONS(1347), + [anon_sym_i32] = ACTIONS(1347), + [anon_sym_i64] = ACTIONS(1347), + [anon_sym_u8] = ACTIONS(1347), + [anon_sym_u16] = ACTIONS(1347), + [anon_sym_u32] = ACTIONS(1347), + [anon_sym_u64] = ACTIONS(1347), + [anon_sym_isize] = ACTIONS(1347), + [anon_sym_usize] = ACTIONS(1347), + [anon_sym_f32] = ACTIONS(1347), + [anon_sym_f64] = ACTIONS(1347), + [anon_sym_c_char] = ACTIONS(1347), + [anon_sym_c_schar] = ACTIONS(1347), + [anon_sym_c_uchar] = ACTIONS(1347), + [anon_sym_c_short] = ACTIONS(1347), + [anon_sym_c_ushort] = ACTIONS(1347), + [anon_sym_c_int] = ACTIONS(1347), + [anon_sym_c_uint] = ACTIONS(1347), + [anon_sym_c_long] = ACTIONS(1347), + [anon_sym_c_ulong] = ACTIONS(1347), + [anon_sym_c_longlong] = ACTIONS(1347), + [anon_sym_c_ulonglong] = ACTIONS(1347), + [anon_sym_c_float] = ACTIONS(1347), + [anon_sym_c_double] = ACTIONS(1347), + [anon_sym_c_longdouble] = ACTIONS(1347), + [anon_sym_PLUS_EQ] = ACTIONS(1345), + [anon_sym_DASH_EQ] = ACTIONS(1345), + [anon_sym_STAR_EQ] = ACTIONS(1345), + [anon_sym_SLASH_EQ] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_yield] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_defer] = ACTIONS(1347), + [anon_sym_errdefer] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_else] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_match] = ACTIONS(1347), + [anon_sym_DOT_DOT] = ACTIONS(1347), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1345), + [anon_sym_orelse] = ACTIONS(1347), + [anon_sym_catch] = ACTIONS(1347), + [anon_sym_or] = ACTIONS(1347), + [anon_sym_and] = ACTIONS(1347), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_LT_EQ] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_GT_EQ] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_try] = ACTIONS(1347), + [anon_sym_DOT] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym_true] = ACTIONS(1347), + [anon_sym_false] = ACTIONS(1347), + [sym_none] = ACTIONS(1347), + [sym_undefined] = ACTIONS(1347), + [sym_sink] = ACTIONS(1347), + [sym_integer] = ACTIONS(1347), + [sym_float] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym_multiline_string] = ACTIONS(1345), + [sym_character] = ACTIONS(1345), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1347), + [sym__newline] = ACTIONS(1345), }, [STATE(510)] = { - [ts_builtin_sym_end] = ACTIONS(1351), - [sym_identifier] = ACTIONS(1353), - [anon_sym_import] = ACTIONS(1353), - [anon_sym_func] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1353), - [anon_sym_EQ] = ACTIONS(1353), - [anon_sym_struct] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_RPAREN] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1351), - [anon_sym_COMMA] = ACTIONS(1351), - [anon_sym_RBRACE] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(1353), - [anon_sym_DOLLAR] = ACTIONS(1351), - [anon_sym_PIPE] = ACTIONS(1351), - [anon_sym_QMARK] = ACTIONS(1351), - [anon_sym_STAR] = ACTIONS(1353), - [anon_sym_LBRACK] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_RBRACK] = ACTIONS(1351), - [anon_sym_void] = ACTIONS(1353), - [anon_sym_anyopaque] = ACTIONS(1353), - [anon_sym_bool] = ACTIONS(1353), - [anon_sym_int] = ACTIONS(1353), - [anon_sym_float] = ACTIONS(1353), - [anon_sym_range] = ACTIONS(1353), - [anon_sym_i8] = ACTIONS(1353), - [anon_sym_i16] = ACTIONS(1353), - [anon_sym_i32] = ACTIONS(1353), - [anon_sym_i64] = ACTIONS(1353), - [anon_sym_u8] = ACTIONS(1353), - [anon_sym_u16] = ACTIONS(1353), - [anon_sym_u32] = ACTIONS(1353), - [anon_sym_u64] = ACTIONS(1353), - [anon_sym_isize] = ACTIONS(1353), - [anon_sym_usize] = ACTIONS(1353), - [anon_sym_f32] = ACTIONS(1353), - [anon_sym_f64] = ACTIONS(1353), - [anon_sym_c_char] = ACTIONS(1353), - [anon_sym_c_schar] = ACTIONS(1353), - [anon_sym_c_uchar] = ACTIONS(1353), - [anon_sym_c_short] = ACTIONS(1353), - [anon_sym_c_ushort] = ACTIONS(1353), - [anon_sym_c_int] = ACTIONS(1353), - [anon_sym_c_uint] = ACTIONS(1353), - [anon_sym_c_long] = ACTIONS(1353), - [anon_sym_c_ulong] = ACTIONS(1353), - [anon_sym_c_longlong] = ACTIONS(1353), - [anon_sym_c_ulonglong] = ACTIONS(1353), - [anon_sym_c_float] = ACTIONS(1353), - [anon_sym_c_double] = ACTIONS(1353), - [anon_sym_c_longdouble] = ACTIONS(1353), - [anon_sym_PLUS_EQ] = ACTIONS(1351), - [anon_sym_DASH_EQ] = ACTIONS(1351), - [anon_sym_STAR_EQ] = ACTIONS(1351), - [anon_sym_SLASH_EQ] = ACTIONS(1351), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_yield] = ACTIONS(1353), - [anon_sym_COLON] = ACTIONS(1351), - [anon_sym_break] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_defer] = ACTIONS(1353), - [anon_sym_errdefer] = ACTIONS(1353), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_else] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [anon_sym_for] = ACTIONS(1353), - [anon_sym_match] = ACTIONS(1353), - [anon_sym_DOT_DOT] = ACTIONS(1353), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1351), - [anon_sym_orelse] = ACTIONS(1353), - [anon_sym_catch] = ACTIONS(1353), - [anon_sym_or] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(1353), - [anon_sym_EQ_EQ] = ACTIONS(1351), - [anon_sym_BANG_EQ] = ACTIONS(1351), - [anon_sym_LT] = ACTIONS(1353), - [anon_sym_LT_EQ] = ACTIONS(1351), - [anon_sym_GT] = ACTIONS(1353), - [anon_sym_GT_EQ] = ACTIONS(1351), - [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_SLASH] = ACTIONS(1353), - [anon_sym_AMP] = ACTIONS(1351), - [anon_sym_try] = ACTIONS(1353), - [anon_sym_DOT] = ACTIONS(1353), - [anon_sym_CARET] = ACTIONS(1351), - [anon_sym_true] = ACTIONS(1353), - [anon_sym_false] = ACTIONS(1353), - [sym_none] = ACTIONS(1353), - [sym_undefined] = ACTIONS(1353), - [sym_sink] = ACTIONS(1353), - [sym_integer] = ACTIONS(1353), - [sym_float] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1351), - [sym_multiline_string] = ACTIONS(1351), - [sym_character] = ACTIONS(1351), + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1351), + [anon_sym_import] = ACTIONS(1351), + [anon_sym_func] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_EQ] = ACTIONS(1351), + [anon_sym_struct] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_RPAREN] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_COMMA] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_DOLLAR] = ACTIONS(1349), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_QMARK] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_RBRACK] = ACTIONS(1349), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_anyopaque] = ACTIONS(1351), + [anon_sym_bool] = ACTIONS(1351), + [anon_sym_int] = ACTIONS(1351), + [anon_sym_float] = ACTIONS(1351), + [anon_sym_range] = ACTIONS(1351), + [anon_sym_i8] = ACTIONS(1351), + [anon_sym_i16] = ACTIONS(1351), + [anon_sym_i32] = ACTIONS(1351), + [anon_sym_i64] = ACTIONS(1351), + [anon_sym_u8] = ACTIONS(1351), + [anon_sym_u16] = ACTIONS(1351), + [anon_sym_u32] = ACTIONS(1351), + [anon_sym_u64] = ACTIONS(1351), + [anon_sym_isize] = ACTIONS(1351), + [anon_sym_usize] = ACTIONS(1351), + [anon_sym_f32] = ACTIONS(1351), + [anon_sym_f64] = ACTIONS(1351), + [anon_sym_c_char] = ACTIONS(1351), + [anon_sym_c_schar] = ACTIONS(1351), + [anon_sym_c_uchar] = ACTIONS(1351), + [anon_sym_c_short] = ACTIONS(1351), + [anon_sym_c_ushort] = ACTIONS(1351), + [anon_sym_c_int] = ACTIONS(1351), + [anon_sym_c_uint] = ACTIONS(1351), + [anon_sym_c_long] = ACTIONS(1351), + [anon_sym_c_ulong] = ACTIONS(1351), + [anon_sym_c_longlong] = ACTIONS(1351), + [anon_sym_c_ulonglong] = ACTIONS(1351), + [anon_sym_c_float] = ACTIONS(1351), + [anon_sym_c_double] = ACTIONS(1351), + [anon_sym_c_longdouble] = ACTIONS(1351), + [anon_sym_PLUS_EQ] = ACTIONS(1349), + [anon_sym_DASH_EQ] = ACTIONS(1349), + [anon_sym_STAR_EQ] = ACTIONS(1349), + [anon_sym_SLASH_EQ] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_yield] = ACTIONS(1351), + [anon_sym_COLON] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_defer] = ACTIONS(1351), + [anon_sym_errdefer] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_else] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_match] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1351), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1349), + [anon_sym_orelse] = ACTIONS(1351), + [anon_sym_catch] = ACTIONS(1351), + [anon_sym_or] = ACTIONS(1351), + [anon_sym_and] = ACTIONS(1351), + [anon_sym_EQ_EQ] = ACTIONS(1349), + [anon_sym_BANG_EQ] = ACTIONS(1349), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT] = ACTIONS(1351), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_try] = ACTIONS(1351), + [anon_sym_DOT] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1349), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [sym_none] = ACTIONS(1351), + [sym_undefined] = ACTIONS(1351), + [sym_sink] = ACTIONS(1351), + [sym_integer] = ACTIONS(1351), + [sym_float] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym_multiline_string] = ACTIONS(1349), + [sym_character] = ACTIONS(1349), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1351), + [sym__newline] = ACTIONS(1349), }, [STATE(511)] = { - [ts_builtin_sym_end] = ACTIONS(1355), - [sym_identifier] = ACTIONS(1357), - [anon_sym_import] = ACTIONS(1357), - [anon_sym_func] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_struct] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1355), - [anon_sym_RPAREN] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_COMMA] = ACTIONS(1355), - [anon_sym_RBRACE] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_DOLLAR] = ACTIONS(1355), - [anon_sym_PIPE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1355), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym_RBRACK] = ACTIONS(1355), - [anon_sym_void] = ACTIONS(1357), - [anon_sym_anyopaque] = ACTIONS(1357), - [anon_sym_bool] = ACTIONS(1357), - [anon_sym_int] = ACTIONS(1357), - [anon_sym_float] = ACTIONS(1357), - [anon_sym_range] = ACTIONS(1357), - [anon_sym_i8] = ACTIONS(1357), - [anon_sym_i16] = ACTIONS(1357), - [anon_sym_i32] = ACTIONS(1357), - [anon_sym_i64] = ACTIONS(1357), - [anon_sym_u8] = ACTIONS(1357), - [anon_sym_u16] = ACTIONS(1357), - [anon_sym_u32] = ACTIONS(1357), - [anon_sym_u64] = ACTIONS(1357), - [anon_sym_isize] = ACTIONS(1357), - [anon_sym_usize] = ACTIONS(1357), - [anon_sym_f32] = ACTIONS(1357), - [anon_sym_f64] = ACTIONS(1357), - [anon_sym_c_char] = ACTIONS(1357), - [anon_sym_c_schar] = ACTIONS(1357), - [anon_sym_c_uchar] = ACTIONS(1357), - [anon_sym_c_short] = ACTIONS(1357), - [anon_sym_c_ushort] = ACTIONS(1357), - [anon_sym_c_int] = ACTIONS(1357), - [anon_sym_c_uint] = ACTIONS(1357), - [anon_sym_c_long] = ACTIONS(1357), - [anon_sym_c_ulong] = ACTIONS(1357), - [anon_sym_c_longlong] = ACTIONS(1357), - [anon_sym_c_ulonglong] = ACTIONS(1357), - [anon_sym_c_float] = ACTIONS(1357), - [anon_sym_c_double] = ACTIONS(1357), - [anon_sym_c_longdouble] = ACTIONS(1357), - [anon_sym_PLUS_EQ] = ACTIONS(1355), - [anon_sym_DASH_EQ] = ACTIONS(1355), - [anon_sym_STAR_EQ] = ACTIONS(1355), - [anon_sym_SLASH_EQ] = ACTIONS(1355), - [anon_sym_return] = ACTIONS(1357), - [anon_sym_yield] = ACTIONS(1357), - [anon_sym_COLON] = ACTIONS(1355), - [anon_sym_break] = ACTIONS(1357), - [anon_sym_continue] = ACTIONS(1357), - [anon_sym_defer] = ACTIONS(1357), - [anon_sym_errdefer] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1357), - [anon_sym_else] = ACTIONS(1357), - [anon_sym_while] = ACTIONS(1357), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_match] = ACTIONS(1357), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1355), - [anon_sym_orelse] = ACTIONS(1357), - [anon_sym_catch] = ACTIONS(1357), - [anon_sym_or] = ACTIONS(1357), - [anon_sym_and] = ACTIONS(1357), - [anon_sym_EQ_EQ] = ACTIONS(1355), - [anon_sym_BANG_EQ] = ACTIONS(1355), - [anon_sym_LT] = ACTIONS(1357), - [anon_sym_LT_EQ] = ACTIONS(1355), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_GT_EQ] = ACTIONS(1355), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1355), - [anon_sym_try] = ACTIONS(1357), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1355), - [anon_sym_true] = ACTIONS(1357), - [anon_sym_false] = ACTIONS(1357), - [sym_none] = ACTIONS(1357), - [sym_undefined] = ACTIONS(1357), - [sym_sink] = ACTIONS(1357), - [sym_integer] = ACTIONS(1357), - [sym_float] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(1355), - [sym_multiline_string] = ACTIONS(1355), - [sym_character] = ACTIONS(1355), + [ts_builtin_sym_end] = ACTIONS(1353), + [sym_identifier] = ACTIONS(1355), + [anon_sym_import] = ACTIONS(1355), + [anon_sym_func] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_EQ] = ACTIONS(1355), + [anon_sym_struct] = ACTIONS(1355), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_RPAREN] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_COMMA] = ACTIONS(1353), + [anon_sym_RBRACE] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_DOLLAR] = ACTIONS(1353), + [anon_sym_PIPE] = ACTIONS(1353), + [anon_sym_QMARK] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_RBRACK] = ACTIONS(1353), + [anon_sym_void] = ACTIONS(1355), + [anon_sym_anyopaque] = ACTIONS(1355), + [anon_sym_bool] = ACTIONS(1355), + [anon_sym_int] = ACTIONS(1355), + [anon_sym_float] = ACTIONS(1355), + [anon_sym_range] = ACTIONS(1355), + [anon_sym_i8] = ACTIONS(1355), + [anon_sym_i16] = ACTIONS(1355), + [anon_sym_i32] = ACTIONS(1355), + [anon_sym_i64] = ACTIONS(1355), + [anon_sym_u8] = ACTIONS(1355), + [anon_sym_u16] = ACTIONS(1355), + [anon_sym_u32] = ACTIONS(1355), + [anon_sym_u64] = ACTIONS(1355), + [anon_sym_isize] = ACTIONS(1355), + [anon_sym_usize] = ACTIONS(1355), + [anon_sym_f32] = ACTIONS(1355), + [anon_sym_f64] = ACTIONS(1355), + [anon_sym_c_char] = ACTIONS(1355), + [anon_sym_c_schar] = ACTIONS(1355), + [anon_sym_c_uchar] = ACTIONS(1355), + [anon_sym_c_short] = ACTIONS(1355), + [anon_sym_c_ushort] = ACTIONS(1355), + [anon_sym_c_int] = ACTIONS(1355), + [anon_sym_c_uint] = ACTIONS(1355), + [anon_sym_c_long] = ACTIONS(1355), + [anon_sym_c_ulong] = ACTIONS(1355), + [anon_sym_c_longlong] = ACTIONS(1355), + [anon_sym_c_ulonglong] = ACTIONS(1355), + [anon_sym_c_float] = ACTIONS(1355), + [anon_sym_c_double] = ACTIONS(1355), + [anon_sym_c_longdouble] = ACTIONS(1355), + [anon_sym_PLUS_EQ] = ACTIONS(1353), + [anon_sym_DASH_EQ] = ACTIONS(1353), + [anon_sym_STAR_EQ] = ACTIONS(1353), + [anon_sym_SLASH_EQ] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1355), + [anon_sym_yield] = ACTIONS(1355), + [anon_sym_COLON] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1355), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_defer] = ACTIONS(1355), + [anon_sym_errdefer] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1355), + [anon_sym_else] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_for] = ACTIONS(1355), + [anon_sym_match] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1353), + [anon_sym_orelse] = ACTIONS(1355), + [anon_sym_catch] = ACTIONS(1355), + [anon_sym_or] = ACTIONS(1355), + [anon_sym_and] = ACTIONS(1355), + [anon_sym_EQ_EQ] = ACTIONS(1353), + [anon_sym_BANG_EQ] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_LT_EQ] = ACTIONS(1353), + [anon_sym_GT] = ACTIONS(1355), + [anon_sym_GT_EQ] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1353), + [anon_sym_try] = ACTIONS(1355), + [anon_sym_DOT] = ACTIONS(1355), + [anon_sym_CARET] = ACTIONS(1353), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [sym_none] = ACTIONS(1355), + [sym_undefined] = ACTIONS(1355), + [sym_sink] = ACTIONS(1355), + [sym_integer] = ACTIONS(1355), + [sym_float] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym_multiline_string] = ACTIONS(1353), + [sym_character] = ACTIONS(1353), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1355), + [sym__newline] = ACTIONS(1353), }, [STATE(512)] = { - [ts_builtin_sym_end] = ACTIONS(1359), - [sym_identifier] = ACTIONS(1361), - [anon_sym_import] = ACTIONS(1361), - [anon_sym_func] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_EQ] = ACTIONS(1361), - [anon_sym_struct] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_RPAREN] = ACTIONS(1359), - [anon_sym_LBRACE] = ACTIONS(1359), - [anon_sym_COMMA] = ACTIONS(1359), - [anon_sym_RBRACE] = ACTIONS(1359), - [anon_sym_DASH] = ACTIONS(1361), - [anon_sym_DOLLAR] = ACTIONS(1359), - [anon_sym_PIPE] = ACTIONS(1359), - [anon_sym_QMARK] = ACTIONS(1359), - [anon_sym_STAR] = ACTIONS(1361), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_RBRACK] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1361), - [anon_sym_anyopaque] = ACTIONS(1361), - [anon_sym_bool] = ACTIONS(1361), - [anon_sym_int] = ACTIONS(1361), - [anon_sym_float] = ACTIONS(1361), - [anon_sym_range] = ACTIONS(1361), - [anon_sym_i8] = ACTIONS(1361), - [anon_sym_i16] = ACTIONS(1361), - [anon_sym_i32] = ACTIONS(1361), - [anon_sym_i64] = ACTIONS(1361), - [anon_sym_u8] = ACTIONS(1361), - [anon_sym_u16] = ACTIONS(1361), - [anon_sym_u32] = ACTIONS(1361), - [anon_sym_u64] = ACTIONS(1361), - [anon_sym_isize] = ACTIONS(1361), - [anon_sym_usize] = ACTIONS(1361), - [anon_sym_f32] = ACTIONS(1361), - [anon_sym_f64] = ACTIONS(1361), - [anon_sym_c_char] = ACTIONS(1361), - [anon_sym_c_schar] = ACTIONS(1361), - [anon_sym_c_uchar] = ACTIONS(1361), - [anon_sym_c_short] = ACTIONS(1361), - [anon_sym_c_ushort] = ACTIONS(1361), - [anon_sym_c_int] = ACTIONS(1361), - [anon_sym_c_uint] = ACTIONS(1361), - [anon_sym_c_long] = ACTIONS(1361), - [anon_sym_c_ulong] = ACTIONS(1361), - [anon_sym_c_longlong] = ACTIONS(1361), - [anon_sym_c_ulonglong] = ACTIONS(1361), - [anon_sym_c_float] = ACTIONS(1361), - [anon_sym_c_double] = ACTIONS(1361), - [anon_sym_c_longdouble] = ACTIONS(1361), - [anon_sym_PLUS_EQ] = ACTIONS(1359), - [anon_sym_DASH_EQ] = ACTIONS(1359), - [anon_sym_STAR_EQ] = ACTIONS(1359), - [anon_sym_SLASH_EQ] = ACTIONS(1359), - [anon_sym_return] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1361), - [anon_sym_COLON] = ACTIONS(1359), - [anon_sym_break] = ACTIONS(1361), - [anon_sym_continue] = ACTIONS(1361), - [anon_sym_defer] = ACTIONS(1361), - [anon_sym_errdefer] = ACTIONS(1361), - [anon_sym_if] = ACTIONS(1361), - [anon_sym_else] = ACTIONS(1361), - [anon_sym_while] = ACTIONS(1361), - [anon_sym_for] = ACTIONS(1361), - [anon_sym_match] = ACTIONS(1361), - [anon_sym_DOT_DOT] = ACTIONS(1361), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1359), - [anon_sym_orelse] = ACTIONS(1361), - [anon_sym_catch] = ACTIONS(1361), - [anon_sym_or] = ACTIONS(1361), - [anon_sym_and] = ACTIONS(1361), - [anon_sym_EQ_EQ] = ACTIONS(1359), - [anon_sym_BANG_EQ] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_LT_EQ] = ACTIONS(1359), - [anon_sym_GT] = ACTIONS(1361), - [anon_sym_GT_EQ] = ACTIONS(1359), - [anon_sym_PLUS] = ACTIONS(1361), - [anon_sym_SLASH] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_try] = ACTIONS(1361), - [anon_sym_DOT] = ACTIONS(1361), - [anon_sym_CARET] = ACTIONS(1359), - [anon_sym_true] = ACTIONS(1361), - [anon_sym_false] = ACTIONS(1361), - [sym_none] = ACTIONS(1361), - [sym_undefined] = ACTIONS(1361), - [sym_sink] = ACTIONS(1361), - [sym_integer] = ACTIONS(1361), - [sym_float] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [sym_multiline_string] = ACTIONS(1359), - [sym_character] = ACTIONS(1359), + [ts_builtin_sym_end] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1359), + [anon_sym_import] = ACTIONS(1359), + [anon_sym_func] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_EQ] = ACTIONS(1359), + [anon_sym_struct] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_RPAREN] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_COMMA] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_DOLLAR] = ACTIONS(1357), + [anon_sym_PIPE] = ACTIONS(1357), + [anon_sym_QMARK] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_LBRACK] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_RBRACK] = ACTIONS(1357), + [anon_sym_void] = ACTIONS(1359), + [anon_sym_anyopaque] = ACTIONS(1359), + [anon_sym_bool] = ACTIONS(1359), + [anon_sym_int] = ACTIONS(1359), + [anon_sym_float] = ACTIONS(1359), + [anon_sym_range] = ACTIONS(1359), + [anon_sym_i8] = ACTIONS(1359), + [anon_sym_i16] = ACTIONS(1359), + [anon_sym_i32] = ACTIONS(1359), + [anon_sym_i64] = ACTIONS(1359), + [anon_sym_u8] = ACTIONS(1359), + [anon_sym_u16] = ACTIONS(1359), + [anon_sym_u32] = ACTIONS(1359), + [anon_sym_u64] = ACTIONS(1359), + [anon_sym_isize] = ACTIONS(1359), + [anon_sym_usize] = ACTIONS(1359), + [anon_sym_f32] = ACTIONS(1359), + [anon_sym_f64] = ACTIONS(1359), + [anon_sym_c_char] = ACTIONS(1359), + [anon_sym_c_schar] = ACTIONS(1359), + [anon_sym_c_uchar] = ACTIONS(1359), + [anon_sym_c_short] = ACTIONS(1359), + [anon_sym_c_ushort] = ACTIONS(1359), + [anon_sym_c_int] = ACTIONS(1359), + [anon_sym_c_uint] = ACTIONS(1359), + [anon_sym_c_long] = ACTIONS(1359), + [anon_sym_c_ulong] = ACTIONS(1359), + [anon_sym_c_longlong] = ACTIONS(1359), + [anon_sym_c_ulonglong] = ACTIONS(1359), + [anon_sym_c_float] = ACTIONS(1359), + [anon_sym_c_double] = ACTIONS(1359), + [anon_sym_c_longdouble] = ACTIONS(1359), + [anon_sym_PLUS_EQ] = ACTIONS(1357), + [anon_sym_DASH_EQ] = ACTIONS(1357), + [anon_sym_STAR_EQ] = ACTIONS(1357), + [anon_sym_SLASH_EQ] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_yield] = ACTIONS(1359), + [anon_sym_COLON] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1359), + [anon_sym_continue] = ACTIONS(1359), + [anon_sym_defer] = ACTIONS(1359), + [anon_sym_errdefer] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1359), + [anon_sym_else] = ACTIONS(1359), + [anon_sym_while] = ACTIONS(1359), + [anon_sym_for] = ACTIONS(1359), + [anon_sym_match] = ACTIONS(1359), + [anon_sym_DOT_DOT] = ACTIONS(1359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1357), + [anon_sym_orelse] = ACTIONS(1359), + [anon_sym_catch] = ACTIONS(1359), + [anon_sym_or] = ACTIONS(1359), + [anon_sym_and] = ACTIONS(1359), + [anon_sym_EQ_EQ] = ACTIONS(1357), + [anon_sym_BANG_EQ] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_LT_EQ] = ACTIONS(1357), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_EQ] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_SLASH] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_try] = ACTIONS(1359), + [anon_sym_DOT] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1359), + [anon_sym_false] = ACTIONS(1359), + [sym_none] = ACTIONS(1359), + [sym_undefined] = ACTIONS(1359), + [sym_sink] = ACTIONS(1359), + [sym_integer] = ACTIONS(1359), + [sym_float] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [sym_multiline_string] = ACTIONS(1357), + [sym_character] = ACTIONS(1357), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1359), + [sym__newline] = ACTIONS(1357), }, [STATE(513)] = { - [ts_builtin_sym_end] = ACTIONS(1363), - [sym_identifier] = ACTIONS(1365), - [anon_sym_import] = ACTIONS(1365), - [anon_sym_func] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_EQ] = ACTIONS(1365), - [anon_sym_struct] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1363), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_COMMA] = ACTIONS(1363), - [anon_sym_RBRACE] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_DOLLAR] = ACTIONS(1363), - [anon_sym_PIPE] = ACTIONS(1363), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1363), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_RBRACK] = ACTIONS(1363), - [anon_sym_void] = ACTIONS(1365), - [anon_sym_anyopaque] = ACTIONS(1365), - [anon_sym_bool] = ACTIONS(1365), - [anon_sym_int] = ACTIONS(1365), - [anon_sym_float] = ACTIONS(1365), - [anon_sym_range] = ACTIONS(1365), - [anon_sym_i8] = ACTIONS(1365), - [anon_sym_i16] = ACTIONS(1365), - [anon_sym_i32] = ACTIONS(1365), - [anon_sym_i64] = ACTIONS(1365), - [anon_sym_u8] = ACTIONS(1365), - [anon_sym_u16] = ACTIONS(1365), - [anon_sym_u32] = ACTIONS(1365), - [anon_sym_u64] = ACTIONS(1365), - [anon_sym_isize] = ACTIONS(1365), - [anon_sym_usize] = ACTIONS(1365), - [anon_sym_f32] = ACTIONS(1365), - [anon_sym_f64] = ACTIONS(1365), - [anon_sym_c_char] = ACTIONS(1365), - [anon_sym_c_schar] = ACTIONS(1365), - [anon_sym_c_uchar] = ACTIONS(1365), - [anon_sym_c_short] = ACTIONS(1365), - [anon_sym_c_ushort] = ACTIONS(1365), - [anon_sym_c_int] = ACTIONS(1365), - [anon_sym_c_uint] = ACTIONS(1365), - [anon_sym_c_long] = ACTIONS(1365), - [anon_sym_c_ulong] = ACTIONS(1365), - [anon_sym_c_longlong] = ACTIONS(1365), - [anon_sym_c_ulonglong] = ACTIONS(1365), - [anon_sym_c_float] = ACTIONS(1365), - [anon_sym_c_double] = ACTIONS(1365), - [anon_sym_c_longdouble] = ACTIONS(1365), - [anon_sym_PLUS_EQ] = ACTIONS(1363), - [anon_sym_DASH_EQ] = ACTIONS(1363), - [anon_sym_STAR_EQ] = ACTIONS(1363), - [anon_sym_SLASH_EQ] = ACTIONS(1363), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_COLON] = ACTIONS(1363), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_defer] = ACTIONS(1365), - [anon_sym_errdefer] = ACTIONS(1365), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_else] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_match] = ACTIONS(1365), - [anon_sym_DOT_DOT] = ACTIONS(1365), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1363), - [anon_sym_orelse] = ACTIONS(1365), - [anon_sym_catch] = ACTIONS(1365), - [anon_sym_or] = ACTIONS(1365), - [anon_sym_and] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1363), - [anon_sym_BANG_EQ] = ACTIONS(1363), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1363), - [anon_sym_GT] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1363), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_SLASH] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym_try] = ACTIONS(1365), - [anon_sym_DOT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1363), - [anon_sym_true] = ACTIONS(1365), - [anon_sym_false] = ACTIONS(1365), - [sym_none] = ACTIONS(1365), - [sym_undefined] = ACTIONS(1365), - [sym_sink] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1363), - [anon_sym_DQUOTE] = ACTIONS(1363), - [sym_multiline_string] = ACTIONS(1363), - [sym_character] = ACTIONS(1363), + [ts_builtin_sym_end] = ACTIONS(1361), + [sym_identifier] = ACTIONS(1363), + [anon_sym_import] = ACTIONS(1363), + [anon_sym_func] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_EQ] = ACTIONS(1363), + [anon_sym_struct] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_COMMA] = ACTIONS(1361), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_DOLLAR] = ACTIONS(1361), + [anon_sym_PIPE] = ACTIONS(1361), + [anon_sym_QMARK] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_RBRACK] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1363), + [anon_sym_anyopaque] = ACTIONS(1363), + [anon_sym_bool] = ACTIONS(1363), + [anon_sym_int] = ACTIONS(1363), + [anon_sym_float] = ACTIONS(1363), + [anon_sym_range] = ACTIONS(1363), + [anon_sym_i8] = ACTIONS(1363), + [anon_sym_i16] = ACTIONS(1363), + [anon_sym_i32] = ACTIONS(1363), + [anon_sym_i64] = ACTIONS(1363), + [anon_sym_u8] = ACTIONS(1363), + [anon_sym_u16] = ACTIONS(1363), + [anon_sym_u32] = ACTIONS(1363), + [anon_sym_u64] = ACTIONS(1363), + [anon_sym_isize] = ACTIONS(1363), + [anon_sym_usize] = ACTIONS(1363), + [anon_sym_f32] = ACTIONS(1363), + [anon_sym_f64] = ACTIONS(1363), + [anon_sym_c_char] = ACTIONS(1363), + [anon_sym_c_schar] = ACTIONS(1363), + [anon_sym_c_uchar] = ACTIONS(1363), + [anon_sym_c_short] = ACTIONS(1363), + [anon_sym_c_ushort] = ACTIONS(1363), + [anon_sym_c_int] = ACTIONS(1363), + [anon_sym_c_uint] = ACTIONS(1363), + [anon_sym_c_long] = ACTIONS(1363), + [anon_sym_c_ulong] = ACTIONS(1363), + [anon_sym_c_longlong] = ACTIONS(1363), + [anon_sym_c_ulonglong] = ACTIONS(1363), + [anon_sym_c_float] = ACTIONS(1363), + [anon_sym_c_double] = ACTIONS(1363), + [anon_sym_c_longdouble] = ACTIONS(1363), + [anon_sym_PLUS_EQ] = ACTIONS(1361), + [anon_sym_DASH_EQ] = ACTIONS(1361), + [anon_sym_STAR_EQ] = ACTIONS(1361), + [anon_sym_SLASH_EQ] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_defer] = ACTIONS(1363), + [anon_sym_errdefer] = ACTIONS(1363), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_else] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_match] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1363), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1361), + [anon_sym_orelse] = ACTIONS(1363), + [anon_sym_catch] = ACTIONS(1363), + [anon_sym_or] = ACTIONS(1363), + [anon_sym_and] = ACTIONS(1363), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_LT] = ACTIONS(1363), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1363), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_SLASH] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_try] = ACTIONS(1363), + [anon_sym_DOT] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [sym_none] = ACTIONS(1363), + [sym_undefined] = ACTIONS(1363), + [sym_sink] = ACTIONS(1363), + [sym_integer] = ACTIONS(1363), + [sym_float] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [sym_multiline_string] = ACTIONS(1361), + [sym_character] = ACTIONS(1361), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1363), + [sym__newline] = ACTIONS(1361), }, [STATE(514)] = { - [ts_builtin_sym_end] = ACTIONS(1367), - [sym_identifier] = ACTIONS(1369), - [anon_sym_import] = ACTIONS(1369), - [anon_sym_func] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_DOLLAR] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_QMARK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_RBRACK] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_anyopaque] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_range] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_c_char] = ACTIONS(1369), - [anon_sym_c_schar] = ACTIONS(1369), - [anon_sym_c_uchar] = ACTIONS(1369), - [anon_sym_c_short] = ACTIONS(1369), - [anon_sym_c_ushort] = ACTIONS(1369), - [anon_sym_c_int] = ACTIONS(1369), - [anon_sym_c_uint] = ACTIONS(1369), - [anon_sym_c_long] = ACTIONS(1369), - [anon_sym_c_ulong] = ACTIONS(1369), - [anon_sym_c_longlong] = ACTIONS(1369), - [anon_sym_c_ulonglong] = ACTIONS(1369), - [anon_sym_c_float] = ACTIONS(1369), - [anon_sym_c_double] = ACTIONS(1369), - [anon_sym_c_longdouble] = ACTIONS(1369), - [anon_sym_PLUS_EQ] = ACTIONS(1367), - [anon_sym_DASH_EQ] = ACTIONS(1367), - [anon_sym_STAR_EQ] = ACTIONS(1367), - [anon_sym_SLASH_EQ] = ACTIONS(1367), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_COLON] = ACTIONS(1367), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_errdefer] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_orelse] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [anon_sym_or] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_SLASH] = ACTIONS(1369), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_try] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [sym_none] = ACTIONS(1369), - [sym_undefined] = ACTIONS(1369), - [sym_sink] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_multiline_string] = ACTIONS(1367), - [sym_character] = ACTIONS(1367), + [ts_builtin_sym_end] = ACTIONS(1365), + [sym_identifier] = ACTIONS(1367), + [anon_sym_import] = ACTIONS(1367), + [anon_sym_func] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_EQ] = ACTIONS(1367), + [anon_sym_struct] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1365), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1365), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_RBRACK] = ACTIONS(1365), + [anon_sym_void] = ACTIONS(1367), + [anon_sym_anyopaque] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(1367), + [anon_sym_float] = ACTIONS(1367), + [anon_sym_range] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_c_char] = ACTIONS(1367), + [anon_sym_c_schar] = ACTIONS(1367), + [anon_sym_c_uchar] = ACTIONS(1367), + [anon_sym_c_short] = ACTIONS(1367), + [anon_sym_c_ushort] = ACTIONS(1367), + [anon_sym_c_int] = ACTIONS(1367), + [anon_sym_c_uint] = ACTIONS(1367), + [anon_sym_c_long] = ACTIONS(1367), + [anon_sym_c_ulong] = ACTIONS(1367), + [anon_sym_c_longlong] = ACTIONS(1367), + [anon_sym_c_ulonglong] = ACTIONS(1367), + [anon_sym_c_float] = ACTIONS(1367), + [anon_sym_c_double] = ACTIONS(1367), + [anon_sym_c_longdouble] = ACTIONS(1367), + [anon_sym_PLUS_EQ] = ACTIONS(1365), + [anon_sym_DASH_EQ] = ACTIONS(1365), + [anon_sym_STAR_EQ] = ACTIONS(1365), + [anon_sym_SLASH_EQ] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_yield] = ACTIONS(1367), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_defer] = ACTIONS(1367), + [anon_sym_errdefer] = ACTIONS(1367), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_else] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_match] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1367), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1365), + [anon_sym_orelse] = ACTIONS(1367), + [anon_sym_catch] = ACTIONS(1367), + [anon_sym_or] = ACTIONS(1367), + [anon_sym_and] = ACTIONS(1367), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_LT] = ACTIONS(1367), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT] = ACTIONS(1367), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_SLASH] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_try] = ACTIONS(1367), + [anon_sym_DOT] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [sym_none] = ACTIONS(1367), + [sym_undefined] = ACTIONS(1367), + [sym_sink] = ACTIONS(1367), + [sym_integer] = ACTIONS(1367), + [sym_float] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(1365), + [sym_multiline_string] = ACTIONS(1365), + [sym_character] = ACTIONS(1365), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1367), + [sym__newline] = ACTIONS(1365), }, [STATE(515)] = { - [ts_builtin_sym_end] = ACTIONS(291), - [sym_identifier] = ACTIONS(287), - [anon_sym_import] = ACTIONS(287), - [anon_sym_func] = ACTIONS(287), - [anon_sym_BANG] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(287), - [anon_sym_struct] = ACTIONS(287), - [anon_sym_LPAREN] = ACTIONS(291), - [anon_sym_RPAREN] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_COMMA] = ACTIONS(291), - [anon_sym_RBRACE] = ACTIONS(291), - [anon_sym_DASH] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(291), - [anon_sym_PIPE] = ACTIONS(291), - [anon_sym_QMARK] = ACTIONS(291), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(291), - [anon_sym_SEMI] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(291), - [anon_sym_void] = ACTIONS(287), - [anon_sym_anyopaque] = ACTIONS(287), - [anon_sym_bool] = ACTIONS(287), - [anon_sym_int] = ACTIONS(287), - [anon_sym_float] = ACTIONS(287), - [anon_sym_range] = ACTIONS(287), - [anon_sym_i8] = ACTIONS(287), - [anon_sym_i16] = ACTIONS(287), - [anon_sym_i32] = ACTIONS(287), - [anon_sym_i64] = ACTIONS(287), - [anon_sym_u8] = ACTIONS(287), - [anon_sym_u16] = ACTIONS(287), - [anon_sym_u32] = ACTIONS(287), - [anon_sym_u64] = ACTIONS(287), - [anon_sym_isize] = ACTIONS(287), - [anon_sym_usize] = ACTIONS(287), - [anon_sym_f32] = ACTIONS(287), - [anon_sym_f64] = ACTIONS(287), - [anon_sym_c_char] = ACTIONS(287), - [anon_sym_c_schar] = ACTIONS(287), - [anon_sym_c_uchar] = ACTIONS(287), - [anon_sym_c_short] = ACTIONS(287), - [anon_sym_c_ushort] = ACTIONS(287), - [anon_sym_c_int] = ACTIONS(287), - [anon_sym_c_uint] = ACTIONS(287), - [anon_sym_c_long] = ACTIONS(287), - [anon_sym_c_ulong] = ACTIONS(287), - [anon_sym_c_longlong] = ACTIONS(287), - [anon_sym_c_ulonglong] = ACTIONS(287), - [anon_sym_c_float] = ACTIONS(287), - [anon_sym_c_double] = ACTIONS(287), - [anon_sym_c_longdouble] = ACTIONS(287), - [anon_sym_PLUS_EQ] = ACTIONS(291), - [anon_sym_DASH_EQ] = ACTIONS(291), - [anon_sym_STAR_EQ] = ACTIONS(291), - [anon_sym_SLASH_EQ] = ACTIONS(291), - [anon_sym_return] = ACTIONS(287), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(291), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(287), - [anon_sym_defer] = ACTIONS(287), - [anon_sym_errdefer] = ACTIONS(287), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(287), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(287), - [anon_sym_match] = ACTIONS(287), - [anon_sym_DOT_DOT] = ACTIONS(287), - [anon_sym_DOT_DOT_EQ] = ACTIONS(291), - [anon_sym_orelse] = ACTIONS(287), - [anon_sym_catch] = ACTIONS(287), - [anon_sym_or] = ACTIONS(287), - [anon_sym_and] = ACTIONS(287), - [anon_sym_EQ_EQ] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(287), - [anon_sym_LT_EQ] = ACTIONS(291), - [anon_sym_GT] = ACTIONS(287), - [anon_sym_GT_EQ] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(287), - [anon_sym_AMP] = ACTIONS(291), - [anon_sym_try] = ACTIONS(287), - [anon_sym_DOT] = ACTIONS(287), - [anon_sym_CARET] = ACTIONS(291), - [anon_sym_true] = ACTIONS(287), - [anon_sym_false] = ACTIONS(287), - [sym_none] = ACTIONS(287), - [sym_undefined] = ACTIONS(287), - [sym_sink] = ACTIONS(287), - [sym_integer] = ACTIONS(287), - [sym_float] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_multiline_string] = ACTIONS(291), - [sym_character] = ACTIONS(291), + [ts_builtin_sym_end] = ACTIONS(1369), + [sym_identifier] = ACTIONS(1371), + [anon_sym_import] = ACTIONS(1371), + [anon_sym_func] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_EQ] = ACTIONS(1371), + [anon_sym_struct] = ACTIONS(1371), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_COMMA] = ACTIONS(1369), + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1369), + [anon_sym_PIPE] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_RBRACK] = ACTIONS(1369), + [anon_sym_void] = ACTIONS(1371), + [anon_sym_anyopaque] = ACTIONS(1371), + [anon_sym_bool] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_float] = ACTIONS(1371), + [anon_sym_range] = ACTIONS(1371), + [anon_sym_i8] = ACTIONS(1371), + [anon_sym_i16] = ACTIONS(1371), + [anon_sym_i32] = ACTIONS(1371), + [anon_sym_i64] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1371), + [anon_sym_u16] = ACTIONS(1371), + [anon_sym_u32] = ACTIONS(1371), + [anon_sym_u64] = ACTIONS(1371), + [anon_sym_isize] = ACTIONS(1371), + [anon_sym_usize] = ACTIONS(1371), + [anon_sym_f32] = ACTIONS(1371), + [anon_sym_f64] = ACTIONS(1371), + [anon_sym_c_char] = ACTIONS(1371), + [anon_sym_c_schar] = ACTIONS(1371), + [anon_sym_c_uchar] = ACTIONS(1371), + [anon_sym_c_short] = ACTIONS(1371), + [anon_sym_c_ushort] = ACTIONS(1371), + [anon_sym_c_int] = ACTIONS(1371), + [anon_sym_c_uint] = ACTIONS(1371), + [anon_sym_c_long] = ACTIONS(1371), + [anon_sym_c_ulong] = ACTIONS(1371), + [anon_sym_c_longlong] = ACTIONS(1371), + [anon_sym_c_ulonglong] = ACTIONS(1371), + [anon_sym_c_float] = ACTIONS(1371), + [anon_sym_c_double] = ACTIONS(1371), + [anon_sym_c_longdouble] = ACTIONS(1371), + [anon_sym_PLUS_EQ] = ACTIONS(1369), + [anon_sym_DASH_EQ] = ACTIONS(1369), + [anon_sym_STAR_EQ] = ACTIONS(1369), + [anon_sym_SLASH_EQ] = ACTIONS(1369), + [anon_sym_return] = ACTIONS(1371), + [anon_sym_yield] = ACTIONS(1371), + [anon_sym_COLON] = ACTIONS(1369), + [anon_sym_break] = ACTIONS(1371), + [anon_sym_continue] = ACTIONS(1371), + [anon_sym_defer] = ACTIONS(1371), + [anon_sym_errdefer] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1371), + [anon_sym_else] = ACTIONS(1371), + [anon_sym_while] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1369), + [anon_sym_orelse] = ACTIONS(1371), + [anon_sym_catch] = ACTIONS(1371), + [anon_sym_or] = ACTIONS(1371), + [anon_sym_and] = ACTIONS(1371), + [anon_sym_EQ_EQ] = ACTIONS(1369), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_LT_EQ] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_GT_EQ] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1369), + [anon_sym_try] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(1371), + [anon_sym_CARET] = ACTIONS(1369), + [anon_sym_true] = ACTIONS(1371), + [anon_sym_false] = ACTIONS(1371), + [sym_none] = ACTIONS(1371), + [sym_undefined] = ACTIONS(1371), + [sym_sink] = ACTIONS(1371), + [sym_integer] = ACTIONS(1371), + [sym_float] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [sym_multiline_string] = ACTIONS(1369), + [sym_character] = ACTIONS(1369), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(291), + [sym__newline] = ACTIONS(1369), }, [STATE(516)] = { - [ts_builtin_sym_end] = ACTIONS(1371), - [sym_identifier] = ACTIONS(1373), - [anon_sym_import] = ACTIONS(1373), - [anon_sym_func] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_EQ] = ACTIONS(1373), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_COMMA] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(1371), - [anon_sym_PIPE] = ACTIONS(1371), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_LBRACK] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_RBRACK] = ACTIONS(1371), - [anon_sym_void] = ACTIONS(1373), - [anon_sym_anyopaque] = ACTIONS(1373), - [anon_sym_bool] = ACTIONS(1373), - [anon_sym_int] = ACTIONS(1373), - [anon_sym_float] = ACTIONS(1373), - [anon_sym_range] = ACTIONS(1373), - [anon_sym_i8] = ACTIONS(1373), - [anon_sym_i16] = ACTIONS(1373), - [anon_sym_i32] = ACTIONS(1373), - [anon_sym_i64] = ACTIONS(1373), - [anon_sym_u8] = ACTIONS(1373), - [anon_sym_u16] = ACTIONS(1373), - [anon_sym_u32] = ACTIONS(1373), - [anon_sym_u64] = ACTIONS(1373), - [anon_sym_isize] = ACTIONS(1373), - [anon_sym_usize] = ACTIONS(1373), - [anon_sym_f32] = ACTIONS(1373), - [anon_sym_f64] = ACTIONS(1373), - [anon_sym_c_char] = ACTIONS(1373), - [anon_sym_c_schar] = ACTIONS(1373), - [anon_sym_c_uchar] = ACTIONS(1373), - [anon_sym_c_short] = ACTIONS(1373), - [anon_sym_c_ushort] = ACTIONS(1373), - [anon_sym_c_int] = ACTIONS(1373), - [anon_sym_c_uint] = ACTIONS(1373), - [anon_sym_c_long] = ACTIONS(1373), - [anon_sym_c_ulong] = ACTIONS(1373), - [anon_sym_c_longlong] = ACTIONS(1373), - [anon_sym_c_ulonglong] = ACTIONS(1373), - [anon_sym_c_float] = ACTIONS(1373), - [anon_sym_c_double] = ACTIONS(1373), - [anon_sym_c_longdouble] = ACTIONS(1373), - [anon_sym_PLUS_EQ] = ACTIONS(1371), - [anon_sym_DASH_EQ] = ACTIONS(1371), - [anon_sym_STAR_EQ] = ACTIONS(1371), - [anon_sym_SLASH_EQ] = ACTIONS(1371), - [anon_sym_return] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1373), - [anon_sym_COLON] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(1373), - [anon_sym_continue] = ACTIONS(1373), - [anon_sym_defer] = ACTIONS(1373), - [anon_sym_errdefer] = ACTIONS(1373), - [anon_sym_if] = ACTIONS(1373), - [anon_sym_else] = ACTIONS(1373), - [anon_sym_while] = ACTIONS(1373), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_match] = ACTIONS(1373), - [anon_sym_DOT_DOT] = ACTIONS(1373), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1371), - [anon_sym_orelse] = ACTIONS(1373), - [anon_sym_catch] = ACTIONS(1373), - [anon_sym_or] = ACTIONS(1373), - [anon_sym_and] = ACTIONS(1373), - [anon_sym_EQ_EQ] = ACTIONS(1371), - [anon_sym_BANG_EQ] = ACTIONS(1371), - [anon_sym_LT] = ACTIONS(1373), - [anon_sym_LT_EQ] = ACTIONS(1371), - [anon_sym_GT] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1371), - [anon_sym_try] = ACTIONS(1373), - [anon_sym_DOT] = ACTIONS(1373), - [anon_sym_CARET] = ACTIONS(1371), - [anon_sym_true] = ACTIONS(1373), - [anon_sym_false] = ACTIONS(1373), - [sym_none] = ACTIONS(1373), - [sym_undefined] = ACTIONS(1373), - [sym_sink] = ACTIONS(1373), - [sym_integer] = ACTIONS(1373), - [sym_float] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1371), - [sym_multiline_string] = ACTIONS(1371), - [sym_character] = ACTIONS(1371), + [ts_builtin_sym_end] = ACTIONS(1373), + [sym_identifier] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(1375), + [anon_sym_func] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_EQ] = ACTIONS(1375), + [anon_sym_struct] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_COMMA] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_DOLLAR] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_RBRACK] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_anyopaque] = ACTIONS(1375), + [anon_sym_bool] = ACTIONS(1375), + [anon_sym_int] = ACTIONS(1375), + [anon_sym_float] = ACTIONS(1375), + [anon_sym_range] = ACTIONS(1375), + [anon_sym_i8] = ACTIONS(1375), + [anon_sym_i16] = ACTIONS(1375), + [anon_sym_i32] = ACTIONS(1375), + [anon_sym_i64] = ACTIONS(1375), + [anon_sym_u8] = ACTIONS(1375), + [anon_sym_u16] = ACTIONS(1375), + [anon_sym_u32] = ACTIONS(1375), + [anon_sym_u64] = ACTIONS(1375), + [anon_sym_isize] = ACTIONS(1375), + [anon_sym_usize] = ACTIONS(1375), + [anon_sym_f32] = ACTIONS(1375), + [anon_sym_f64] = ACTIONS(1375), + [anon_sym_c_char] = ACTIONS(1375), + [anon_sym_c_schar] = ACTIONS(1375), + [anon_sym_c_uchar] = ACTIONS(1375), + [anon_sym_c_short] = ACTIONS(1375), + [anon_sym_c_ushort] = ACTIONS(1375), + [anon_sym_c_int] = ACTIONS(1375), + [anon_sym_c_uint] = ACTIONS(1375), + [anon_sym_c_long] = ACTIONS(1375), + [anon_sym_c_ulong] = ACTIONS(1375), + [anon_sym_c_longlong] = ACTIONS(1375), + [anon_sym_c_ulonglong] = ACTIONS(1375), + [anon_sym_c_float] = ACTIONS(1375), + [anon_sym_c_double] = ACTIONS(1375), + [anon_sym_c_longdouble] = ACTIONS(1375), + [anon_sym_PLUS_EQ] = ACTIONS(1373), + [anon_sym_DASH_EQ] = ACTIONS(1373), + [anon_sym_STAR_EQ] = ACTIONS(1373), + [anon_sym_SLASH_EQ] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1375), + [anon_sym_COLON] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_defer] = ACTIONS(1375), + [anon_sym_errdefer] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_else] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_match] = ACTIONS(1375), + [anon_sym_DOT_DOT] = ACTIONS(1375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1373), + [anon_sym_orelse] = ACTIONS(1375), + [anon_sym_catch] = ACTIONS(1375), + [anon_sym_or] = ACTIONS(1375), + [anon_sym_and] = ACTIONS(1375), + [anon_sym_EQ_EQ] = ACTIONS(1373), + [anon_sym_BANG_EQ] = ACTIONS(1373), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1373), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [sym_none] = ACTIONS(1375), + [sym_undefined] = ACTIONS(1375), + [sym_sink] = ACTIONS(1375), + [sym_integer] = ACTIONS(1375), + [sym_float] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_multiline_string] = ACTIONS(1373), + [sym_character] = ACTIONS(1373), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1371), + [sym__newline] = ACTIONS(1373), }, [STATE(517)] = { - [ts_builtin_sym_end] = ACTIONS(397), - [sym_identifier] = ACTIONS(395), - [anon_sym_import] = ACTIONS(395), - [anon_sym_func] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_struct] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(397), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_RBRACK] = ACTIONS(397), - [anon_sym_void] = ACTIONS(395), - [anon_sym_anyopaque] = ACTIONS(395), - [anon_sym_bool] = ACTIONS(395), - [anon_sym_int] = ACTIONS(395), - [anon_sym_float] = ACTIONS(395), - [anon_sym_range] = ACTIONS(395), - [anon_sym_i8] = ACTIONS(395), - [anon_sym_i16] = ACTIONS(395), - [anon_sym_i32] = ACTIONS(395), - [anon_sym_i64] = ACTIONS(395), - [anon_sym_u8] = ACTIONS(395), - [anon_sym_u16] = ACTIONS(395), - [anon_sym_u32] = ACTIONS(395), - [anon_sym_u64] = ACTIONS(395), - [anon_sym_isize] = ACTIONS(395), - [anon_sym_usize] = ACTIONS(395), - [anon_sym_f32] = ACTIONS(395), - [anon_sym_f64] = ACTIONS(395), - [anon_sym_c_char] = ACTIONS(395), - [anon_sym_c_schar] = ACTIONS(395), - [anon_sym_c_uchar] = ACTIONS(395), - [anon_sym_c_short] = ACTIONS(395), - [anon_sym_c_ushort] = ACTIONS(395), - [anon_sym_c_int] = ACTIONS(395), - [anon_sym_c_uint] = ACTIONS(395), - [anon_sym_c_long] = ACTIONS(395), - [anon_sym_c_ulong] = ACTIONS(395), - [anon_sym_c_longlong] = ACTIONS(395), - [anon_sym_c_ulonglong] = ACTIONS(395), - [anon_sym_c_float] = ACTIONS(395), - [anon_sym_c_double] = ACTIONS(395), - [anon_sym_c_longdouble] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_return] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(397), - [anon_sym_break] = ACTIONS(395), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_defer] = ACTIONS(395), - [anon_sym_errdefer] = ACTIONS(395), - [anon_sym_if] = ACTIONS(395), - [anon_sym_else] = ACTIONS(395), - [anon_sym_while] = ACTIONS(395), - [anon_sym_for] = ACTIONS(395), - [anon_sym_match] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_orelse] = ACTIONS(395), - [anon_sym_catch] = ACTIONS(395), - [anon_sym_or] = ACTIONS(395), - [anon_sym_and] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_try] = ACTIONS(395), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_true] = ACTIONS(395), - [anon_sym_false] = ACTIONS(395), - [sym_none] = ACTIONS(395), - [sym_undefined] = ACTIONS(395), - [sym_sink] = ACTIONS(395), - [sym_integer] = ACTIONS(395), - [sym_float] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(397), - [sym_multiline_string] = ACTIONS(397), - [sym_character] = ACTIONS(397), + [ts_builtin_sym_end] = ACTIONS(1377), + [sym_identifier] = ACTIONS(1379), + [anon_sym_import] = ACTIONS(1379), + [anon_sym_func] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_EQ] = ACTIONS(1379), + [anon_sym_struct] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1377), + [anon_sym_RPAREN] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_COMMA] = ACTIONS(1377), + [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1377), + [anon_sym_PIPE] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_RBRACK] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1379), + [anon_sym_anyopaque] = ACTIONS(1379), + [anon_sym_bool] = ACTIONS(1379), + [anon_sym_int] = ACTIONS(1379), + [anon_sym_float] = ACTIONS(1379), + [anon_sym_range] = ACTIONS(1379), + [anon_sym_i8] = ACTIONS(1379), + [anon_sym_i16] = ACTIONS(1379), + [anon_sym_i32] = ACTIONS(1379), + [anon_sym_i64] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1379), + [anon_sym_u16] = ACTIONS(1379), + [anon_sym_u32] = ACTIONS(1379), + [anon_sym_u64] = ACTIONS(1379), + [anon_sym_isize] = ACTIONS(1379), + [anon_sym_usize] = ACTIONS(1379), + [anon_sym_f32] = ACTIONS(1379), + [anon_sym_f64] = ACTIONS(1379), + [anon_sym_c_char] = ACTIONS(1379), + [anon_sym_c_schar] = ACTIONS(1379), + [anon_sym_c_uchar] = ACTIONS(1379), + [anon_sym_c_short] = ACTIONS(1379), + [anon_sym_c_ushort] = ACTIONS(1379), + [anon_sym_c_int] = ACTIONS(1379), + [anon_sym_c_uint] = ACTIONS(1379), + [anon_sym_c_long] = ACTIONS(1379), + [anon_sym_c_ulong] = ACTIONS(1379), + [anon_sym_c_longlong] = ACTIONS(1379), + [anon_sym_c_ulonglong] = ACTIONS(1379), + [anon_sym_c_float] = ACTIONS(1379), + [anon_sym_c_double] = ACTIONS(1379), + [anon_sym_c_longdouble] = ACTIONS(1379), + [anon_sym_PLUS_EQ] = ACTIONS(1377), + [anon_sym_DASH_EQ] = ACTIONS(1377), + [anon_sym_STAR_EQ] = ACTIONS(1377), + [anon_sym_SLASH_EQ] = ACTIONS(1377), + [anon_sym_return] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1379), + [anon_sym_COLON] = ACTIONS(1377), + [anon_sym_break] = ACTIONS(1379), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_defer] = ACTIONS(1379), + [anon_sym_errdefer] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_else] = ACTIONS(1379), + [anon_sym_while] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_match] = ACTIONS(1379), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1377), + [anon_sym_orelse] = ACTIONS(1379), + [anon_sym_catch] = ACTIONS(1379), + [anon_sym_or] = ACTIONS(1379), + [anon_sym_and] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1377), + [anon_sym_BANG_EQ] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_LT_EQ] = ACTIONS(1377), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_GT_EQ] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_SLASH] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_try] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(1379), + [anon_sym_false] = ACTIONS(1379), + [sym_none] = ACTIONS(1379), + [sym_undefined] = ACTIONS(1379), + [sym_sink] = ACTIONS(1379), + [sym_integer] = ACTIONS(1379), + [sym_float] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1377), + [sym_multiline_string] = ACTIONS(1377), + [sym_character] = ACTIONS(1377), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(397), + [sym__newline] = ACTIONS(1377), }, [STATE(518)] = { - [ts_builtin_sym_end] = ACTIONS(1375), - [sym_identifier] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(1377), - [anon_sym_func] = ACTIONS(1377), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_EQ] = ACTIONS(1377), - [anon_sym_struct] = ACTIONS(1377), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_RPAREN] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_COMMA] = ACTIONS(1375), - [anon_sym_RBRACE] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_DOLLAR] = ACTIONS(1375), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_QMARK] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_LBRACK] = ACTIONS(1375), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_RBRACK] = ACTIONS(1375), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_anyopaque] = ACTIONS(1377), - [anon_sym_bool] = ACTIONS(1377), - [anon_sym_int] = ACTIONS(1377), - [anon_sym_float] = ACTIONS(1377), - [anon_sym_range] = ACTIONS(1377), - [anon_sym_i8] = ACTIONS(1377), - [anon_sym_i16] = ACTIONS(1377), - [anon_sym_i32] = ACTIONS(1377), - [anon_sym_i64] = ACTIONS(1377), - [anon_sym_u8] = ACTIONS(1377), - [anon_sym_u16] = ACTIONS(1377), - [anon_sym_u32] = ACTIONS(1377), - [anon_sym_u64] = ACTIONS(1377), - [anon_sym_isize] = ACTIONS(1377), - [anon_sym_usize] = ACTIONS(1377), - [anon_sym_f32] = ACTIONS(1377), - [anon_sym_f64] = ACTIONS(1377), - [anon_sym_c_char] = ACTIONS(1377), - [anon_sym_c_schar] = ACTIONS(1377), - [anon_sym_c_uchar] = ACTIONS(1377), - [anon_sym_c_short] = ACTIONS(1377), - [anon_sym_c_ushort] = ACTIONS(1377), - [anon_sym_c_int] = ACTIONS(1377), - [anon_sym_c_uint] = ACTIONS(1377), - [anon_sym_c_long] = ACTIONS(1377), - [anon_sym_c_ulong] = ACTIONS(1377), - [anon_sym_c_longlong] = ACTIONS(1377), - [anon_sym_c_ulonglong] = ACTIONS(1377), - [anon_sym_c_float] = ACTIONS(1377), - [anon_sym_c_double] = ACTIONS(1377), - [anon_sym_c_longdouble] = ACTIONS(1377), - [anon_sym_PLUS_EQ] = ACTIONS(1375), - [anon_sym_DASH_EQ] = ACTIONS(1375), - [anon_sym_STAR_EQ] = ACTIONS(1375), - [anon_sym_SLASH_EQ] = ACTIONS(1375), - [anon_sym_return] = ACTIONS(1377), - [anon_sym_yield] = ACTIONS(1377), - [anon_sym_COLON] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1377), - [anon_sym_defer] = ACTIONS(1377), - [anon_sym_errdefer] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1377), - [anon_sym_else] = ACTIONS(1377), - [anon_sym_while] = ACTIONS(1377), - [anon_sym_for] = ACTIONS(1377), - [anon_sym_match] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1375), - [anon_sym_orelse] = ACTIONS(1377), - [anon_sym_catch] = ACTIONS(1377), - [anon_sym_or] = ACTIONS(1377), - [anon_sym_and] = ACTIONS(1377), - [anon_sym_EQ_EQ] = ACTIONS(1375), - [anon_sym_BANG_EQ] = ACTIONS(1375), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_LT_EQ] = ACTIONS(1375), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_GT_EQ] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_try] = ACTIONS(1377), - [anon_sym_DOT] = ACTIONS(1377), - [anon_sym_CARET] = ACTIONS(1375), - [anon_sym_true] = ACTIONS(1377), - [anon_sym_false] = ACTIONS(1377), - [sym_none] = ACTIONS(1377), - [sym_undefined] = ACTIONS(1377), - [sym_sink] = ACTIONS(1377), - [sym_integer] = ACTIONS(1377), - [sym_float] = ACTIONS(1375), - [anon_sym_DQUOTE] = ACTIONS(1375), - [sym_multiline_string] = ACTIONS(1375), - [sym_character] = ACTIONS(1375), + [ts_builtin_sym_end] = ACTIONS(1381), + [sym_identifier] = ACTIONS(1383), + [anon_sym_import] = ACTIONS(1383), + [anon_sym_func] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_EQ] = ACTIONS(1383), + [anon_sym_struct] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_RPAREN] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_COMMA] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_QMARK] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_RBRACK] = ACTIONS(1381), + [anon_sym_void] = ACTIONS(1383), + [anon_sym_anyopaque] = ACTIONS(1383), + [anon_sym_bool] = ACTIONS(1383), + [anon_sym_int] = ACTIONS(1383), + [anon_sym_float] = ACTIONS(1383), + [anon_sym_range] = ACTIONS(1383), + [anon_sym_i8] = ACTIONS(1383), + [anon_sym_i16] = ACTIONS(1383), + [anon_sym_i32] = ACTIONS(1383), + [anon_sym_i64] = ACTIONS(1383), + [anon_sym_u8] = ACTIONS(1383), + [anon_sym_u16] = ACTIONS(1383), + [anon_sym_u32] = ACTIONS(1383), + [anon_sym_u64] = ACTIONS(1383), + [anon_sym_isize] = ACTIONS(1383), + [anon_sym_usize] = ACTIONS(1383), + [anon_sym_f32] = ACTIONS(1383), + [anon_sym_f64] = ACTIONS(1383), + [anon_sym_c_char] = ACTIONS(1383), + [anon_sym_c_schar] = ACTIONS(1383), + [anon_sym_c_uchar] = ACTIONS(1383), + [anon_sym_c_short] = ACTIONS(1383), + [anon_sym_c_ushort] = ACTIONS(1383), + [anon_sym_c_int] = ACTIONS(1383), + [anon_sym_c_uint] = ACTIONS(1383), + [anon_sym_c_long] = ACTIONS(1383), + [anon_sym_c_ulong] = ACTIONS(1383), + [anon_sym_c_longlong] = ACTIONS(1383), + [anon_sym_c_ulonglong] = ACTIONS(1383), + [anon_sym_c_float] = ACTIONS(1383), + [anon_sym_c_double] = ACTIONS(1383), + [anon_sym_c_longdouble] = ACTIONS(1383), + [anon_sym_PLUS_EQ] = ACTIONS(1381), + [anon_sym_DASH_EQ] = ACTIONS(1381), + [anon_sym_STAR_EQ] = ACTIONS(1381), + [anon_sym_SLASH_EQ] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1383), + [anon_sym_yield] = ACTIONS(1383), + [anon_sym_COLON] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1383), + [anon_sym_continue] = ACTIONS(1383), + [anon_sym_defer] = ACTIONS(1383), + [anon_sym_errdefer] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_else] = ACTIONS(1383), + [anon_sym_while] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(1383), + [anon_sym_match] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1381), + [anon_sym_orelse] = ACTIONS(1383), + [anon_sym_catch] = ACTIONS(1383), + [anon_sym_or] = ACTIONS(1383), + [anon_sym_and] = ACTIONS(1383), + [anon_sym_EQ_EQ] = ACTIONS(1381), + [anon_sym_BANG_EQ] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_LT_EQ] = ACTIONS(1381), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_GT_EQ] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1383), + [anon_sym_false] = ACTIONS(1383), + [sym_none] = ACTIONS(1383), + [sym_undefined] = ACTIONS(1383), + [sym_sink] = ACTIONS(1383), + [sym_integer] = ACTIONS(1383), + [sym_float] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [sym_multiline_string] = ACTIONS(1381), + [sym_character] = ACTIONS(1381), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1375), + [sym__newline] = ACTIONS(1381), }, [STATE(519)] = { - [ts_builtin_sym_end] = ACTIONS(1379), - [sym_identifier] = ACTIONS(1381), - [anon_sym_import] = ACTIONS(1381), - [anon_sym_func] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_EQ] = ACTIONS(1381), - [anon_sym_struct] = ACTIONS(1381), - [anon_sym_LPAREN] = ACTIONS(1379), - [anon_sym_RPAREN] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_COMMA] = ACTIONS(1379), - [anon_sym_RBRACE] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1381), - [anon_sym_DOLLAR] = ACTIONS(1379), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_QMARK] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_RBRACK] = ACTIONS(1379), - [anon_sym_void] = ACTIONS(1381), - [anon_sym_anyopaque] = ACTIONS(1381), - [anon_sym_bool] = ACTIONS(1381), - [anon_sym_int] = ACTIONS(1381), - [anon_sym_float] = ACTIONS(1381), - [anon_sym_range] = ACTIONS(1381), - [anon_sym_i8] = ACTIONS(1381), - [anon_sym_i16] = ACTIONS(1381), - [anon_sym_i32] = ACTIONS(1381), - [anon_sym_i64] = ACTIONS(1381), - [anon_sym_u8] = ACTIONS(1381), - [anon_sym_u16] = ACTIONS(1381), - [anon_sym_u32] = ACTIONS(1381), - [anon_sym_u64] = ACTIONS(1381), - [anon_sym_isize] = ACTIONS(1381), - [anon_sym_usize] = ACTIONS(1381), - [anon_sym_f32] = ACTIONS(1381), - [anon_sym_f64] = ACTIONS(1381), - [anon_sym_c_char] = ACTIONS(1381), - [anon_sym_c_schar] = ACTIONS(1381), - [anon_sym_c_uchar] = ACTIONS(1381), - [anon_sym_c_short] = ACTIONS(1381), - [anon_sym_c_ushort] = ACTIONS(1381), - [anon_sym_c_int] = ACTIONS(1381), - [anon_sym_c_uint] = ACTIONS(1381), - [anon_sym_c_long] = ACTIONS(1381), - [anon_sym_c_ulong] = ACTIONS(1381), - [anon_sym_c_longlong] = ACTIONS(1381), - [anon_sym_c_ulonglong] = ACTIONS(1381), - [anon_sym_c_float] = ACTIONS(1381), - [anon_sym_c_double] = ACTIONS(1381), - [anon_sym_c_longdouble] = ACTIONS(1381), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_return] = ACTIONS(1381), - [anon_sym_yield] = ACTIONS(1381), - [anon_sym_COLON] = ACTIONS(1379), - [anon_sym_break] = ACTIONS(1381), - [anon_sym_continue] = ACTIONS(1381), - [anon_sym_defer] = ACTIONS(1381), - [anon_sym_errdefer] = ACTIONS(1381), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_else] = ACTIONS(1381), - [anon_sym_while] = ACTIONS(1381), - [anon_sym_for] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1381), - [anon_sym_DOT_DOT] = ACTIONS(1381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1379), - [anon_sym_orelse] = ACTIONS(1381), - [anon_sym_catch] = ACTIONS(1381), - [anon_sym_or] = ACTIONS(1381), - [anon_sym_and] = ACTIONS(1381), - [anon_sym_EQ_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1379), - [anon_sym_LT] = ACTIONS(1381), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1381), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_PLUS] = ACTIONS(1381), - [anon_sym_SLASH] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym_try] = ACTIONS(1381), - [anon_sym_DOT] = ACTIONS(1381), - [anon_sym_CARET] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(1381), - [anon_sym_false] = ACTIONS(1381), - [sym_none] = ACTIONS(1381), - [sym_undefined] = ACTIONS(1381), - [sym_sink] = ACTIONS(1381), - [sym_integer] = ACTIONS(1381), - [sym_float] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1379), - [sym_multiline_string] = ACTIONS(1379), - [sym_character] = ACTIONS(1379), + [ts_builtin_sym_end] = ACTIONS(345), + [sym_identifier] = ACTIONS(349), + [anon_sym_import] = ACTIONS(349), + [anon_sym_func] = ACTIONS(349), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(349), + [anon_sym_struct] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_COMMA] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOLLAR] = ACTIONS(345), + [anon_sym_PIPE] = ACTIONS(345), + [anon_sym_QMARK] = ACTIONS(345), + [anon_sym_STAR] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_RBRACK] = ACTIONS(345), + [anon_sym_void] = ACTIONS(349), + [anon_sym_anyopaque] = ACTIONS(349), + [anon_sym_bool] = ACTIONS(349), + [anon_sym_int] = ACTIONS(349), + [anon_sym_float] = ACTIONS(349), + [anon_sym_range] = ACTIONS(349), + [anon_sym_i8] = ACTIONS(349), + [anon_sym_i16] = ACTIONS(349), + [anon_sym_i32] = ACTIONS(349), + [anon_sym_i64] = ACTIONS(349), + [anon_sym_u8] = ACTIONS(349), + [anon_sym_u16] = ACTIONS(349), + [anon_sym_u32] = ACTIONS(349), + [anon_sym_u64] = ACTIONS(349), + [anon_sym_isize] = ACTIONS(349), + [anon_sym_usize] = ACTIONS(349), + [anon_sym_f32] = ACTIONS(349), + [anon_sym_f64] = ACTIONS(349), + [anon_sym_c_char] = ACTIONS(349), + [anon_sym_c_schar] = ACTIONS(349), + [anon_sym_c_uchar] = ACTIONS(349), + [anon_sym_c_short] = ACTIONS(349), + [anon_sym_c_ushort] = ACTIONS(349), + [anon_sym_c_int] = ACTIONS(349), + [anon_sym_c_uint] = ACTIONS(349), + [anon_sym_c_long] = ACTIONS(349), + [anon_sym_c_ulong] = ACTIONS(349), + [anon_sym_c_longlong] = ACTIONS(349), + [anon_sym_c_ulonglong] = ACTIONS(349), + [anon_sym_c_float] = ACTIONS(349), + [anon_sym_c_double] = ACTIONS(349), + [anon_sym_c_longdouble] = ACTIONS(349), + [anon_sym_PLUS_EQ] = ACTIONS(345), + [anon_sym_DASH_EQ] = ACTIONS(345), + [anon_sym_STAR_EQ] = ACTIONS(345), + [anon_sym_SLASH_EQ] = ACTIONS(345), + [anon_sym_return] = ACTIONS(349), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_COLON] = ACTIONS(345), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(349), + [anon_sym_defer] = ACTIONS(349), + [anon_sym_errdefer] = ACTIONS(349), + [anon_sym_if] = ACTIONS(349), + [anon_sym_else] = ACTIONS(349), + [anon_sym_while] = ACTIONS(349), + [anon_sym_for] = ACTIONS(349), + [anon_sym_match] = ACTIONS(349), + [anon_sym_DOT_DOT] = ACTIONS(349), + [anon_sym_DOT_DOT_EQ] = ACTIONS(345), + [anon_sym_orelse] = ACTIONS(349), + [anon_sym_catch] = ACTIONS(349), + [anon_sym_or] = ACTIONS(349), + [anon_sym_and] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(345), + [anon_sym_BANG_EQ] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(345), + [anon_sym_GT] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(345), + [anon_sym_try] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_CARET] = ACTIONS(345), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [sym_none] = ACTIONS(349), + [sym_undefined] = ACTIONS(349), + [sym_sink] = ACTIONS(349), + [sym_integer] = ACTIONS(349), + [sym_float] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [sym_multiline_string] = ACTIONS(345), + [sym_character] = ACTIONS(345), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1379), + [sym__newline] = ACTIONS(345), }, [STATE(520)] = { - [ts_builtin_sym_end] = ACTIONS(1383), - [sym_identifier] = ACTIONS(1385), - [anon_sym_import] = ACTIONS(1385), - [anon_sym_func] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_EQ] = ACTIONS(1385), - [anon_sym_struct] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_RPAREN] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_COMMA] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_DOLLAR] = ACTIONS(1383), - [anon_sym_PIPE] = ACTIONS(1383), - [anon_sym_QMARK] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_RBRACK] = ACTIONS(1383), - [anon_sym_void] = ACTIONS(1385), - [anon_sym_anyopaque] = ACTIONS(1385), - [anon_sym_bool] = ACTIONS(1385), - [anon_sym_int] = ACTIONS(1385), - [anon_sym_float] = ACTIONS(1385), - [anon_sym_range] = ACTIONS(1385), - [anon_sym_i8] = ACTIONS(1385), - [anon_sym_i16] = ACTIONS(1385), - [anon_sym_i32] = ACTIONS(1385), - [anon_sym_i64] = ACTIONS(1385), - [anon_sym_u8] = ACTIONS(1385), - [anon_sym_u16] = ACTIONS(1385), - [anon_sym_u32] = ACTIONS(1385), - [anon_sym_u64] = ACTIONS(1385), - [anon_sym_isize] = ACTIONS(1385), - [anon_sym_usize] = ACTIONS(1385), - [anon_sym_f32] = ACTIONS(1385), - [anon_sym_f64] = ACTIONS(1385), - [anon_sym_c_char] = ACTIONS(1385), - [anon_sym_c_schar] = ACTIONS(1385), - [anon_sym_c_uchar] = ACTIONS(1385), - [anon_sym_c_short] = ACTIONS(1385), - [anon_sym_c_ushort] = ACTIONS(1385), - [anon_sym_c_int] = ACTIONS(1385), - [anon_sym_c_uint] = ACTIONS(1385), - [anon_sym_c_long] = ACTIONS(1385), - [anon_sym_c_ulong] = ACTIONS(1385), - [anon_sym_c_longlong] = ACTIONS(1385), - [anon_sym_c_ulonglong] = ACTIONS(1385), - [anon_sym_c_float] = ACTIONS(1385), - [anon_sym_c_double] = ACTIONS(1385), - [anon_sym_c_longdouble] = ACTIONS(1385), - [anon_sym_PLUS_EQ] = ACTIONS(1383), - [anon_sym_DASH_EQ] = ACTIONS(1383), - [anon_sym_STAR_EQ] = ACTIONS(1383), - [anon_sym_SLASH_EQ] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_COLON] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_defer] = ACTIONS(1385), - [anon_sym_errdefer] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_else] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_match] = ACTIONS(1385), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1383), - [anon_sym_orelse] = ACTIONS(1385), - [anon_sym_catch] = ACTIONS(1385), - [anon_sym_or] = ACTIONS(1385), - [anon_sym_and] = ACTIONS(1385), - [anon_sym_EQ_EQ] = ACTIONS(1383), - [anon_sym_BANG_EQ] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(1385), - [anon_sym_LT_EQ] = ACTIONS(1383), - [anon_sym_GT] = ACTIONS(1385), - [anon_sym_GT_EQ] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1383), - [anon_sym_try] = ACTIONS(1385), - [anon_sym_DOT] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1383), - [anon_sym_true] = ACTIONS(1385), - [anon_sym_false] = ACTIONS(1385), - [sym_none] = ACTIONS(1385), - [sym_undefined] = ACTIONS(1385), - [sym_sink] = ACTIONS(1385), - [sym_integer] = ACTIONS(1385), - [sym_float] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1383), - [sym_multiline_string] = ACTIONS(1383), - [sym_character] = ACTIONS(1383), + [ts_builtin_sym_end] = ACTIONS(1385), + [sym_identifier] = ACTIONS(1387), + [anon_sym_import] = ACTIONS(1387), + [anon_sym_func] = ACTIONS(1387), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_struct] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1385), + [anon_sym_RPAREN] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_COMMA] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1385), + [anon_sym_PIPE] = ACTIONS(1385), + [anon_sym_QMARK] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_RBRACK] = ACTIONS(1385), + [anon_sym_void] = ACTIONS(1387), + [anon_sym_anyopaque] = ACTIONS(1387), + [anon_sym_bool] = ACTIONS(1387), + [anon_sym_int] = ACTIONS(1387), + [anon_sym_float] = ACTIONS(1387), + [anon_sym_range] = ACTIONS(1387), + [anon_sym_i8] = ACTIONS(1387), + [anon_sym_i16] = ACTIONS(1387), + [anon_sym_i32] = ACTIONS(1387), + [anon_sym_i64] = ACTIONS(1387), + [anon_sym_u8] = ACTIONS(1387), + [anon_sym_u16] = ACTIONS(1387), + [anon_sym_u32] = ACTIONS(1387), + [anon_sym_u64] = ACTIONS(1387), + [anon_sym_isize] = ACTIONS(1387), + [anon_sym_usize] = ACTIONS(1387), + [anon_sym_f32] = ACTIONS(1387), + [anon_sym_f64] = ACTIONS(1387), + [anon_sym_c_char] = ACTIONS(1387), + [anon_sym_c_schar] = ACTIONS(1387), + [anon_sym_c_uchar] = ACTIONS(1387), + [anon_sym_c_short] = ACTIONS(1387), + [anon_sym_c_ushort] = ACTIONS(1387), + [anon_sym_c_int] = ACTIONS(1387), + [anon_sym_c_uint] = ACTIONS(1387), + [anon_sym_c_long] = ACTIONS(1387), + [anon_sym_c_ulong] = ACTIONS(1387), + [anon_sym_c_longlong] = ACTIONS(1387), + [anon_sym_c_ulonglong] = ACTIONS(1387), + [anon_sym_c_float] = ACTIONS(1387), + [anon_sym_c_double] = ACTIONS(1387), + [anon_sym_c_longdouble] = ACTIONS(1387), + [anon_sym_PLUS_EQ] = ACTIONS(1385), + [anon_sym_DASH_EQ] = ACTIONS(1385), + [anon_sym_STAR_EQ] = ACTIONS(1385), + [anon_sym_SLASH_EQ] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_COLON] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_defer] = ACTIONS(1387), + [anon_sym_errdefer] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1385), + [anon_sym_orelse] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1385), + [anon_sym_BANG_EQ] = ACTIONS(1385), + [anon_sym_LT] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1385), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1385), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [sym_none] = ACTIONS(1387), + [sym_undefined] = ACTIONS(1387), + [sym_sink] = ACTIONS(1387), + [sym_integer] = ACTIONS(1387), + [sym_float] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(1385), + [sym_multiline_string] = ACTIONS(1385), + [sym_character] = ACTIONS(1385), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1383), + [sym__newline] = ACTIONS(1385), }, [STATE(521)] = { - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(341), - [anon_sym_import] = ACTIONS(341), - [anon_sym_func] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(341), - [anon_sym_struct] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(343), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_PIPE] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_RBRACK] = ACTIONS(343), - [anon_sym_void] = ACTIONS(341), - [anon_sym_anyopaque] = ACTIONS(341), - [anon_sym_bool] = ACTIONS(341), - [anon_sym_int] = ACTIONS(341), - [anon_sym_float] = ACTIONS(341), - [anon_sym_range] = ACTIONS(341), - [anon_sym_i8] = ACTIONS(341), - [anon_sym_i16] = ACTIONS(341), - [anon_sym_i32] = ACTIONS(341), - [anon_sym_i64] = ACTIONS(341), - [anon_sym_u8] = ACTIONS(341), - [anon_sym_u16] = ACTIONS(341), - [anon_sym_u32] = ACTIONS(341), - [anon_sym_u64] = ACTIONS(341), - [anon_sym_isize] = ACTIONS(341), - [anon_sym_usize] = ACTIONS(341), - [anon_sym_f32] = ACTIONS(341), - [anon_sym_f64] = ACTIONS(341), - [anon_sym_c_char] = ACTIONS(341), - [anon_sym_c_schar] = ACTIONS(341), - [anon_sym_c_uchar] = ACTIONS(341), - [anon_sym_c_short] = ACTIONS(341), - [anon_sym_c_ushort] = ACTIONS(341), - [anon_sym_c_int] = ACTIONS(341), - [anon_sym_c_uint] = ACTIONS(341), - [anon_sym_c_long] = ACTIONS(341), - [anon_sym_c_ulong] = ACTIONS(341), - [anon_sym_c_longlong] = ACTIONS(341), - [anon_sym_c_ulonglong] = ACTIONS(341), - [anon_sym_c_float] = ACTIONS(341), - [anon_sym_c_double] = ACTIONS(341), - [anon_sym_c_longdouble] = ACTIONS(341), - [anon_sym_PLUS_EQ] = ACTIONS(343), - [anon_sym_DASH_EQ] = ACTIONS(343), - [anon_sym_STAR_EQ] = ACTIONS(343), - [anon_sym_SLASH_EQ] = ACTIONS(343), - [anon_sym_return] = ACTIONS(341), - [anon_sym_yield] = ACTIONS(341), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_break] = ACTIONS(341), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_defer] = ACTIONS(341), - [anon_sym_errdefer] = ACTIONS(341), - [anon_sym_if] = ACTIONS(341), - [anon_sym_else] = ACTIONS(341), - [anon_sym_while] = ACTIONS(341), - [anon_sym_for] = ACTIONS(341), - [anon_sym_match] = ACTIONS(341), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_DOT_DOT_EQ] = ACTIONS(343), - [anon_sym_orelse] = ACTIONS(341), - [anon_sym_catch] = ACTIONS(341), - [anon_sym_or] = ACTIONS(341), - [anon_sym_and] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(343), - [anon_sym_try] = ACTIONS(341), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_true] = ACTIONS(341), - [anon_sym_false] = ACTIONS(341), - [sym_none] = ACTIONS(341), - [sym_undefined] = ACTIONS(341), - [sym_sink] = ACTIONS(341), - [sym_integer] = ACTIONS(341), - [sym_float] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(343), - [sym_multiline_string] = ACTIONS(343), - [sym_character] = ACTIONS(343), + [ts_builtin_sym_end] = ACTIONS(1389), + [sym_identifier] = ACTIONS(1391), + [anon_sym_import] = ACTIONS(1391), + [anon_sym_func] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_EQ] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_RPAREN] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_COMMA] = ACTIONS(1389), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1389), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_QMARK] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_RBRACK] = ACTIONS(1389), + [anon_sym_void] = ACTIONS(1391), + [anon_sym_anyopaque] = ACTIONS(1391), + [anon_sym_bool] = ACTIONS(1391), + [anon_sym_int] = ACTIONS(1391), + [anon_sym_float] = ACTIONS(1391), + [anon_sym_range] = ACTIONS(1391), + [anon_sym_i8] = ACTIONS(1391), + [anon_sym_i16] = ACTIONS(1391), + [anon_sym_i32] = ACTIONS(1391), + [anon_sym_i64] = ACTIONS(1391), + [anon_sym_u8] = ACTIONS(1391), + [anon_sym_u16] = ACTIONS(1391), + [anon_sym_u32] = ACTIONS(1391), + [anon_sym_u64] = ACTIONS(1391), + [anon_sym_isize] = ACTIONS(1391), + [anon_sym_usize] = ACTIONS(1391), + [anon_sym_f32] = ACTIONS(1391), + [anon_sym_f64] = ACTIONS(1391), + [anon_sym_c_char] = ACTIONS(1391), + [anon_sym_c_schar] = ACTIONS(1391), + [anon_sym_c_uchar] = ACTIONS(1391), + [anon_sym_c_short] = ACTIONS(1391), + [anon_sym_c_ushort] = ACTIONS(1391), + [anon_sym_c_int] = ACTIONS(1391), + [anon_sym_c_uint] = ACTIONS(1391), + [anon_sym_c_long] = ACTIONS(1391), + [anon_sym_c_ulong] = ACTIONS(1391), + [anon_sym_c_longlong] = ACTIONS(1391), + [anon_sym_c_ulonglong] = ACTIONS(1391), + [anon_sym_c_float] = ACTIONS(1391), + [anon_sym_c_double] = ACTIONS(1391), + [anon_sym_c_longdouble] = ACTIONS(1391), + [anon_sym_PLUS_EQ] = ACTIONS(1389), + [anon_sym_DASH_EQ] = ACTIONS(1389), + [anon_sym_STAR_EQ] = ACTIONS(1389), + [anon_sym_SLASH_EQ] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_yield] = ACTIONS(1391), + [anon_sym_COLON] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_defer] = ACTIONS(1391), + [anon_sym_errdefer] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_DOT_DOT] = ACTIONS(1391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1389), + [anon_sym_orelse] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1389), + [anon_sym_BANG_EQ] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1389), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_SLASH] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1389), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [sym_none] = ACTIONS(1391), + [sym_undefined] = ACTIONS(1391), + [sym_sink] = ACTIONS(1391), + [sym_integer] = ACTIONS(1391), + [sym_float] = ACTIONS(1389), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym_multiline_string] = ACTIONS(1389), + [sym_character] = ACTIONS(1389), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(343), + [sym__newline] = ACTIONS(1389), }, [STATE(522)] = { - [ts_builtin_sym_end] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1389), - [anon_sym_import] = ACTIONS(1389), - [anon_sym_func] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_EQ] = ACTIONS(1389), - [anon_sym_struct] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_RPAREN] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_COMMA] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1387), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_DOLLAR] = ACTIONS(1387), - [anon_sym_PIPE] = ACTIONS(1387), - [anon_sym_QMARK] = ACTIONS(1387), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_RBRACK] = ACTIONS(1387), - [anon_sym_void] = ACTIONS(1389), - [anon_sym_anyopaque] = ACTIONS(1389), - [anon_sym_bool] = ACTIONS(1389), - [anon_sym_int] = ACTIONS(1389), - [anon_sym_float] = ACTIONS(1389), - [anon_sym_range] = ACTIONS(1389), - [anon_sym_i8] = ACTIONS(1389), - [anon_sym_i16] = ACTIONS(1389), - [anon_sym_i32] = ACTIONS(1389), - [anon_sym_i64] = ACTIONS(1389), - [anon_sym_u8] = ACTIONS(1389), - [anon_sym_u16] = ACTIONS(1389), - [anon_sym_u32] = ACTIONS(1389), - [anon_sym_u64] = ACTIONS(1389), - [anon_sym_isize] = ACTIONS(1389), - [anon_sym_usize] = ACTIONS(1389), - [anon_sym_f32] = ACTIONS(1389), - [anon_sym_f64] = ACTIONS(1389), - [anon_sym_c_char] = ACTIONS(1389), - [anon_sym_c_schar] = ACTIONS(1389), - [anon_sym_c_uchar] = ACTIONS(1389), - [anon_sym_c_short] = ACTIONS(1389), - [anon_sym_c_ushort] = ACTIONS(1389), - [anon_sym_c_int] = ACTIONS(1389), - [anon_sym_c_uint] = ACTIONS(1389), - [anon_sym_c_long] = ACTIONS(1389), - [anon_sym_c_ulong] = ACTIONS(1389), - [anon_sym_c_longlong] = ACTIONS(1389), - [anon_sym_c_ulonglong] = ACTIONS(1389), - [anon_sym_c_float] = ACTIONS(1389), - [anon_sym_c_double] = ACTIONS(1389), - [anon_sym_c_longdouble] = ACTIONS(1389), - [anon_sym_PLUS_EQ] = ACTIONS(1387), - [anon_sym_DASH_EQ] = ACTIONS(1387), - [anon_sym_STAR_EQ] = ACTIONS(1387), - [anon_sym_SLASH_EQ] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_COLON] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_defer] = ACTIONS(1389), - [anon_sym_errdefer] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_else] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_match] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1389), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1387), - [anon_sym_orelse] = ACTIONS(1389), - [anon_sym_catch] = ACTIONS(1389), - [anon_sym_or] = ACTIONS(1389), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1387), - [anon_sym_BANG_EQ] = ACTIONS(1387), - [anon_sym_LT] = ACTIONS(1389), - [anon_sym_LT_EQ] = ACTIONS(1387), - [anon_sym_GT] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1387), - [anon_sym_try] = ACTIONS(1389), - [anon_sym_DOT] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1387), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), - [sym_none] = ACTIONS(1389), - [sym_undefined] = ACTIONS(1389), - [sym_sink] = ACTIONS(1389), - [sym_integer] = ACTIONS(1389), - [sym_float] = ACTIONS(1387), - [anon_sym_DQUOTE] = ACTIONS(1387), - [sym_multiline_string] = ACTIONS(1387), - [sym_character] = ACTIONS(1387), + [ts_builtin_sym_end] = ACTIONS(1393), + [sym_identifier] = ACTIONS(1395), + [anon_sym_import] = ACTIONS(1395), + [anon_sym_func] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_EQ] = ACTIONS(1395), + [anon_sym_struct] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_RPAREN] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_COMMA] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1395), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1393), + [anon_sym_QMARK] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_RBRACK] = ACTIONS(1393), + [anon_sym_void] = ACTIONS(1395), + [anon_sym_anyopaque] = ACTIONS(1395), + [anon_sym_bool] = ACTIONS(1395), + [anon_sym_int] = ACTIONS(1395), + [anon_sym_float] = ACTIONS(1395), + [anon_sym_range] = ACTIONS(1395), + [anon_sym_i8] = ACTIONS(1395), + [anon_sym_i16] = ACTIONS(1395), + [anon_sym_i32] = ACTIONS(1395), + [anon_sym_i64] = ACTIONS(1395), + [anon_sym_u8] = ACTIONS(1395), + [anon_sym_u16] = ACTIONS(1395), + [anon_sym_u32] = ACTIONS(1395), + [anon_sym_u64] = ACTIONS(1395), + [anon_sym_isize] = ACTIONS(1395), + [anon_sym_usize] = ACTIONS(1395), + [anon_sym_f32] = ACTIONS(1395), + [anon_sym_f64] = ACTIONS(1395), + [anon_sym_c_char] = ACTIONS(1395), + [anon_sym_c_schar] = ACTIONS(1395), + [anon_sym_c_uchar] = ACTIONS(1395), + [anon_sym_c_short] = ACTIONS(1395), + [anon_sym_c_ushort] = ACTIONS(1395), + [anon_sym_c_int] = ACTIONS(1395), + [anon_sym_c_uint] = ACTIONS(1395), + [anon_sym_c_long] = ACTIONS(1395), + [anon_sym_c_ulong] = ACTIONS(1395), + [anon_sym_c_longlong] = ACTIONS(1395), + [anon_sym_c_ulonglong] = ACTIONS(1395), + [anon_sym_c_float] = ACTIONS(1395), + [anon_sym_c_double] = ACTIONS(1395), + [anon_sym_c_longdouble] = ACTIONS(1395), + [anon_sym_PLUS_EQ] = ACTIONS(1393), + [anon_sym_DASH_EQ] = ACTIONS(1393), + [anon_sym_STAR_EQ] = ACTIONS(1393), + [anon_sym_SLASH_EQ] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1395), + [anon_sym_yield] = ACTIONS(1395), + [anon_sym_COLON] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1395), + [anon_sym_continue] = ACTIONS(1395), + [anon_sym_defer] = ACTIONS(1395), + [anon_sym_errdefer] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_else] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_match] = ACTIONS(1395), + [anon_sym_DOT_DOT] = ACTIONS(1395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1393), + [anon_sym_orelse] = ACTIONS(1395), + [anon_sym_catch] = ACTIONS(1395), + [anon_sym_or] = ACTIONS(1395), + [anon_sym_and] = ACTIONS(1395), + [anon_sym_EQ_EQ] = ACTIONS(1393), + [anon_sym_BANG_EQ] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1395), + [anon_sym_LT_EQ] = ACTIONS(1393), + [anon_sym_GT] = ACTIONS(1395), + [anon_sym_GT_EQ] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1395), + [anon_sym_SLASH] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_try] = ACTIONS(1395), + [anon_sym_DOT] = ACTIONS(1395), + [anon_sym_CARET] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(1395), + [anon_sym_false] = ACTIONS(1395), + [sym_none] = ACTIONS(1395), + [sym_undefined] = ACTIONS(1395), + [sym_sink] = ACTIONS(1395), + [sym_integer] = ACTIONS(1395), + [sym_float] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [sym_multiline_string] = ACTIONS(1393), + [sym_character] = ACTIONS(1393), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1387), + [sym__newline] = ACTIONS(1393), }, [STATE(523)] = { - [ts_builtin_sym_end] = ACTIONS(1391), - [sym_identifier] = ACTIONS(1393), - [anon_sym_import] = ACTIONS(1393), - [anon_sym_func] = ACTIONS(1393), - [anon_sym_BANG] = ACTIONS(1393), - [anon_sym_EQ] = ACTIONS(1393), - [anon_sym_struct] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1391), - [anon_sym_RPAREN] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_COMMA] = ACTIONS(1391), - [anon_sym_RBRACE] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_DOLLAR] = ACTIONS(1391), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_QMARK] = ACTIONS(1391), - [anon_sym_STAR] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym_RBRACK] = ACTIONS(1391), - [anon_sym_void] = ACTIONS(1393), - [anon_sym_anyopaque] = ACTIONS(1393), - [anon_sym_bool] = ACTIONS(1393), - [anon_sym_int] = ACTIONS(1393), - [anon_sym_float] = ACTIONS(1393), - [anon_sym_range] = ACTIONS(1393), - [anon_sym_i8] = ACTIONS(1393), - [anon_sym_i16] = ACTIONS(1393), - [anon_sym_i32] = ACTIONS(1393), - [anon_sym_i64] = ACTIONS(1393), - [anon_sym_u8] = ACTIONS(1393), - [anon_sym_u16] = ACTIONS(1393), - [anon_sym_u32] = ACTIONS(1393), - [anon_sym_u64] = ACTIONS(1393), - [anon_sym_isize] = ACTIONS(1393), - [anon_sym_usize] = ACTIONS(1393), - [anon_sym_f32] = ACTIONS(1393), - [anon_sym_f64] = ACTIONS(1393), - [anon_sym_c_char] = ACTIONS(1393), - [anon_sym_c_schar] = ACTIONS(1393), - [anon_sym_c_uchar] = ACTIONS(1393), - [anon_sym_c_short] = ACTIONS(1393), - [anon_sym_c_ushort] = ACTIONS(1393), - [anon_sym_c_int] = ACTIONS(1393), - [anon_sym_c_uint] = ACTIONS(1393), - [anon_sym_c_long] = ACTIONS(1393), - [anon_sym_c_ulong] = ACTIONS(1393), - [anon_sym_c_longlong] = ACTIONS(1393), - [anon_sym_c_ulonglong] = ACTIONS(1393), - [anon_sym_c_float] = ACTIONS(1393), - [anon_sym_c_double] = ACTIONS(1393), - [anon_sym_c_longdouble] = ACTIONS(1393), - [anon_sym_PLUS_EQ] = ACTIONS(1391), - [anon_sym_DASH_EQ] = ACTIONS(1391), - [anon_sym_STAR_EQ] = ACTIONS(1391), - [anon_sym_SLASH_EQ] = ACTIONS(1391), - [anon_sym_return] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_COLON] = ACTIONS(1391), - [anon_sym_break] = ACTIONS(1393), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_defer] = ACTIONS(1393), - [anon_sym_errdefer] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_else] = ACTIONS(1393), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_match] = ACTIONS(1393), - [anon_sym_DOT_DOT] = ACTIONS(1393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1391), - [anon_sym_orelse] = ACTIONS(1393), - [anon_sym_catch] = ACTIONS(1393), - [anon_sym_or] = ACTIONS(1393), - [anon_sym_and] = ACTIONS(1393), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_SLASH] = ACTIONS(1393), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym_try] = ACTIONS(1393), - [anon_sym_DOT] = ACTIONS(1393), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_true] = ACTIONS(1393), - [anon_sym_false] = ACTIONS(1393), - [sym_none] = ACTIONS(1393), - [sym_undefined] = ACTIONS(1393), - [sym_sink] = ACTIONS(1393), - [sym_integer] = ACTIONS(1393), - [sym_float] = ACTIONS(1391), - [anon_sym_DQUOTE] = ACTIONS(1391), - [sym_multiline_string] = ACTIONS(1391), - [sym_character] = ACTIONS(1391), + [ts_builtin_sym_end] = ACTIONS(1397), + [sym_identifier] = ACTIONS(1399), + [anon_sym_import] = ACTIONS(1399), + [anon_sym_func] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_EQ] = ACTIONS(1399), + [anon_sym_struct] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_RPAREN] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_COMMA] = ACTIONS(1397), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_DOLLAR] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_RBRACK] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1399), + [anon_sym_anyopaque] = ACTIONS(1399), + [anon_sym_bool] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_float] = ACTIONS(1399), + [anon_sym_range] = ACTIONS(1399), + [anon_sym_i8] = ACTIONS(1399), + [anon_sym_i16] = ACTIONS(1399), + [anon_sym_i32] = ACTIONS(1399), + [anon_sym_i64] = ACTIONS(1399), + [anon_sym_u8] = ACTIONS(1399), + [anon_sym_u16] = ACTIONS(1399), + [anon_sym_u32] = ACTIONS(1399), + [anon_sym_u64] = ACTIONS(1399), + [anon_sym_isize] = ACTIONS(1399), + [anon_sym_usize] = ACTIONS(1399), + [anon_sym_f32] = ACTIONS(1399), + [anon_sym_f64] = ACTIONS(1399), + [anon_sym_c_char] = ACTIONS(1399), + [anon_sym_c_schar] = ACTIONS(1399), + [anon_sym_c_uchar] = ACTIONS(1399), + [anon_sym_c_short] = ACTIONS(1399), + [anon_sym_c_ushort] = ACTIONS(1399), + [anon_sym_c_int] = ACTIONS(1399), + [anon_sym_c_uint] = ACTIONS(1399), + [anon_sym_c_long] = ACTIONS(1399), + [anon_sym_c_ulong] = ACTIONS(1399), + [anon_sym_c_longlong] = ACTIONS(1399), + [anon_sym_c_ulonglong] = ACTIONS(1399), + [anon_sym_c_float] = ACTIONS(1399), + [anon_sym_c_double] = ACTIONS(1399), + [anon_sym_c_longdouble] = ACTIONS(1399), + [anon_sym_PLUS_EQ] = ACTIONS(1397), + [anon_sym_DASH_EQ] = ACTIONS(1397), + [anon_sym_STAR_EQ] = ACTIONS(1397), + [anon_sym_SLASH_EQ] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_COLON] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1399), + [anon_sym_continue] = ACTIONS(1399), + [anon_sym_defer] = ACTIONS(1399), + [anon_sym_errdefer] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_else] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1399), + [anon_sym_for] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1399), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1397), + [anon_sym_orelse] = ACTIONS(1399), + [anon_sym_catch] = ACTIONS(1399), + [anon_sym_or] = ACTIONS(1399), + [anon_sym_and] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(1397), + [anon_sym_BANG_EQ] = ACTIONS(1397), + [anon_sym_LT] = ACTIONS(1399), + [anon_sym_LT_EQ] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1399), + [anon_sym_GT_EQ] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_try] = ACTIONS(1399), + [anon_sym_DOT] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1397), + [anon_sym_true] = ACTIONS(1399), + [anon_sym_false] = ACTIONS(1399), + [sym_none] = ACTIONS(1399), + [sym_undefined] = ACTIONS(1399), + [sym_sink] = ACTIONS(1399), + [sym_integer] = ACTIONS(1399), + [sym_float] = ACTIONS(1397), + [anon_sym_DQUOTE] = ACTIONS(1397), + [sym_multiline_string] = ACTIONS(1397), + [sym_character] = ACTIONS(1397), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1391), + [sym__newline] = ACTIONS(1397), }, [STATE(524)] = { - [ts_builtin_sym_end] = ACTIONS(1395), - [sym_identifier] = ACTIONS(1397), - [anon_sym_import] = ACTIONS(1397), - [anon_sym_func] = ACTIONS(1397), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_struct] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_RPAREN] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_COMMA] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_DOLLAR] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_QMARK] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_RBRACK] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1397), - [anon_sym_anyopaque] = ACTIONS(1397), - [anon_sym_bool] = ACTIONS(1397), - [anon_sym_int] = ACTIONS(1397), - [anon_sym_float] = ACTIONS(1397), - [anon_sym_range] = ACTIONS(1397), - [anon_sym_i8] = ACTIONS(1397), - [anon_sym_i16] = ACTIONS(1397), - [anon_sym_i32] = ACTIONS(1397), - [anon_sym_i64] = ACTIONS(1397), - [anon_sym_u8] = ACTIONS(1397), - [anon_sym_u16] = ACTIONS(1397), - [anon_sym_u32] = ACTIONS(1397), - [anon_sym_u64] = ACTIONS(1397), - [anon_sym_isize] = ACTIONS(1397), - [anon_sym_usize] = ACTIONS(1397), - [anon_sym_f32] = ACTIONS(1397), - [anon_sym_f64] = ACTIONS(1397), - [anon_sym_c_char] = ACTIONS(1397), - [anon_sym_c_schar] = ACTIONS(1397), - [anon_sym_c_uchar] = ACTIONS(1397), - [anon_sym_c_short] = ACTIONS(1397), - [anon_sym_c_ushort] = ACTIONS(1397), - [anon_sym_c_int] = ACTIONS(1397), - [anon_sym_c_uint] = ACTIONS(1397), - [anon_sym_c_long] = ACTIONS(1397), - [anon_sym_c_ulong] = ACTIONS(1397), - [anon_sym_c_longlong] = ACTIONS(1397), - [anon_sym_c_ulonglong] = ACTIONS(1397), - [anon_sym_c_float] = ACTIONS(1397), - [anon_sym_c_double] = ACTIONS(1397), - [anon_sym_c_longdouble] = ACTIONS(1397), - [anon_sym_PLUS_EQ] = ACTIONS(1395), - [anon_sym_DASH_EQ] = ACTIONS(1395), - [anon_sym_STAR_EQ] = ACTIONS(1395), - [anon_sym_SLASH_EQ] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1397), - [anon_sym_COLON] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_defer] = ACTIONS(1397), - [anon_sym_errdefer] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_else] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_match] = ACTIONS(1397), - [anon_sym_DOT_DOT] = ACTIONS(1397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1395), - [anon_sym_orelse] = ACTIONS(1397), - [anon_sym_catch] = ACTIONS(1397), - [anon_sym_or] = ACTIONS(1397), - [anon_sym_and] = ACTIONS(1397), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_try] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [sym_none] = ACTIONS(1397), - [sym_undefined] = ACTIONS(1397), - [sym_sink] = ACTIONS(1397), - [sym_integer] = ACTIONS(1397), - [sym_float] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [sym_multiline_string] = ACTIONS(1395), - [sym_character] = ACTIONS(1395), + [ts_builtin_sym_end] = ACTIONS(1401), + [sym_identifier] = ACTIONS(1403), + [anon_sym_import] = ACTIONS(1403), + [anon_sym_func] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_EQ] = ACTIONS(1403), + [anon_sym_struct] = ACTIONS(1403), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_RPAREN] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_COMMA] = ACTIONS(1401), + [anon_sym_RBRACE] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_DOLLAR] = ACTIONS(1401), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_QMARK] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1401), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_RBRACK] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1403), + [anon_sym_anyopaque] = ACTIONS(1403), + [anon_sym_bool] = ACTIONS(1403), + [anon_sym_int] = ACTIONS(1403), + [anon_sym_float] = ACTIONS(1403), + [anon_sym_range] = ACTIONS(1403), + [anon_sym_i8] = ACTIONS(1403), + [anon_sym_i16] = ACTIONS(1403), + [anon_sym_i32] = ACTIONS(1403), + [anon_sym_i64] = ACTIONS(1403), + [anon_sym_u8] = ACTIONS(1403), + [anon_sym_u16] = ACTIONS(1403), + [anon_sym_u32] = ACTIONS(1403), + [anon_sym_u64] = ACTIONS(1403), + [anon_sym_isize] = ACTIONS(1403), + [anon_sym_usize] = ACTIONS(1403), + [anon_sym_f32] = ACTIONS(1403), + [anon_sym_f64] = ACTIONS(1403), + [anon_sym_c_char] = ACTIONS(1403), + [anon_sym_c_schar] = ACTIONS(1403), + [anon_sym_c_uchar] = ACTIONS(1403), + [anon_sym_c_short] = ACTIONS(1403), + [anon_sym_c_ushort] = ACTIONS(1403), + [anon_sym_c_int] = ACTIONS(1403), + [anon_sym_c_uint] = ACTIONS(1403), + [anon_sym_c_long] = ACTIONS(1403), + [anon_sym_c_ulong] = ACTIONS(1403), + [anon_sym_c_longlong] = ACTIONS(1403), + [anon_sym_c_ulonglong] = ACTIONS(1403), + [anon_sym_c_float] = ACTIONS(1403), + [anon_sym_c_double] = ACTIONS(1403), + [anon_sym_c_longdouble] = ACTIONS(1403), + [anon_sym_PLUS_EQ] = ACTIONS(1401), + [anon_sym_DASH_EQ] = ACTIONS(1401), + [anon_sym_STAR_EQ] = ACTIONS(1401), + [anon_sym_SLASH_EQ] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1403), + [anon_sym_COLON] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1403), + [anon_sym_continue] = ACTIONS(1403), + [anon_sym_defer] = ACTIONS(1403), + [anon_sym_errdefer] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_else] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_match] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1401), + [anon_sym_orelse] = ACTIONS(1403), + [anon_sym_catch] = ACTIONS(1403), + [anon_sym_or] = ACTIONS(1403), + [anon_sym_and] = ACTIONS(1403), + [anon_sym_EQ_EQ] = ACTIONS(1401), + [anon_sym_BANG_EQ] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_LT_EQ] = ACTIONS(1401), + [anon_sym_GT] = ACTIONS(1403), + [anon_sym_GT_EQ] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_SLASH] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_try] = ACTIONS(1403), + [anon_sym_DOT] = ACTIONS(1403), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [sym_none] = ACTIONS(1403), + [sym_undefined] = ACTIONS(1403), + [sym_sink] = ACTIONS(1403), + [sym_integer] = ACTIONS(1403), + [sym_float] = ACTIONS(1401), + [anon_sym_DQUOTE] = ACTIONS(1401), + [sym_multiline_string] = ACTIONS(1401), + [sym_character] = ACTIONS(1401), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1395), + [sym__newline] = ACTIONS(1401), }, [STATE(525)] = { - [ts_builtin_sym_end] = ACTIONS(1399), - [sym_identifier] = ACTIONS(1401), - [anon_sym_import] = ACTIONS(1401), - [anon_sym_func] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_QMARK] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_RBRACK] = ACTIONS(1399), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_anyopaque] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_range] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_c_char] = ACTIONS(1401), - [anon_sym_c_schar] = ACTIONS(1401), - [anon_sym_c_uchar] = ACTIONS(1401), - [anon_sym_c_short] = ACTIONS(1401), - [anon_sym_c_ushort] = ACTIONS(1401), - [anon_sym_c_int] = ACTIONS(1401), - [anon_sym_c_uint] = ACTIONS(1401), - [anon_sym_c_long] = ACTIONS(1401), - [anon_sym_c_ulong] = ACTIONS(1401), - [anon_sym_c_longlong] = ACTIONS(1401), - [anon_sym_c_ulonglong] = ACTIONS(1401), - [anon_sym_c_float] = ACTIONS(1401), - [anon_sym_c_double] = ACTIONS(1401), - [anon_sym_c_longdouble] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_COLON] = ACTIONS(1399), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_errdefer] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_CARET] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [sym_none] = ACTIONS(1401), - [sym_undefined] = ACTIONS(1401), - [sym_sink] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [sym_float] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_multiline_string] = ACTIONS(1399), - [sym_character] = ACTIONS(1399), + [ts_builtin_sym_end] = ACTIONS(857), + [sym_identifier] = ACTIONS(852), + [anon_sym_import] = ACTIONS(852), + [anon_sym_func] = ACTIONS(852), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_struct] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(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(852), + [anon_sym_DOLLAR] = ACTIONS(857), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(857), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_RBRACK] = ACTIONS(857), + [anon_sym_void] = ACTIONS(852), + [anon_sym_anyopaque] = ACTIONS(852), + [anon_sym_bool] = ACTIONS(852), + [anon_sym_int] = ACTIONS(852), + [anon_sym_float] = ACTIONS(852), + [anon_sym_range] = ACTIONS(852), + [anon_sym_i8] = ACTIONS(852), + [anon_sym_i16] = ACTIONS(852), + [anon_sym_i32] = ACTIONS(852), + [anon_sym_i64] = ACTIONS(852), + [anon_sym_u8] = ACTIONS(852), + [anon_sym_u16] = ACTIONS(852), + [anon_sym_u32] = ACTIONS(852), + [anon_sym_u64] = ACTIONS(852), + [anon_sym_isize] = ACTIONS(852), + [anon_sym_usize] = ACTIONS(852), + [anon_sym_f32] = ACTIONS(852), + [anon_sym_f64] = ACTIONS(852), + [anon_sym_c_char] = ACTIONS(852), + [anon_sym_c_schar] = ACTIONS(852), + [anon_sym_c_uchar] = ACTIONS(852), + [anon_sym_c_short] = ACTIONS(852), + [anon_sym_c_ushort] = ACTIONS(852), + [anon_sym_c_int] = ACTIONS(852), + [anon_sym_c_uint] = ACTIONS(852), + [anon_sym_c_long] = ACTIONS(852), + [anon_sym_c_ulong] = ACTIONS(852), + [anon_sym_c_longlong] = ACTIONS(852), + [anon_sym_c_ulonglong] = ACTIONS(852), + [anon_sym_c_float] = ACTIONS(852), + [anon_sym_c_double] = ACTIONS(852), + [anon_sym_c_longdouble] = ACTIONS(852), + [anon_sym_PLUS_EQ] = ACTIONS(857), + [anon_sym_DASH_EQ] = ACTIONS(857), + [anon_sym_STAR_EQ] = ACTIONS(857), + [anon_sym_SLASH_EQ] = ACTIONS(857), + [anon_sym_return] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(852), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_break] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(852), + [anon_sym_defer] = ACTIONS(852), + [anon_sym_errdefer] = ACTIONS(852), + [anon_sym_if] = ACTIONS(852), + [anon_sym_else] = ACTIONS(852), + [anon_sym_while] = ACTIONS(852), + [anon_sym_for] = ACTIONS(852), + [anon_sym_match] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_try] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(852), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_true] = ACTIONS(852), + [anon_sym_false] = ACTIONS(852), + [sym_none] = ACTIONS(852), + [sym_undefined] = ACTIONS(852), + [sym_sink] = ACTIONS(852), + [sym_integer] = ACTIONS(852), + [sym_float] = ACTIONS(857), + [anon_sym_DQUOTE] = ACTIONS(857), + [sym_multiline_string] = ACTIONS(857), + [sym_character] = ACTIONS(857), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1399), + [sym__newline] = ACTIONS(857), }, [STATE(526)] = { - [ts_builtin_sym_end] = ACTIONS(1403), - [sym_identifier] = ACTIONS(1405), - [anon_sym_import] = ACTIONS(1405), - [anon_sym_func] = ACTIONS(1405), - [anon_sym_BANG] = ACTIONS(1405), - [anon_sym_EQ] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_RPAREN] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_COMMA] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1403), - [anon_sym_RBRACK] = ACTIONS(1403), - [anon_sym_void] = ACTIONS(1405), - [anon_sym_anyopaque] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_int] = ACTIONS(1405), - [anon_sym_float] = ACTIONS(1405), - [anon_sym_range] = ACTIONS(1405), - [anon_sym_i8] = ACTIONS(1405), - [anon_sym_i16] = ACTIONS(1405), - [anon_sym_i32] = ACTIONS(1405), - [anon_sym_i64] = ACTIONS(1405), - [anon_sym_u8] = ACTIONS(1405), - [anon_sym_u16] = ACTIONS(1405), - [anon_sym_u32] = ACTIONS(1405), - [anon_sym_u64] = ACTIONS(1405), - [anon_sym_isize] = ACTIONS(1405), - [anon_sym_usize] = ACTIONS(1405), - [anon_sym_f32] = ACTIONS(1405), - [anon_sym_f64] = ACTIONS(1405), - [anon_sym_c_char] = ACTIONS(1405), - [anon_sym_c_schar] = ACTIONS(1405), - [anon_sym_c_uchar] = ACTIONS(1405), - [anon_sym_c_short] = ACTIONS(1405), - [anon_sym_c_ushort] = ACTIONS(1405), - [anon_sym_c_int] = ACTIONS(1405), - [anon_sym_c_uint] = ACTIONS(1405), - [anon_sym_c_long] = ACTIONS(1405), - [anon_sym_c_ulong] = ACTIONS(1405), - [anon_sym_c_longlong] = ACTIONS(1405), - [anon_sym_c_ulonglong] = ACTIONS(1405), - [anon_sym_c_float] = ACTIONS(1405), - [anon_sym_c_double] = ACTIONS(1405), - [anon_sym_c_longdouble] = ACTIONS(1405), - [anon_sym_PLUS_EQ] = ACTIONS(1403), - [anon_sym_DASH_EQ] = ACTIONS(1403), - [anon_sym_STAR_EQ] = ACTIONS(1403), - [anon_sym_SLASH_EQ] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_yield] = ACTIONS(1405), - [anon_sym_COLON] = ACTIONS(1403), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_defer] = ACTIONS(1405), - [anon_sym_errdefer] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_match] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1403), - [anon_sym_orelse] = ACTIONS(1405), - [anon_sym_catch] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_try] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1405), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [sym_none] = ACTIONS(1405), - [sym_undefined] = ACTIONS(1405), - [sym_sink] = ACTIONS(1405), - [sym_integer] = ACTIONS(1405), - [sym_float] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym_multiline_string] = ACTIONS(1403), - [sym_character] = ACTIONS(1403), + [ts_builtin_sym_end] = ACTIONS(1405), + [sym_identifier] = ACTIONS(1407), + [anon_sym_import] = ACTIONS(1407), + [anon_sym_func] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_EQ] = ACTIONS(1407), + [anon_sym_struct] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1405), + [anon_sym_RPAREN] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_COMMA] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_DOLLAR] = ACTIONS(1405), + [anon_sym_PIPE] = ACTIONS(1405), + [anon_sym_QMARK] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1405), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_RBRACK] = ACTIONS(1405), + [anon_sym_void] = ACTIONS(1407), + [anon_sym_anyopaque] = ACTIONS(1407), + [anon_sym_bool] = ACTIONS(1407), + [anon_sym_int] = ACTIONS(1407), + [anon_sym_float] = ACTIONS(1407), + [anon_sym_range] = ACTIONS(1407), + [anon_sym_i8] = ACTIONS(1407), + [anon_sym_i16] = ACTIONS(1407), + [anon_sym_i32] = ACTIONS(1407), + [anon_sym_i64] = ACTIONS(1407), + [anon_sym_u8] = ACTIONS(1407), + [anon_sym_u16] = ACTIONS(1407), + [anon_sym_u32] = ACTIONS(1407), + [anon_sym_u64] = ACTIONS(1407), + [anon_sym_isize] = ACTIONS(1407), + [anon_sym_usize] = ACTIONS(1407), + [anon_sym_f32] = ACTIONS(1407), + [anon_sym_f64] = ACTIONS(1407), + [anon_sym_c_char] = ACTIONS(1407), + [anon_sym_c_schar] = ACTIONS(1407), + [anon_sym_c_uchar] = ACTIONS(1407), + [anon_sym_c_short] = ACTIONS(1407), + [anon_sym_c_ushort] = ACTIONS(1407), + [anon_sym_c_int] = ACTIONS(1407), + [anon_sym_c_uint] = ACTIONS(1407), + [anon_sym_c_long] = ACTIONS(1407), + [anon_sym_c_ulong] = ACTIONS(1407), + [anon_sym_c_longlong] = ACTIONS(1407), + [anon_sym_c_ulonglong] = ACTIONS(1407), + [anon_sym_c_float] = ACTIONS(1407), + [anon_sym_c_double] = ACTIONS(1407), + [anon_sym_c_longdouble] = ACTIONS(1407), + [anon_sym_PLUS_EQ] = ACTIONS(1405), + [anon_sym_DASH_EQ] = ACTIONS(1405), + [anon_sym_STAR_EQ] = ACTIONS(1405), + [anon_sym_SLASH_EQ] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1407), + [anon_sym_COLON] = ACTIONS(1405), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_defer] = ACTIONS(1407), + [anon_sym_errdefer] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_else] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_match] = ACTIONS(1407), + [anon_sym_DOT_DOT] = ACTIONS(1407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1405), + [anon_sym_orelse] = ACTIONS(1407), + [anon_sym_catch] = ACTIONS(1407), + [anon_sym_or] = ACTIONS(1407), + [anon_sym_and] = ACTIONS(1407), + [anon_sym_EQ_EQ] = ACTIONS(1405), + [anon_sym_BANG_EQ] = ACTIONS(1405), + [anon_sym_LT] = ACTIONS(1407), + [anon_sym_LT_EQ] = ACTIONS(1405), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_GT_EQ] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_try] = ACTIONS(1407), + [anon_sym_DOT] = ACTIONS(1407), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [sym_none] = ACTIONS(1407), + [sym_undefined] = ACTIONS(1407), + [sym_sink] = ACTIONS(1407), + [sym_integer] = ACTIONS(1407), + [sym_float] = ACTIONS(1405), + [anon_sym_DQUOTE] = ACTIONS(1405), + [sym_multiline_string] = ACTIONS(1405), + [sym_character] = ACTIONS(1405), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1403), + [sym__newline] = ACTIONS(1405), }, [STATE(527)] = { - [ts_builtin_sym_end] = ACTIONS(1407), - [sym_identifier] = ACTIONS(1409), - [anon_sym_import] = ACTIONS(1409), - [anon_sym_func] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_EQ] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1407), - [anon_sym_RPAREN] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_DOLLAR] = ACTIONS(1407), - [anon_sym_PIPE] = ACTIONS(1407), - [anon_sym_QMARK] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_LBRACK] = ACTIONS(1407), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_RBRACK] = ACTIONS(1407), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_anyopaque] = ACTIONS(1409), - [anon_sym_bool] = ACTIONS(1409), - [anon_sym_int] = ACTIONS(1409), - [anon_sym_float] = ACTIONS(1409), - [anon_sym_range] = ACTIONS(1409), - [anon_sym_i8] = ACTIONS(1409), - [anon_sym_i16] = ACTIONS(1409), - [anon_sym_i32] = ACTIONS(1409), - [anon_sym_i64] = ACTIONS(1409), - [anon_sym_u8] = ACTIONS(1409), - [anon_sym_u16] = ACTIONS(1409), - [anon_sym_u32] = ACTIONS(1409), - [anon_sym_u64] = ACTIONS(1409), - [anon_sym_isize] = ACTIONS(1409), - [anon_sym_usize] = ACTIONS(1409), - [anon_sym_f32] = ACTIONS(1409), - [anon_sym_f64] = ACTIONS(1409), - [anon_sym_c_char] = ACTIONS(1409), - [anon_sym_c_schar] = ACTIONS(1409), - [anon_sym_c_uchar] = ACTIONS(1409), - [anon_sym_c_short] = ACTIONS(1409), - [anon_sym_c_ushort] = ACTIONS(1409), - [anon_sym_c_int] = ACTIONS(1409), - [anon_sym_c_uint] = ACTIONS(1409), - [anon_sym_c_long] = ACTIONS(1409), - [anon_sym_c_ulong] = ACTIONS(1409), - [anon_sym_c_longlong] = ACTIONS(1409), - [anon_sym_c_ulonglong] = ACTIONS(1409), - [anon_sym_c_float] = ACTIONS(1409), - [anon_sym_c_double] = ACTIONS(1409), - [anon_sym_c_longdouble] = ACTIONS(1409), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_yield] = ACTIONS(1409), - [anon_sym_COLON] = ACTIONS(1407), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_defer] = ACTIONS(1409), - [anon_sym_errdefer] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_else] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_match] = ACTIONS(1409), - [anon_sym_DOT_DOT] = ACTIONS(1409), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1407), - [anon_sym_orelse] = ACTIONS(1409), - [anon_sym_catch] = ACTIONS(1409), - [anon_sym_or] = ACTIONS(1409), - [anon_sym_and] = ACTIONS(1409), - [anon_sym_EQ_EQ] = ACTIONS(1407), - [anon_sym_BANG_EQ] = ACTIONS(1407), - [anon_sym_LT] = ACTIONS(1409), - [anon_sym_LT_EQ] = ACTIONS(1407), - [anon_sym_GT] = ACTIONS(1409), - [anon_sym_GT_EQ] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(1409), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [sym_none] = ACTIONS(1409), - [sym_undefined] = ACTIONS(1409), - [sym_sink] = ACTIONS(1409), - [sym_integer] = ACTIONS(1409), - [sym_float] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [sym_multiline_string] = ACTIONS(1407), - [sym_character] = ACTIONS(1407), + [ts_builtin_sym_end] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(1411), + [anon_sym_func] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_EQ] = ACTIONS(1411), + [anon_sym_struct] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(1409), + [anon_sym_RPAREN] = ACTIONS(1409), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_COMMA] = ACTIONS(1409), + [anon_sym_RBRACE] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(1409), + [anon_sym_PIPE] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_anyopaque] = ACTIONS(1411), + [anon_sym_bool] = ACTIONS(1411), + [anon_sym_int] = ACTIONS(1411), + [anon_sym_float] = ACTIONS(1411), + [anon_sym_range] = ACTIONS(1411), + [anon_sym_i8] = ACTIONS(1411), + [anon_sym_i16] = ACTIONS(1411), + [anon_sym_i32] = ACTIONS(1411), + [anon_sym_i64] = ACTIONS(1411), + [anon_sym_u8] = ACTIONS(1411), + [anon_sym_u16] = ACTIONS(1411), + [anon_sym_u32] = ACTIONS(1411), + [anon_sym_u64] = ACTIONS(1411), + [anon_sym_isize] = ACTIONS(1411), + [anon_sym_usize] = ACTIONS(1411), + [anon_sym_f32] = ACTIONS(1411), + [anon_sym_f64] = ACTIONS(1411), + [anon_sym_c_char] = ACTIONS(1411), + [anon_sym_c_schar] = ACTIONS(1411), + [anon_sym_c_uchar] = ACTIONS(1411), + [anon_sym_c_short] = ACTIONS(1411), + [anon_sym_c_ushort] = ACTIONS(1411), + [anon_sym_c_int] = ACTIONS(1411), + [anon_sym_c_uint] = ACTIONS(1411), + [anon_sym_c_long] = ACTIONS(1411), + [anon_sym_c_ulong] = ACTIONS(1411), + [anon_sym_c_longlong] = ACTIONS(1411), + [anon_sym_c_ulonglong] = ACTIONS(1411), + [anon_sym_c_float] = ACTIONS(1411), + [anon_sym_c_double] = ACTIONS(1411), + [anon_sym_c_longdouble] = ACTIONS(1411), + [anon_sym_PLUS_EQ] = ACTIONS(1409), + [anon_sym_DASH_EQ] = ACTIONS(1409), + [anon_sym_STAR_EQ] = ACTIONS(1409), + [anon_sym_SLASH_EQ] = ACTIONS(1409), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1411), + [anon_sym_COLON] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_defer] = ACTIONS(1411), + [anon_sym_errdefer] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_else] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_match] = ACTIONS(1411), + [anon_sym_DOT_DOT] = ACTIONS(1411), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1409), + [anon_sym_orelse] = ACTIONS(1411), + [anon_sym_catch] = ACTIONS(1411), + [anon_sym_or] = ACTIONS(1411), + [anon_sym_and] = ACTIONS(1411), + [anon_sym_EQ_EQ] = ACTIONS(1409), + [anon_sym_BANG_EQ] = ACTIONS(1409), + [anon_sym_LT] = ACTIONS(1411), + [anon_sym_LT_EQ] = ACTIONS(1409), + [anon_sym_GT] = ACTIONS(1411), + [anon_sym_GT_EQ] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_try] = ACTIONS(1411), + [anon_sym_DOT] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1409), + [anon_sym_true] = ACTIONS(1411), + [anon_sym_false] = ACTIONS(1411), + [sym_none] = ACTIONS(1411), + [sym_undefined] = ACTIONS(1411), + [sym_sink] = ACTIONS(1411), + [sym_integer] = ACTIONS(1411), + [sym_float] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [sym_multiline_string] = ACTIONS(1409), + [sym_character] = ACTIONS(1409), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1407), + [sym__newline] = ACTIONS(1409), }, [STATE(528)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1062), - [sym_labeled_block] = STATE(1062), - [sym_if_statement] = STATE(1062), - [sym_while_statement] = STATE(1062), - [sym_for_statement] = STATE(1062), - [sym_match_statement] = STATE(1062), - [sym__value] = STATE(1062), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), + [ts_builtin_sym_end] = ACTIONS(1413), + [sym_identifier] = ACTIONS(1415), + [anon_sym_import] = ACTIONS(1415), + [anon_sym_func] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_EQ] = ACTIONS(1415), + [anon_sym_struct] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_RPAREN] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_COMMA] = ACTIONS(1413), [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_DOLLAR] = ACTIONS(1413), + [anon_sym_PIPE] = ACTIONS(1413), + [anon_sym_QMARK] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1413), + [anon_sym_RBRACK] = ACTIONS(1413), + [anon_sym_void] = ACTIONS(1415), + [anon_sym_anyopaque] = ACTIONS(1415), + [anon_sym_bool] = ACTIONS(1415), + [anon_sym_int] = ACTIONS(1415), + [anon_sym_float] = ACTIONS(1415), + [anon_sym_range] = ACTIONS(1415), + [anon_sym_i8] = ACTIONS(1415), + [anon_sym_i16] = ACTIONS(1415), + [anon_sym_i32] = ACTIONS(1415), + [anon_sym_i64] = ACTIONS(1415), + [anon_sym_u8] = ACTIONS(1415), + [anon_sym_u16] = ACTIONS(1415), + [anon_sym_u32] = ACTIONS(1415), + [anon_sym_u64] = ACTIONS(1415), + [anon_sym_isize] = ACTIONS(1415), + [anon_sym_usize] = ACTIONS(1415), + [anon_sym_f32] = ACTIONS(1415), + [anon_sym_f64] = ACTIONS(1415), + [anon_sym_c_char] = ACTIONS(1415), + [anon_sym_c_schar] = ACTIONS(1415), + [anon_sym_c_uchar] = ACTIONS(1415), + [anon_sym_c_short] = ACTIONS(1415), + [anon_sym_c_ushort] = ACTIONS(1415), + [anon_sym_c_int] = ACTIONS(1415), + [anon_sym_c_uint] = ACTIONS(1415), + [anon_sym_c_long] = ACTIONS(1415), + [anon_sym_c_ulong] = ACTIONS(1415), + [anon_sym_c_longlong] = ACTIONS(1415), + [anon_sym_c_ulonglong] = ACTIONS(1415), + [anon_sym_c_float] = ACTIONS(1415), + [anon_sym_c_double] = ACTIONS(1415), + [anon_sym_c_longdouble] = ACTIONS(1415), + [anon_sym_PLUS_EQ] = ACTIONS(1413), + [anon_sym_DASH_EQ] = ACTIONS(1413), + [anon_sym_STAR_EQ] = ACTIONS(1413), + [anon_sym_SLASH_EQ] = ACTIONS(1413), [anon_sym_return] = ACTIONS(1415), [anon_sym_yield] = ACTIONS(1415), + [anon_sym_COLON] = ACTIONS(1413), [anon_sym_break] = ACTIONS(1415), [anon_sym_continue] = ACTIONS(1415), [anon_sym_defer] = ACTIONS(1415), [anon_sym_errdefer] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(113), + [anon_sym_if] = ACTIONS(1415), [anon_sym_else] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [anon_sym_while] = ACTIONS(1415), + [anon_sym_for] = ACTIONS(1415), + [anon_sym_match] = ACTIONS(1415), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1413), + [anon_sym_orelse] = ACTIONS(1415), + [anon_sym_catch] = ACTIONS(1415), + [anon_sym_or] = ACTIONS(1415), + [anon_sym_and] = ACTIONS(1415), + [anon_sym_EQ_EQ] = ACTIONS(1413), + [anon_sym_BANG_EQ] = ACTIONS(1413), + [anon_sym_LT] = ACTIONS(1415), + [anon_sym_LT_EQ] = ACTIONS(1413), + [anon_sym_GT] = ACTIONS(1415), + [anon_sym_GT_EQ] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_SLASH] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_try] = ACTIONS(1415), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [sym_none] = ACTIONS(1415), + [sym_undefined] = ACTIONS(1415), + [sym_sink] = ACTIONS(1415), + [sym_integer] = ACTIONS(1415), + [sym_float] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1413), + [sym_multiline_string] = ACTIONS(1413), + [sym_character] = ACTIONS(1413), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1413), }, [STATE(529)] = { - [sym_variant_payload] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(1417), - [sym_identifier] = ACTIONS(1419), - [anon_sym_import] = ACTIONS(1419), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_EQ] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1417), - [anon_sym_RPAREN] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1421), - [anon_sym_RBRACE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_DOLLAR] = ACTIONS(1417), - [anon_sym_PIPE] = ACTIONS(1417), - [anon_sym_QMARK] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_void] = ACTIONS(1419), - [anon_sym_anyopaque] = ACTIONS(1419), - [anon_sym_bool] = ACTIONS(1419), - [anon_sym_int] = ACTIONS(1419), - [anon_sym_float] = ACTIONS(1419), - [anon_sym_range] = ACTIONS(1419), - [anon_sym_i8] = ACTIONS(1419), - [anon_sym_i16] = ACTIONS(1419), - [anon_sym_i32] = ACTIONS(1419), - [anon_sym_i64] = ACTIONS(1419), - [anon_sym_u8] = ACTIONS(1419), - [anon_sym_u16] = ACTIONS(1419), - [anon_sym_u32] = ACTIONS(1419), - [anon_sym_u64] = ACTIONS(1419), - [anon_sym_isize] = ACTIONS(1419), - [anon_sym_usize] = ACTIONS(1419), - [anon_sym_f32] = ACTIONS(1419), - [anon_sym_f64] = ACTIONS(1419), - [anon_sym_c_char] = ACTIONS(1419), - [anon_sym_c_schar] = ACTIONS(1419), - [anon_sym_c_uchar] = ACTIONS(1419), - [anon_sym_c_short] = ACTIONS(1419), - [anon_sym_c_ushort] = ACTIONS(1419), - [anon_sym_c_int] = ACTIONS(1419), - [anon_sym_c_uint] = ACTIONS(1419), - [anon_sym_c_long] = ACTIONS(1419), - [anon_sym_c_ulong] = ACTIONS(1419), - [anon_sym_c_longlong] = ACTIONS(1419), - [anon_sym_c_ulonglong] = ACTIONS(1419), - [anon_sym_c_float] = ACTIONS(1419), - [anon_sym_c_double] = ACTIONS(1419), - [anon_sym_c_longdouble] = ACTIONS(1419), - [anon_sym_PLUS_EQ] = ACTIONS(1417), - [anon_sym_DASH_EQ] = ACTIONS(1417), - [anon_sym_STAR_EQ] = ACTIONS(1417), - [anon_sym_SLASH_EQ] = ACTIONS(1417), - [anon_sym_return] = ACTIONS(1419), - [anon_sym_yield] = ACTIONS(1419), - [anon_sym_COLON] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1419), - [anon_sym_continue] = ACTIONS(1419), - [anon_sym_defer] = ACTIONS(1419), - [anon_sym_errdefer] = ACTIONS(1419), - [anon_sym_if] = ACTIONS(1419), - [anon_sym_else] = ACTIONS(1419), - [anon_sym_while] = ACTIONS(1419), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_match] = ACTIONS(1419), - [anon_sym_DOT_DOT] = ACTIONS(1419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1417), - [anon_sym_orelse] = ACTIONS(1419), - [anon_sym_catch] = ACTIONS(1419), - [anon_sym_or] = ACTIONS(1419), - [anon_sym_and] = ACTIONS(1419), - [anon_sym_EQ_EQ] = ACTIONS(1417), - [anon_sym_BANG_EQ] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_LT_EQ] = ACTIONS(1417), - [anon_sym_GT] = ACTIONS(1419), - [anon_sym_GT_EQ] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_SLASH] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1417), - [anon_sym_try] = ACTIONS(1419), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_true] = ACTIONS(1419), - [anon_sym_false] = ACTIONS(1419), - [sym_none] = ACTIONS(1419), - [sym_undefined] = ACTIONS(1419), - [sym_sink] = ACTIONS(1419), - [sym_integer] = ACTIONS(1419), - [sym_float] = ACTIONS(1417), - [anon_sym_DQUOTE] = ACTIONS(1417), - [sym_multiline_string] = ACTIONS(1417), - [sym_character] = ACTIONS(1417), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1147), + [sym_labeled_block] = STATE(1147), + [sym_if_statement] = STATE(1147), + [sym_while_statement] = STATE(1147), + [sym_for_statement] = STATE(1147), + [sym_match_statement] = STATE(1147), + [sym__value] = STATE(1147), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_yield] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_defer] = ACTIONS(1421), + [anon_sym_errdefer] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1417), + [sym__newline] = ACTIONS(1419), }, [STATE(530)] = { - [sym_argument_list] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(941), - [sym_identifier] = ACTIONS(943), - [anon_sym_import] = ACTIONS(943), - [anon_sym_func] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(943), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_PIPE] = ACTIONS(941), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(943), - [anon_sym_anyopaque] = ACTIONS(943), - [anon_sym_bool] = ACTIONS(943), - [anon_sym_int] = ACTIONS(943), - [anon_sym_float] = ACTIONS(943), - [anon_sym_range] = ACTIONS(943), - [anon_sym_i8] = ACTIONS(943), - [anon_sym_i16] = ACTIONS(943), - [anon_sym_i32] = ACTIONS(943), - [anon_sym_i64] = ACTIONS(943), - [anon_sym_u8] = ACTIONS(943), - [anon_sym_u16] = ACTIONS(943), - [anon_sym_u32] = ACTIONS(943), - [anon_sym_u64] = ACTIONS(943), - [anon_sym_isize] = ACTIONS(943), - [anon_sym_usize] = ACTIONS(943), - [anon_sym_f32] = ACTIONS(943), - [anon_sym_f64] = ACTIONS(943), - [anon_sym_c_char] = ACTIONS(943), - [anon_sym_c_schar] = ACTIONS(943), - [anon_sym_c_uchar] = ACTIONS(943), - [anon_sym_c_short] = ACTIONS(943), - [anon_sym_c_ushort] = ACTIONS(943), - [anon_sym_c_int] = ACTIONS(943), - [anon_sym_c_uint] = ACTIONS(943), - [anon_sym_c_long] = ACTIONS(943), - [anon_sym_c_ulong] = ACTIONS(943), - [anon_sym_c_longlong] = ACTIONS(943), - [anon_sym_c_ulonglong] = ACTIONS(943), - [anon_sym_c_float] = ACTIONS(943), - [anon_sym_c_double] = ACTIONS(943), - [anon_sym_c_longdouble] = ACTIONS(943), - [anon_sym_PLUS_EQ] = ACTIONS(941), - [anon_sym_DASH_EQ] = ACTIONS(941), - [anon_sym_STAR_EQ] = ACTIONS(941), - [anon_sym_SLASH_EQ] = ACTIONS(941), - [anon_sym_return] = ACTIONS(943), - [anon_sym_yield] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_defer] = ACTIONS(943), - [anon_sym_errdefer] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_else] = ACTIONS(943), - [anon_sym_while] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(941), - [anon_sym_orelse] = ACTIONS(943), - [anon_sym_catch] = ACTIONS(943), - [anon_sym_or] = ACTIONS(943), - [anon_sym_and] = ACTIONS(943), - [anon_sym_EQ_EQ] = ACTIONS(941), - [anon_sym_BANG_EQ] = ACTIONS(941), - [anon_sym_LT] = ACTIONS(943), - [anon_sym_LT_EQ] = ACTIONS(941), - [anon_sym_GT] = ACTIONS(943), - [anon_sym_GT_EQ] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_try] = ACTIONS(943), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [sym_none] = ACTIONS(943), - [sym_undefined] = ACTIONS(943), - [sym_sink] = ACTIONS(943), - [sym_integer] = ACTIONS(943), - [sym_float] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_multiline_string] = ACTIONS(941), - [sym_character] = ACTIONS(941), + [sym_variant_payload] = STATE(468), + [ts_builtin_sym_end] = ACTIONS(1423), + [sym_identifier] = ACTIONS(1425), + [anon_sym_import] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(1425), + [anon_sym_BANG] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_struct] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_RPAREN] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_DOLLAR] = ACTIONS(1423), + [anon_sym_PIPE] = ACTIONS(1423), + [anon_sym_QMARK] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_void] = ACTIONS(1425), + [anon_sym_anyopaque] = ACTIONS(1425), + [anon_sym_bool] = ACTIONS(1425), + [anon_sym_int] = ACTIONS(1425), + [anon_sym_float] = ACTIONS(1425), + [anon_sym_range] = ACTIONS(1425), + [anon_sym_i8] = ACTIONS(1425), + [anon_sym_i16] = ACTIONS(1425), + [anon_sym_i32] = ACTIONS(1425), + [anon_sym_i64] = ACTIONS(1425), + [anon_sym_u8] = ACTIONS(1425), + [anon_sym_u16] = ACTIONS(1425), + [anon_sym_u32] = ACTIONS(1425), + [anon_sym_u64] = ACTIONS(1425), + [anon_sym_isize] = ACTIONS(1425), + [anon_sym_usize] = ACTIONS(1425), + [anon_sym_f32] = ACTIONS(1425), + [anon_sym_f64] = ACTIONS(1425), + [anon_sym_c_char] = ACTIONS(1425), + [anon_sym_c_schar] = ACTIONS(1425), + [anon_sym_c_uchar] = ACTIONS(1425), + [anon_sym_c_short] = ACTIONS(1425), + [anon_sym_c_ushort] = ACTIONS(1425), + [anon_sym_c_int] = ACTIONS(1425), + [anon_sym_c_uint] = ACTIONS(1425), + [anon_sym_c_long] = ACTIONS(1425), + [anon_sym_c_ulong] = ACTIONS(1425), + [anon_sym_c_longlong] = ACTIONS(1425), + [anon_sym_c_ulonglong] = ACTIONS(1425), + [anon_sym_c_float] = ACTIONS(1425), + [anon_sym_c_double] = ACTIONS(1425), + [anon_sym_c_longdouble] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1423), + [anon_sym_DASH_EQ] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1423), + [anon_sym_SLASH_EQ] = ACTIONS(1423), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_yield] = ACTIONS(1425), + [anon_sym_COLON] = ACTIONS(1423), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_defer] = ACTIONS(1425), + [anon_sym_errdefer] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_match] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1423), + [anon_sym_orelse] = ACTIONS(1425), + [anon_sym_catch] = ACTIONS(1425), + [anon_sym_or] = ACTIONS(1425), + [anon_sym_and] = ACTIONS(1425), + [anon_sym_EQ_EQ] = ACTIONS(1423), + [anon_sym_BANG_EQ] = ACTIONS(1423), + [anon_sym_LT] = ACTIONS(1425), + [anon_sym_LT_EQ] = ACTIONS(1423), + [anon_sym_GT] = ACTIONS(1425), + [anon_sym_GT_EQ] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_try] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [sym_none] = ACTIONS(1425), + [sym_undefined] = ACTIONS(1425), + [sym_sink] = ACTIONS(1425), + [sym_integer] = ACTIONS(1425), + [sym_float] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_multiline_string] = ACTIONS(1423), + [sym_character] = ACTIONS(1423), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(941), + [sym__newline] = ACTIONS(1423), }, [STATE(531)] = { - [ts_builtin_sym_end] = ACTIONS(855), - [sym_identifier] = ACTIONS(850), - [anon_sym_import] = ACTIONS(850), - [anon_sym_func] = ACTIONS(850), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_LBRACE] = ACTIONS(852), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_QMARK] = ACTIONS(855), - [anon_sym_STAR] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(855), - [anon_sym_void] = ACTIONS(850), - [anon_sym_anyopaque] = ACTIONS(850), - [anon_sym_bool] = ACTIONS(850), - [anon_sym_int] = ACTIONS(850), - [anon_sym_float] = ACTIONS(850), - [anon_sym_range] = ACTIONS(850), - [anon_sym_i8] = ACTIONS(850), - [anon_sym_i16] = ACTIONS(850), - [anon_sym_i32] = ACTIONS(850), - [anon_sym_i64] = ACTIONS(850), - [anon_sym_u8] = ACTIONS(850), - [anon_sym_u16] = ACTIONS(850), - [anon_sym_u32] = ACTIONS(850), - [anon_sym_u64] = ACTIONS(850), - [anon_sym_isize] = ACTIONS(850), - [anon_sym_usize] = ACTIONS(850), - [anon_sym_f32] = ACTIONS(850), - [anon_sym_f64] = ACTIONS(850), - [anon_sym_c_char] = ACTIONS(850), - [anon_sym_c_schar] = ACTIONS(850), - [anon_sym_c_uchar] = ACTIONS(850), - [anon_sym_c_short] = ACTIONS(850), - [anon_sym_c_ushort] = ACTIONS(850), - [anon_sym_c_int] = ACTIONS(850), - [anon_sym_c_uint] = ACTIONS(850), - [anon_sym_c_long] = ACTIONS(850), - [anon_sym_c_ulong] = ACTIONS(850), - [anon_sym_c_longlong] = ACTIONS(850), - [anon_sym_c_ulonglong] = ACTIONS(850), - [anon_sym_c_float] = ACTIONS(850), - [anon_sym_c_double] = ACTIONS(850), - [anon_sym_c_longdouble] = ACTIONS(850), - [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(850), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_defer] = ACTIONS(850), - [anon_sym_errdefer] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_else] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_match] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_AMP] = ACTIONS(855), - [anon_sym_try] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(871), - [anon_sym_CARET] = ACTIONS(855), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [sym_none] = ACTIONS(850), - [sym_undefined] = ACTIONS(850), - [sym_sink] = ACTIONS(850), - [sym_integer] = ACTIONS(850), - [sym_float] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [sym_multiline_string] = ACTIONS(855), - [sym_character] = ACTIONS(855), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1147), + [sym_labeled_block] = STATE(1147), + [sym_if_statement] = STATE(1147), + [sym_while_statement] = STATE(1147), + [sym_for_statement] = STATE(1147), + [sym_match_statement] = STATE(1147), + [sym__value] = STATE(1147), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_yield] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_defer] = ACTIONS(1421), + [anon_sym_errdefer] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), + [sym__newline] = ACTIONS(1419), }, [STATE(532)] = { - [sym_variant_payload] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(1417), - [sym_identifier] = ACTIONS(1337), - [anon_sym_import] = ACTIONS(1419), - [anon_sym_func] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_EQ] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1335), - [anon_sym_RPAREN] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_QMARK] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_void] = ACTIONS(1337), - [anon_sym_anyopaque] = ACTIONS(1337), - [anon_sym_bool] = ACTIONS(1337), - [anon_sym_int] = ACTIONS(1337), - [anon_sym_float] = ACTIONS(1337), - [anon_sym_range] = ACTIONS(1337), - [anon_sym_i8] = ACTIONS(1337), - [anon_sym_i16] = ACTIONS(1337), - [anon_sym_i32] = ACTIONS(1337), - [anon_sym_i64] = ACTIONS(1337), - [anon_sym_u8] = ACTIONS(1337), - [anon_sym_u16] = ACTIONS(1337), - [anon_sym_u32] = ACTIONS(1337), - [anon_sym_u64] = ACTIONS(1337), - [anon_sym_isize] = ACTIONS(1337), - [anon_sym_usize] = ACTIONS(1337), - [anon_sym_f32] = ACTIONS(1337), - [anon_sym_f64] = ACTIONS(1337), - [anon_sym_c_char] = ACTIONS(1337), - [anon_sym_c_schar] = ACTIONS(1337), - [anon_sym_c_uchar] = ACTIONS(1337), - [anon_sym_c_short] = ACTIONS(1337), - [anon_sym_c_ushort] = ACTIONS(1337), - [anon_sym_c_int] = ACTIONS(1337), - [anon_sym_c_uint] = ACTIONS(1337), - [anon_sym_c_long] = ACTIONS(1337), - [anon_sym_c_ulong] = ACTIONS(1337), - [anon_sym_c_longlong] = ACTIONS(1337), - [anon_sym_c_ulonglong] = ACTIONS(1337), - [anon_sym_c_float] = ACTIONS(1337), - [anon_sym_c_double] = ACTIONS(1337), - [anon_sym_c_longdouble] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(1417), - [anon_sym_DASH_EQ] = ACTIONS(1417), - [anon_sym_STAR_EQ] = ACTIONS(1417), - [anon_sym_SLASH_EQ] = ACTIONS(1417), - [anon_sym_return] = ACTIONS(1337), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_break] = ACTIONS(1337), - [anon_sym_continue] = ACTIONS(1337), - [anon_sym_defer] = ACTIONS(1337), - [anon_sym_errdefer] = ACTIONS(1337), - [anon_sym_if] = ACTIONS(1337), - [anon_sym_else] = ACTIONS(1419), - [anon_sym_while] = ACTIONS(1337), - [anon_sym_for] = ACTIONS(1337), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_DOT_DOT] = ACTIONS(1337), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1335), - [anon_sym_orelse] = ACTIONS(1337), - [anon_sym_catch] = ACTIONS(1337), - [anon_sym_or] = ACTIONS(1337), - [anon_sym_and] = ACTIONS(1337), - [anon_sym_EQ_EQ] = ACTIONS(1335), - [anon_sym_BANG_EQ] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1337), - [anon_sym_LT_EQ] = ACTIONS(1335), - [anon_sym_GT] = ACTIONS(1337), - [anon_sym_GT_EQ] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_SLASH] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_try] = ACTIONS(1337), - [anon_sym_DOT] = ACTIONS(1337), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_true] = ACTIONS(1337), - [anon_sym_false] = ACTIONS(1337), - [sym_none] = ACTIONS(1337), - [sym_undefined] = ACTIONS(1337), - [sym_sink] = ACTIONS(1337), - [sym_integer] = ACTIONS(1337), - [sym_float] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [sym_multiline_string] = ACTIONS(1335), - [sym_character] = ACTIONS(1335), + [sym_argument_list] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(927), + [sym_identifier] = ACTIONS(929), + [anon_sym_import] = ACTIONS(929), + [anon_sym_func] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_struct] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RPAREN] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(929), + [anon_sym_anyopaque] = ACTIONS(929), + [anon_sym_bool] = ACTIONS(929), + [anon_sym_int] = ACTIONS(929), + [anon_sym_float] = ACTIONS(929), + [anon_sym_range] = ACTIONS(929), + [anon_sym_i8] = ACTIONS(929), + [anon_sym_i16] = ACTIONS(929), + [anon_sym_i32] = ACTIONS(929), + [anon_sym_i64] = ACTIONS(929), + [anon_sym_u8] = ACTIONS(929), + [anon_sym_u16] = ACTIONS(929), + [anon_sym_u32] = ACTIONS(929), + [anon_sym_u64] = ACTIONS(929), + [anon_sym_isize] = ACTIONS(929), + [anon_sym_usize] = ACTIONS(929), + [anon_sym_f32] = ACTIONS(929), + [anon_sym_f64] = ACTIONS(929), + [anon_sym_c_char] = ACTIONS(929), + [anon_sym_c_schar] = ACTIONS(929), + [anon_sym_c_uchar] = ACTIONS(929), + [anon_sym_c_short] = ACTIONS(929), + [anon_sym_c_ushort] = ACTIONS(929), + [anon_sym_c_int] = ACTIONS(929), + [anon_sym_c_uint] = ACTIONS(929), + [anon_sym_c_long] = ACTIONS(929), + [anon_sym_c_ulong] = ACTIONS(929), + [anon_sym_c_longlong] = ACTIONS(929), + [anon_sym_c_ulonglong] = ACTIONS(929), + [anon_sym_c_float] = ACTIONS(929), + [anon_sym_c_double] = ACTIONS(929), + [anon_sym_c_longdouble] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(927), + [anon_sym_DASH_EQ] = ACTIONS(927), + [anon_sym_STAR_EQ] = ACTIONS(927), + [anon_sym_SLASH_EQ] = ACTIONS(927), + [anon_sym_return] = ACTIONS(929), + [anon_sym_yield] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_defer] = ACTIONS(929), + [anon_sym_errdefer] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(927), + [anon_sym_orelse] = ACTIONS(929), + [anon_sym_catch] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [sym_none] = ACTIONS(929), + [sym_undefined] = ACTIONS(929), + [sym_sink] = ACTIONS(929), + [sym_integer] = ACTIONS(929), + [sym_float] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym_multiline_string] = ACTIONS(927), + [sym_character] = ACTIONS(927), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1335), + [sym__newline] = ACTIONS(927), }, [STATE(533)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1062), - [sym_labeled_block] = STATE(1062), - [sym_if_statement] = STATE(1062), - [sym_while_statement] = STATE(1062), - [sym_for_statement] = STATE(1062), - [sym_match_statement] = STATE(1062), - [sym__value] = STATE(1062), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_return] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1415), - [anon_sym_break] = ACTIONS(1415), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_defer] = ACTIONS(1415), - [anon_sym_errdefer] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_argument_list] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(991), + [sym_identifier] = ACTIONS(993), + [anon_sym_import] = ACTIONS(993), + [anon_sym_func] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RPAREN] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(993), + [anon_sym_anyopaque] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_int] = ACTIONS(993), + [anon_sym_float] = ACTIONS(993), + [anon_sym_range] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_c_char] = ACTIONS(993), + [anon_sym_c_schar] = ACTIONS(993), + [anon_sym_c_uchar] = ACTIONS(993), + [anon_sym_c_short] = ACTIONS(993), + [anon_sym_c_ushort] = ACTIONS(993), + [anon_sym_c_int] = ACTIONS(993), + [anon_sym_c_uint] = ACTIONS(993), + [anon_sym_c_long] = ACTIONS(993), + [anon_sym_c_ulong] = ACTIONS(993), + [anon_sym_c_longlong] = ACTIONS(993), + [anon_sym_c_ulonglong] = ACTIONS(993), + [anon_sym_c_float] = ACTIONS(993), + [anon_sym_c_double] = ACTIONS(993), + [anon_sym_c_longdouble] = ACTIONS(993), + [anon_sym_PLUS_EQ] = ACTIONS(991), + [anon_sym_DASH_EQ] = ACTIONS(991), + [anon_sym_STAR_EQ] = ACTIONS(991), + [anon_sym_SLASH_EQ] = ACTIONS(991), + [anon_sym_return] = ACTIONS(993), + [anon_sym_yield] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_defer] = ACTIONS(993), + [anon_sym_errdefer] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_match] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(991), + [anon_sym_orelse] = ACTIONS(993), + [anon_sym_catch] = ACTIONS(993), + [anon_sym_or] = ACTIONS(67), + [anon_sym_and] = ACTIONS(69), + [anon_sym_EQ_EQ] = ACTIONS(71), + [anon_sym_BANG_EQ] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(71), + [anon_sym_GT] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_try] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [sym_none] = ACTIONS(993), + [sym_undefined] = ACTIONS(993), + [sym_sink] = ACTIONS(993), + [sym_integer] = ACTIONS(993), + [sym_float] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [sym_multiline_string] = ACTIONS(991), + [sym_character] = ACTIONS(991), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1413), + [sym__newline] = ACTIONS(991), }, [STATE(534)] = { - [sym_argument_list] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_identifier] = ACTIONS(1430), - [anon_sym_import] = 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(923), - [anon_sym_RPAREN] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_PIPE] = ACTIONS(1428), + [sym_argument_list] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(1434), + [sym_identifier] = ACTIONS(1436), + [anon_sym_import] = ACTIONS(1436), + [anon_sym_func] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_EQ] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RPAREN] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_DOLLAR] = ACTIONS(1434), + [anon_sym_PIPE] = ACTIONS(1434), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(1430), - [anon_sym_anyopaque] = ACTIONS(1430), - [anon_sym_bool] = ACTIONS(1430), - [anon_sym_int] = 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_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_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_STAR] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(1436), + [anon_sym_anyopaque] = ACTIONS(1436), + [anon_sym_bool] = ACTIONS(1436), + [anon_sym_int] = ACTIONS(1436), + [anon_sym_float] = ACTIONS(1436), + [anon_sym_range] = ACTIONS(1436), + [anon_sym_i8] = ACTIONS(1436), + [anon_sym_i16] = ACTIONS(1436), + [anon_sym_i32] = ACTIONS(1436), + [anon_sym_i64] = ACTIONS(1436), + [anon_sym_u8] = ACTIONS(1436), + [anon_sym_u16] = ACTIONS(1436), + [anon_sym_u32] = ACTIONS(1436), + [anon_sym_u64] = ACTIONS(1436), + [anon_sym_isize] = ACTIONS(1436), + [anon_sym_usize] = ACTIONS(1436), + [anon_sym_f32] = ACTIONS(1436), + [anon_sym_f64] = ACTIONS(1436), + [anon_sym_c_char] = ACTIONS(1436), + [anon_sym_c_schar] = ACTIONS(1436), + [anon_sym_c_uchar] = ACTIONS(1436), + [anon_sym_c_short] = ACTIONS(1436), + [anon_sym_c_ushort] = ACTIONS(1436), + [anon_sym_c_int] = ACTIONS(1436), + [anon_sym_c_uint] = ACTIONS(1436), + [anon_sym_c_long] = ACTIONS(1436), + [anon_sym_c_ulong] = ACTIONS(1436), + [anon_sym_c_longlong] = ACTIONS(1436), + [anon_sym_c_ulonglong] = ACTIONS(1436), + [anon_sym_c_float] = ACTIONS(1436), + [anon_sym_c_double] = ACTIONS(1436), + [anon_sym_c_longdouble] = ACTIONS(1436), + [anon_sym_PLUS_EQ] = ACTIONS(1434), + [anon_sym_DASH_EQ] = ACTIONS(1434), + [anon_sym_STAR_EQ] = ACTIONS(1434), + [anon_sym_SLASH_EQ] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_yield] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_defer] = ACTIONS(1436), + [anon_sym_errdefer] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_else] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_match] = ACTIONS(1436), + [anon_sym_DOT_DOT] = ACTIONS(1436), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1434), + [anon_sym_orelse] = ACTIONS(1436), + [anon_sym_catch] = ACTIONS(1436), + [anon_sym_or] = ACTIONS(1436), [anon_sym_and] = ACTIONS(69), [anon_sym_EQ_EQ] = ACTIONS(71), [anon_sym_BANG_EQ] = ACTIONS(71), @@ -65487,289 +65883,580 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(71), [anon_sym_GT] = ACTIONS(73), [anon_sym_GT_EQ] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_try] = ACTIONS(1436), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [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), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [sym_none] = ACTIONS(1436), + [sym_undefined] = ACTIONS(1436), + [sym_sink] = ACTIONS(1436), + [sym_integer] = ACTIONS(1436), + [sym_float] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_multiline_string] = ACTIONS(1434), + [sym_character] = ACTIONS(1434), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1428), + [sym__newline] = ACTIONS(1434), }, [STATE(535)] = { - [sym_argument_list] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(941), - [sym_identifier] = ACTIONS(943), - [anon_sym_import] = ACTIONS(943), - [anon_sym_func] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(943), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_PIPE] = ACTIONS(941), + [sym_argument_list] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(1434), + [sym_identifier] = ACTIONS(1436), + [anon_sym_import] = ACTIONS(1436), + [anon_sym_func] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_EQ] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RPAREN] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_DOLLAR] = ACTIONS(1434), + [anon_sym_PIPE] = ACTIONS(1434), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(943), - [anon_sym_anyopaque] = ACTIONS(943), - [anon_sym_bool] = ACTIONS(943), - [anon_sym_int] = ACTIONS(943), - [anon_sym_float] = ACTIONS(943), - [anon_sym_range] = ACTIONS(943), - [anon_sym_i8] = ACTIONS(943), - [anon_sym_i16] = ACTIONS(943), - [anon_sym_i32] = ACTIONS(943), - [anon_sym_i64] = ACTIONS(943), - [anon_sym_u8] = ACTIONS(943), - [anon_sym_u16] = ACTIONS(943), - [anon_sym_u32] = ACTIONS(943), - [anon_sym_u64] = ACTIONS(943), - [anon_sym_isize] = ACTIONS(943), - [anon_sym_usize] = ACTIONS(943), - [anon_sym_f32] = ACTIONS(943), - [anon_sym_f64] = ACTIONS(943), - [anon_sym_c_char] = ACTIONS(943), - [anon_sym_c_schar] = ACTIONS(943), - [anon_sym_c_uchar] = ACTIONS(943), - [anon_sym_c_short] = ACTIONS(943), - [anon_sym_c_ushort] = ACTIONS(943), - [anon_sym_c_int] = ACTIONS(943), - [anon_sym_c_uint] = ACTIONS(943), - [anon_sym_c_long] = ACTIONS(943), - [anon_sym_c_ulong] = ACTIONS(943), - [anon_sym_c_longlong] = ACTIONS(943), - [anon_sym_c_ulonglong] = ACTIONS(943), - [anon_sym_c_float] = ACTIONS(943), - [anon_sym_c_double] = ACTIONS(943), - [anon_sym_c_longdouble] = ACTIONS(943), - [anon_sym_PLUS_EQ] = ACTIONS(941), - [anon_sym_DASH_EQ] = ACTIONS(941), - [anon_sym_STAR_EQ] = ACTIONS(941), - [anon_sym_SLASH_EQ] = ACTIONS(941), - [anon_sym_return] = ACTIONS(943), - [anon_sym_yield] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_defer] = ACTIONS(943), - [anon_sym_errdefer] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_else] = ACTIONS(943), - [anon_sym_while] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(941), - [anon_sym_orelse] = ACTIONS(943), - [anon_sym_catch] = ACTIONS(943), - [anon_sym_or] = ACTIONS(943), - [anon_sym_and] = ACTIONS(943), - [anon_sym_EQ_EQ] = ACTIONS(941), - [anon_sym_BANG_EQ] = ACTIONS(941), - [anon_sym_LT] = ACTIONS(943), - [anon_sym_LT_EQ] = ACTIONS(941), - [anon_sym_GT] = ACTIONS(943), - [anon_sym_GT_EQ] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_try] = ACTIONS(943), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(1436), + [anon_sym_anyopaque] = ACTIONS(1436), + [anon_sym_bool] = ACTIONS(1436), + [anon_sym_int] = ACTIONS(1436), + [anon_sym_float] = ACTIONS(1436), + [anon_sym_range] = ACTIONS(1436), + [anon_sym_i8] = ACTIONS(1436), + [anon_sym_i16] = ACTIONS(1436), + [anon_sym_i32] = ACTIONS(1436), + [anon_sym_i64] = ACTIONS(1436), + [anon_sym_u8] = ACTIONS(1436), + [anon_sym_u16] = ACTIONS(1436), + [anon_sym_u32] = ACTIONS(1436), + [anon_sym_u64] = ACTIONS(1436), + [anon_sym_isize] = ACTIONS(1436), + [anon_sym_usize] = ACTIONS(1436), + [anon_sym_f32] = ACTIONS(1436), + [anon_sym_f64] = ACTIONS(1436), + [anon_sym_c_char] = ACTIONS(1436), + [anon_sym_c_schar] = ACTIONS(1436), + [anon_sym_c_uchar] = ACTIONS(1436), + [anon_sym_c_short] = ACTIONS(1436), + [anon_sym_c_ushort] = ACTIONS(1436), + [anon_sym_c_int] = ACTIONS(1436), + [anon_sym_c_uint] = ACTIONS(1436), + [anon_sym_c_long] = ACTIONS(1436), + [anon_sym_c_ulong] = ACTIONS(1436), + [anon_sym_c_longlong] = ACTIONS(1436), + [anon_sym_c_ulonglong] = ACTIONS(1436), + [anon_sym_c_float] = ACTIONS(1436), + [anon_sym_c_double] = ACTIONS(1436), + [anon_sym_c_longdouble] = ACTIONS(1436), + [anon_sym_PLUS_EQ] = ACTIONS(1434), + [anon_sym_DASH_EQ] = ACTIONS(1434), + [anon_sym_STAR_EQ] = ACTIONS(1434), + [anon_sym_SLASH_EQ] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_yield] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_defer] = ACTIONS(1436), + [anon_sym_errdefer] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_else] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_match] = ACTIONS(1436), + [anon_sym_DOT_DOT] = ACTIONS(1436), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1434), + [anon_sym_orelse] = ACTIONS(1436), + [anon_sym_catch] = ACTIONS(1436), + [anon_sym_or] = ACTIONS(1436), + [anon_sym_and] = ACTIONS(1436), + [anon_sym_EQ_EQ] = ACTIONS(71), + [anon_sym_BANG_EQ] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(71), + [anon_sym_GT] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_try] = ACTIONS(1436), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [sym_none] = ACTIONS(943), - [sym_undefined] = ACTIONS(943), - [sym_sink] = ACTIONS(943), - [sym_integer] = ACTIONS(943), - [sym_float] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_multiline_string] = ACTIONS(941), - [sym_character] = ACTIONS(941), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [sym_none] = ACTIONS(1436), + [sym_undefined] = ACTIONS(1436), + [sym_sink] = ACTIONS(1436), + [sym_integer] = ACTIONS(1436), + [sym_float] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_multiline_string] = ACTIONS(1434), + [sym_character] = ACTIONS(1434), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(941), + [sym__newline] = ACTIONS(1434), }, [STATE(536)] = { - [sym_argument_list] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(941), - [sym_identifier] = ACTIONS(943), - [anon_sym_import] = ACTIONS(943), - [anon_sym_func] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(943), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_PIPE] = ACTIONS(941), + [sym_argument_list] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(991), + [sym_identifier] = ACTIONS(993), + [anon_sym_import] = ACTIONS(993), + [anon_sym_func] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RPAREN] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(943), - [anon_sym_anyopaque] = ACTIONS(943), - [anon_sym_bool] = ACTIONS(943), - [anon_sym_int] = ACTIONS(943), - [anon_sym_float] = ACTIONS(943), - [anon_sym_range] = ACTIONS(943), - [anon_sym_i8] = ACTIONS(943), - [anon_sym_i16] = ACTIONS(943), - [anon_sym_i32] = ACTIONS(943), - [anon_sym_i64] = ACTIONS(943), - [anon_sym_u8] = ACTIONS(943), - [anon_sym_u16] = ACTIONS(943), - [anon_sym_u32] = ACTIONS(943), - [anon_sym_u64] = ACTIONS(943), - [anon_sym_isize] = ACTIONS(943), - [anon_sym_usize] = ACTIONS(943), - [anon_sym_f32] = ACTIONS(943), - [anon_sym_f64] = ACTIONS(943), - [anon_sym_c_char] = ACTIONS(943), - [anon_sym_c_schar] = ACTIONS(943), - [anon_sym_c_uchar] = ACTIONS(943), - [anon_sym_c_short] = ACTIONS(943), - [anon_sym_c_ushort] = ACTIONS(943), - [anon_sym_c_int] = ACTIONS(943), - [anon_sym_c_uint] = ACTIONS(943), - [anon_sym_c_long] = ACTIONS(943), - [anon_sym_c_ulong] = ACTIONS(943), - [anon_sym_c_longlong] = ACTIONS(943), - [anon_sym_c_ulonglong] = ACTIONS(943), - [anon_sym_c_float] = ACTIONS(943), - [anon_sym_c_double] = ACTIONS(943), - [anon_sym_c_longdouble] = ACTIONS(943), - [anon_sym_PLUS_EQ] = ACTIONS(941), - [anon_sym_DASH_EQ] = ACTIONS(941), - [anon_sym_STAR_EQ] = ACTIONS(941), - [anon_sym_SLASH_EQ] = ACTIONS(941), - [anon_sym_return] = ACTIONS(943), - [anon_sym_yield] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_defer] = ACTIONS(943), - [anon_sym_errdefer] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_else] = ACTIONS(943), - [anon_sym_while] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(941), - [anon_sym_orelse] = ACTIONS(63), - [anon_sym_catch] = ACTIONS(65), - [anon_sym_or] = ACTIONS(67), - [anon_sym_and] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(71), - [anon_sym_BANG_EQ] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(71), - [anon_sym_GT] = ACTIONS(73), - [anon_sym_GT_EQ] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_try] = ACTIONS(943), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(993), + [anon_sym_anyopaque] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_int] = ACTIONS(993), + [anon_sym_float] = ACTIONS(993), + [anon_sym_range] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_c_char] = ACTIONS(993), + [anon_sym_c_schar] = ACTIONS(993), + [anon_sym_c_uchar] = ACTIONS(993), + [anon_sym_c_short] = ACTIONS(993), + [anon_sym_c_ushort] = ACTIONS(993), + [anon_sym_c_int] = ACTIONS(993), + [anon_sym_c_uint] = ACTIONS(993), + [anon_sym_c_long] = ACTIONS(993), + [anon_sym_c_ulong] = ACTIONS(993), + [anon_sym_c_longlong] = ACTIONS(993), + [anon_sym_c_ulonglong] = ACTIONS(993), + [anon_sym_c_float] = ACTIONS(993), + [anon_sym_c_double] = ACTIONS(993), + [anon_sym_c_longdouble] = ACTIONS(993), + [anon_sym_PLUS_EQ] = ACTIONS(991), + [anon_sym_DASH_EQ] = ACTIONS(991), + [anon_sym_STAR_EQ] = ACTIONS(991), + [anon_sym_SLASH_EQ] = ACTIONS(991), + [anon_sym_return] = ACTIONS(993), + [anon_sym_yield] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_defer] = ACTIONS(993), + [anon_sym_errdefer] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_match] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(991), + [anon_sym_orelse] = ACTIONS(993), + [anon_sym_catch] = ACTIONS(993), + [anon_sym_or] = ACTIONS(993), + [anon_sym_and] = ACTIONS(993), + [anon_sym_EQ_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_LT_EQ] = ACTIONS(991), + [anon_sym_GT] = ACTIONS(993), + [anon_sym_GT_EQ] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_try] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [sym_none] = ACTIONS(943), - [sym_undefined] = ACTIONS(943), - [sym_sink] = ACTIONS(943), - [sym_integer] = ACTIONS(943), - [sym_float] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_multiline_string] = ACTIONS(941), - [sym_character] = ACTIONS(941), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [sym_none] = ACTIONS(993), + [sym_undefined] = ACTIONS(993), + [sym_sink] = ACTIONS(993), + [sym_integer] = ACTIONS(993), + [sym_float] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [sym_multiline_string] = ACTIONS(991), + [sym_character] = ACTIONS(991), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(941), + [sym__newline] = ACTIONS(991), }, [STATE(537)] = { - [sym_argument_list] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(941), - [sym_identifier] = ACTIONS(943), - [anon_sym_import] = ACTIONS(943), - [anon_sym_func] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(943), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_PIPE] = ACTIONS(941), + [sym_argument_list] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(991), + [sym_identifier] = ACTIONS(993), + [anon_sym_import] = ACTIONS(993), + [anon_sym_func] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RPAREN] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(943), - [anon_sym_anyopaque] = ACTIONS(943), - [anon_sym_bool] = ACTIONS(943), - [anon_sym_int] = ACTIONS(943), - [anon_sym_float] = ACTIONS(943), - [anon_sym_range] = ACTIONS(943), - [anon_sym_i8] = ACTIONS(943), - [anon_sym_i16] = ACTIONS(943), - [anon_sym_i32] = ACTIONS(943), - [anon_sym_i64] = ACTIONS(943), - [anon_sym_u8] = ACTIONS(943), - [anon_sym_u16] = ACTIONS(943), - [anon_sym_u32] = ACTIONS(943), - [anon_sym_u64] = ACTIONS(943), - [anon_sym_isize] = ACTIONS(943), - [anon_sym_usize] = ACTIONS(943), - [anon_sym_f32] = ACTIONS(943), - [anon_sym_f64] = ACTIONS(943), - [anon_sym_c_char] = ACTIONS(943), - [anon_sym_c_schar] = ACTIONS(943), - [anon_sym_c_uchar] = ACTIONS(943), - [anon_sym_c_short] = ACTIONS(943), - [anon_sym_c_ushort] = ACTIONS(943), - [anon_sym_c_int] = ACTIONS(943), - [anon_sym_c_uint] = ACTIONS(943), - [anon_sym_c_long] = ACTIONS(943), - [anon_sym_c_ulong] = ACTIONS(943), - [anon_sym_c_longlong] = ACTIONS(943), - [anon_sym_c_ulonglong] = ACTIONS(943), - [anon_sym_c_float] = ACTIONS(943), - [anon_sym_c_double] = ACTIONS(943), - [anon_sym_c_longdouble] = ACTIONS(943), - [anon_sym_PLUS_EQ] = ACTIONS(941), - [anon_sym_DASH_EQ] = ACTIONS(941), - [anon_sym_STAR_EQ] = ACTIONS(941), - [anon_sym_SLASH_EQ] = ACTIONS(941), - [anon_sym_return] = ACTIONS(943), - [anon_sym_yield] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_defer] = ACTIONS(943), - [anon_sym_errdefer] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_else] = ACTIONS(943), - [anon_sym_while] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(941), - [anon_sym_orelse] = ACTIONS(943), - [anon_sym_catch] = ACTIONS(943), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(993), + [anon_sym_anyopaque] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_int] = ACTIONS(993), + [anon_sym_float] = ACTIONS(993), + [anon_sym_range] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_c_char] = ACTIONS(993), + [anon_sym_c_schar] = ACTIONS(993), + [anon_sym_c_uchar] = ACTIONS(993), + [anon_sym_c_short] = ACTIONS(993), + [anon_sym_c_ushort] = ACTIONS(993), + [anon_sym_c_int] = ACTIONS(993), + [anon_sym_c_uint] = ACTIONS(993), + [anon_sym_c_long] = ACTIONS(993), + [anon_sym_c_ulong] = ACTIONS(993), + [anon_sym_c_longlong] = ACTIONS(993), + [anon_sym_c_ulonglong] = ACTIONS(993), + [anon_sym_c_float] = ACTIONS(993), + [anon_sym_c_double] = ACTIONS(993), + [anon_sym_c_longdouble] = ACTIONS(993), + [anon_sym_PLUS_EQ] = ACTIONS(991), + [anon_sym_DASH_EQ] = ACTIONS(991), + [anon_sym_STAR_EQ] = ACTIONS(991), + [anon_sym_SLASH_EQ] = ACTIONS(991), + [anon_sym_return] = ACTIONS(993), + [anon_sym_yield] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_defer] = ACTIONS(993), + [anon_sym_errdefer] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_match] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(991), + [anon_sym_orelse] = ACTIONS(993), + [anon_sym_catch] = ACTIONS(993), + [anon_sym_or] = ACTIONS(993), + [anon_sym_and] = ACTIONS(993), + [anon_sym_EQ_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_LT_EQ] = ACTIONS(991), + [anon_sym_GT] = ACTIONS(993), + [anon_sym_GT_EQ] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_try] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [sym_none] = ACTIONS(993), + [sym_undefined] = ACTIONS(993), + [sym_sink] = ACTIONS(993), + [sym_integer] = ACTIONS(993), + [sym_float] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [sym_multiline_string] = ACTIONS(991), + [sym_character] = ACTIONS(991), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(991), + }, + [STATE(538)] = { + [sym_variant_payload] = STATE(468), + [ts_builtin_sym_end] = ACTIONS(1423), + [sym_identifier] = ACTIONS(1175), + [anon_sym_import] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_struct] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_RPAREN] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1173), + [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_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(1423), + [anon_sym_DASH_EQ] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1423), + [anon_sym_SLASH_EQ] = ACTIONS(1423), + [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(1425), + [anon_sym_while] = 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_PLUS] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_AMP] = 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(539)] = { + [sym_argument_list] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(927), + [sym_identifier] = ACTIONS(929), + [anon_sym_import] = ACTIONS(929), + [anon_sym_func] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_struct] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RPAREN] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(929), + [anon_sym_anyopaque] = ACTIONS(929), + [anon_sym_bool] = ACTIONS(929), + [anon_sym_int] = ACTIONS(929), + [anon_sym_float] = ACTIONS(929), + [anon_sym_range] = ACTIONS(929), + [anon_sym_i8] = ACTIONS(929), + [anon_sym_i16] = ACTIONS(929), + [anon_sym_i32] = ACTIONS(929), + [anon_sym_i64] = ACTIONS(929), + [anon_sym_u8] = ACTIONS(929), + [anon_sym_u16] = ACTIONS(929), + [anon_sym_u32] = ACTIONS(929), + [anon_sym_u64] = ACTIONS(929), + [anon_sym_isize] = ACTIONS(929), + [anon_sym_usize] = ACTIONS(929), + [anon_sym_f32] = ACTIONS(929), + [anon_sym_f64] = ACTIONS(929), + [anon_sym_c_char] = ACTIONS(929), + [anon_sym_c_schar] = ACTIONS(929), + [anon_sym_c_uchar] = ACTIONS(929), + [anon_sym_c_short] = ACTIONS(929), + [anon_sym_c_ushort] = ACTIONS(929), + [anon_sym_c_int] = ACTIONS(929), + [anon_sym_c_uint] = ACTIONS(929), + [anon_sym_c_long] = ACTIONS(929), + [anon_sym_c_ulong] = ACTIONS(929), + [anon_sym_c_longlong] = ACTIONS(929), + [anon_sym_c_ulonglong] = ACTIONS(929), + [anon_sym_c_float] = ACTIONS(929), + [anon_sym_c_double] = ACTIONS(929), + [anon_sym_c_longdouble] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(927), + [anon_sym_DASH_EQ] = ACTIONS(927), + [anon_sym_STAR_EQ] = ACTIONS(927), + [anon_sym_SLASH_EQ] = ACTIONS(927), + [anon_sym_return] = ACTIONS(929), + [anon_sym_yield] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_defer] = ACTIONS(929), + [anon_sym_errdefer] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(927), + [anon_sym_orelse] = ACTIONS(929), + [anon_sym_catch] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [sym_none] = ACTIONS(929), + [sym_undefined] = ACTIONS(929), + [sym_sink] = ACTIONS(929), + [sym_integer] = ACTIONS(929), + [sym_float] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym_multiline_string] = ACTIONS(927), + [sym_character] = ACTIONS(927), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(927), + }, + [STATE(540)] = { + [sym_argument_list] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(927), + [sym_identifier] = ACTIONS(929), + [anon_sym_import] = ACTIONS(929), + [anon_sym_func] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_struct] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RPAREN] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(929), + [anon_sym_anyopaque] = ACTIONS(929), + [anon_sym_bool] = ACTIONS(929), + [anon_sym_int] = ACTIONS(929), + [anon_sym_float] = ACTIONS(929), + [anon_sym_range] = ACTIONS(929), + [anon_sym_i8] = ACTIONS(929), + [anon_sym_i16] = ACTIONS(929), + [anon_sym_i32] = ACTIONS(929), + [anon_sym_i64] = ACTIONS(929), + [anon_sym_u8] = ACTIONS(929), + [anon_sym_u16] = ACTIONS(929), + [anon_sym_u32] = ACTIONS(929), + [anon_sym_u64] = ACTIONS(929), + [anon_sym_isize] = ACTIONS(929), + [anon_sym_usize] = ACTIONS(929), + [anon_sym_f32] = ACTIONS(929), + [anon_sym_f64] = ACTIONS(929), + [anon_sym_c_char] = ACTIONS(929), + [anon_sym_c_schar] = ACTIONS(929), + [anon_sym_c_uchar] = ACTIONS(929), + [anon_sym_c_short] = ACTIONS(929), + [anon_sym_c_ushort] = ACTIONS(929), + [anon_sym_c_int] = ACTIONS(929), + [anon_sym_c_uint] = ACTIONS(929), + [anon_sym_c_long] = ACTIONS(929), + [anon_sym_c_ulong] = ACTIONS(929), + [anon_sym_c_longlong] = ACTIONS(929), + [anon_sym_c_ulonglong] = ACTIONS(929), + [anon_sym_c_float] = ACTIONS(929), + [anon_sym_c_double] = ACTIONS(929), + [anon_sym_c_longdouble] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(927), + [anon_sym_DASH_EQ] = ACTIONS(927), + [anon_sym_STAR_EQ] = ACTIONS(927), + [anon_sym_SLASH_EQ] = ACTIONS(927), + [anon_sym_return] = ACTIONS(929), + [anon_sym_yield] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_defer] = ACTIONS(929), + [anon_sym_errdefer] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(927), + [anon_sym_orelse] = ACTIONS(929), + [anon_sym_catch] = ACTIONS(929), [anon_sym_or] = ACTIONS(67), [anon_sym_and] = ACTIONS(69), [anon_sym_EQ_EQ] = ACTIONS(71), @@ -65778,384 +66465,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(71), [anon_sym_GT] = ACTIONS(73), [anon_sym_GT_EQ] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_try] = ACTIONS(943), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [sym_none] = ACTIONS(943), - [sym_undefined] = ACTIONS(943), - [sym_sink] = ACTIONS(943), - [sym_integer] = ACTIONS(943), - [sym_float] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_multiline_string] = ACTIONS(941), - [sym_character] = ACTIONS(941), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [sym_none] = ACTIONS(929), + [sym_undefined] = ACTIONS(929), + [sym_sink] = ACTIONS(929), + [sym_integer] = ACTIONS(929), + [sym_float] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym_multiline_string] = ACTIONS(927), + [sym_character] = ACTIONS(927), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(941), - }, - [STATE(538)] = { - [sym_argument_list] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1434), - [anon_sym_import] = 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(923), - [anon_sym_RPAREN] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_DOLLAR] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(1434), - [anon_sym_anyopaque] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_int] = 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_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_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(69), - [anon_sym_EQ_EQ] = ACTIONS(71), - [anon_sym_BANG_EQ] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(71), - [anon_sym_GT] = ACTIONS(73), - [anon_sym_GT_EQ] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_try] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [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_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1432), - }, - [STATE(539)] = { - [sym_argument_list] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1434), - [anon_sym_import] = 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(923), - [anon_sym_RPAREN] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_DOLLAR] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(1434), - [anon_sym_anyopaque] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_int] = 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_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_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(71), - [anon_sym_BANG_EQ] = ACTIONS(71), - [anon_sym_LT] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(71), - [anon_sym_GT] = ACTIONS(73), - [anon_sym_GT_EQ] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_try] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [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_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1432), - }, - [STATE(540)] = { - [sym_argument_list] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(925), - [sym_identifier] = ACTIONS(927), - [anon_sym_import] = 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(923), - [anon_sym_RPAREN] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(927), - [anon_sym_anyopaque] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_int] = 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_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_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_PLUS] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_try] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [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), + [sym__newline] = ACTIONS(927), }, [STATE(541)] = { - [sym_argument_list] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(925), - [sym_identifier] = ACTIONS(927), - [anon_sym_import] = 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(923), - [anon_sym_RPAREN] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), + [ts_builtin_sym_end] = ACTIONS(857), + [sym_identifier] = ACTIONS(852), + [anon_sym_import] = ACTIONS(852), + [anon_sym_func] = ACTIONS(852), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_struct] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_RPAREN] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_DOLLAR] = ACTIONS(857), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(857), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_void] = ACTIONS(852), + [anon_sym_anyopaque] = ACTIONS(852), + [anon_sym_bool] = ACTIONS(852), + [anon_sym_int] = ACTIONS(852), + [anon_sym_float] = ACTIONS(852), + [anon_sym_range] = ACTIONS(852), + [anon_sym_i8] = ACTIONS(852), + [anon_sym_i16] = ACTIONS(852), + [anon_sym_i32] = ACTIONS(852), + [anon_sym_i64] = ACTIONS(852), + [anon_sym_u8] = ACTIONS(852), + [anon_sym_u16] = ACTIONS(852), + [anon_sym_u32] = ACTIONS(852), + [anon_sym_u64] = ACTIONS(852), + [anon_sym_isize] = ACTIONS(852), + [anon_sym_usize] = ACTIONS(852), + [anon_sym_f32] = ACTIONS(852), + [anon_sym_f64] = ACTIONS(852), + [anon_sym_c_char] = ACTIONS(852), + [anon_sym_c_schar] = ACTIONS(852), + [anon_sym_c_uchar] = ACTIONS(852), + [anon_sym_c_short] = ACTIONS(852), + [anon_sym_c_ushort] = ACTIONS(852), + [anon_sym_c_int] = ACTIONS(852), + [anon_sym_c_uint] = ACTIONS(852), + [anon_sym_c_long] = ACTIONS(852), + [anon_sym_c_ulong] = ACTIONS(852), + [anon_sym_c_longlong] = ACTIONS(852), + [anon_sym_c_ulonglong] = ACTIONS(852), + [anon_sym_c_float] = ACTIONS(852), + [anon_sym_c_double] = ACTIONS(852), + [anon_sym_c_longdouble] = ACTIONS(852), + [anon_sym_PLUS_EQ] = ACTIONS(857), + [anon_sym_DASH_EQ] = ACTIONS(857), + [anon_sym_STAR_EQ] = ACTIONS(857), + [anon_sym_SLASH_EQ] = ACTIONS(857), + [anon_sym_return] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(852), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_break] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(852), + [anon_sym_defer] = ACTIONS(852), + [anon_sym_errdefer] = ACTIONS(852), + [anon_sym_if] = ACTIONS(852), + [anon_sym_else] = ACTIONS(852), + [anon_sym_while] = ACTIONS(852), + [anon_sym_for] = ACTIONS(852), + [anon_sym_match] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_try] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_true] = ACTIONS(852), + [anon_sym_false] = ACTIONS(852), + [sym_none] = ACTIONS(852), + [sym_undefined] = ACTIONS(852), + [sym_sink] = ACTIONS(852), + [sym_integer] = ACTIONS(852), + [sym_float] = ACTIONS(857), + [anon_sym_DQUOTE] = ACTIONS(857), + [sym_multiline_string] = ACTIONS(857), + [sym_character] = ACTIONS(857), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(857), + }, + [STATE(542)] = { + [sym_argument_list] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(1438), + [sym_identifier] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1440), + [anon_sym_func] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_EQ] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(927), - [anon_sym_anyopaque] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_int] = 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_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_for] = ACTIONS(927), - [anon_sym_match] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_anyopaque] = ACTIONS(1440), + [anon_sym_bool] = ACTIONS(1440), + [anon_sym_int] = ACTIONS(1440), + [anon_sym_float] = ACTIONS(1440), + [anon_sym_range] = ACTIONS(1440), + [anon_sym_i8] = ACTIONS(1440), + [anon_sym_i16] = ACTIONS(1440), + [anon_sym_i32] = ACTIONS(1440), + [anon_sym_i64] = ACTIONS(1440), + [anon_sym_u8] = ACTIONS(1440), + [anon_sym_u16] = ACTIONS(1440), + [anon_sym_u32] = ACTIONS(1440), + [anon_sym_u64] = ACTIONS(1440), + [anon_sym_isize] = ACTIONS(1440), + [anon_sym_usize] = ACTIONS(1440), + [anon_sym_f32] = ACTIONS(1440), + [anon_sym_f64] = ACTIONS(1440), + [anon_sym_c_char] = ACTIONS(1440), + [anon_sym_c_schar] = ACTIONS(1440), + [anon_sym_c_uchar] = ACTIONS(1440), + [anon_sym_c_short] = ACTIONS(1440), + [anon_sym_c_ushort] = ACTIONS(1440), + [anon_sym_c_int] = ACTIONS(1440), + [anon_sym_c_uint] = ACTIONS(1440), + [anon_sym_c_long] = ACTIONS(1440), + [anon_sym_c_ulong] = ACTIONS(1440), + [anon_sym_c_longlong] = ACTIONS(1440), + [anon_sym_c_ulonglong] = ACTIONS(1440), + [anon_sym_c_float] = ACTIONS(1440), + [anon_sym_c_double] = ACTIONS(1440), + [anon_sym_c_longdouble] = ACTIONS(1440), + [anon_sym_PLUS_EQ] = ACTIONS(1438), + [anon_sym_DASH_EQ] = ACTIONS(1438), + [anon_sym_STAR_EQ] = ACTIONS(1438), + [anon_sym_SLASH_EQ] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_yield] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_defer] = ACTIONS(1440), + [anon_sym_errdefer] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_else] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_DOT_DOT] = ACTIONS(1440), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1438), + [anon_sym_orelse] = ACTIONS(1440), + [anon_sym_catch] = ACTIONS(1440), + [anon_sym_or] = ACTIONS(1440), + [anon_sym_and] = ACTIONS(1440), + [anon_sym_EQ_EQ] = ACTIONS(71), + [anon_sym_BANG_EQ] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(71), + [anon_sym_GT] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_try] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(1440), + [anon_sym_false] = ACTIONS(1440), + [sym_none] = ACTIONS(1440), + [sym_undefined] = ACTIONS(1440), + [sym_sink] = ACTIONS(1440), + [sym_integer] = ACTIONS(1440), + [sym_float] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_multiline_string] = ACTIONS(1438), + [sym_character] = ACTIONS(1438), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1438), + }, + [STATE(543)] = { + [sym_argument_list] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(991), + [sym_identifier] = ACTIONS(993), + [anon_sym_import] = ACTIONS(993), + [anon_sym_func] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RPAREN] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(993), + [anon_sym_anyopaque] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_int] = ACTIONS(993), + [anon_sym_float] = ACTIONS(993), + [anon_sym_range] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_c_char] = ACTIONS(993), + [anon_sym_c_schar] = ACTIONS(993), + [anon_sym_c_uchar] = ACTIONS(993), + [anon_sym_c_short] = ACTIONS(993), + [anon_sym_c_ushort] = ACTIONS(993), + [anon_sym_c_int] = ACTIONS(993), + [anon_sym_c_uint] = ACTIONS(993), + [anon_sym_c_long] = ACTIONS(993), + [anon_sym_c_ulong] = ACTIONS(993), + [anon_sym_c_longlong] = ACTIONS(993), + [anon_sym_c_ulonglong] = ACTIONS(993), + [anon_sym_c_float] = ACTIONS(993), + [anon_sym_c_double] = ACTIONS(993), + [anon_sym_c_longdouble] = ACTIONS(993), + [anon_sym_PLUS_EQ] = ACTIONS(991), + [anon_sym_DASH_EQ] = ACTIONS(991), + [anon_sym_STAR_EQ] = ACTIONS(991), + [anon_sym_SLASH_EQ] = ACTIONS(991), + [anon_sym_return] = ACTIONS(993), + [anon_sym_yield] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_defer] = ACTIONS(993), + [anon_sym_errdefer] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_match] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(991), [anon_sym_orelse] = ACTIONS(63), [anon_sym_catch] = ACTIONS(65), [anon_sym_or] = ACTIONS(67), @@ -66166,95 +66756,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(71), [anon_sym_GT] = ACTIONS(73), [anon_sym_GT_EQ] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_try] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_try] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [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), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [sym_none] = ACTIONS(993), + [sym_undefined] = ACTIONS(993), + [sym_sink] = ACTIONS(993), + [sym_integer] = ACTIONS(993), + [sym_float] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [sym_multiline_string] = ACTIONS(991), + [sym_character] = ACTIONS(991), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(925), + [sym__newline] = ACTIONS(991), }, - [STATE(542)] = { - [sym_argument_list] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(925), - [sym_identifier] = ACTIONS(927), - [anon_sym_import] = 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(923), - [anon_sym_RPAREN] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), + [STATE(544)] = { + [sym_argument_list] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(927), + [sym_identifier] = ACTIONS(929), + [anon_sym_import] = ACTIONS(929), + [anon_sym_func] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_struct] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RPAREN] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(927), - [anon_sym_anyopaque] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_int] = 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_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_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_STAR] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(929), + [anon_sym_anyopaque] = ACTIONS(929), + [anon_sym_bool] = ACTIONS(929), + [anon_sym_int] = ACTIONS(929), + [anon_sym_float] = ACTIONS(929), + [anon_sym_range] = ACTIONS(929), + [anon_sym_i8] = ACTIONS(929), + [anon_sym_i16] = ACTIONS(929), + [anon_sym_i32] = ACTIONS(929), + [anon_sym_i64] = ACTIONS(929), + [anon_sym_u8] = ACTIONS(929), + [anon_sym_u16] = ACTIONS(929), + [anon_sym_u32] = ACTIONS(929), + [anon_sym_u64] = ACTIONS(929), + [anon_sym_isize] = ACTIONS(929), + [anon_sym_usize] = ACTIONS(929), + [anon_sym_f32] = ACTIONS(929), + [anon_sym_f64] = ACTIONS(929), + [anon_sym_c_char] = ACTIONS(929), + [anon_sym_c_schar] = ACTIONS(929), + [anon_sym_c_uchar] = ACTIONS(929), + [anon_sym_c_short] = ACTIONS(929), + [anon_sym_c_ushort] = ACTIONS(929), + [anon_sym_c_int] = ACTIONS(929), + [anon_sym_c_uint] = ACTIONS(929), + [anon_sym_c_long] = ACTIONS(929), + [anon_sym_c_ulong] = ACTIONS(929), + [anon_sym_c_longlong] = ACTIONS(929), + [anon_sym_c_ulonglong] = ACTIONS(929), + [anon_sym_c_float] = ACTIONS(929), + [anon_sym_c_double] = ACTIONS(929), + [anon_sym_c_longdouble] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(927), + [anon_sym_DASH_EQ] = ACTIONS(927), + [anon_sym_STAR_EQ] = ACTIONS(927), + [anon_sym_SLASH_EQ] = ACTIONS(927), + [anon_sym_return] = ACTIONS(929), + [anon_sym_yield] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_defer] = ACTIONS(929), + [anon_sym_errdefer] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(927), + [anon_sym_orelse] = ACTIONS(63), + [anon_sym_catch] = ACTIONS(65), [anon_sym_or] = ACTIONS(67), [anon_sym_and] = ACTIONS(69), [anon_sym_EQ_EQ] = ACTIONS(71), @@ -66263,2698 +66853,2509 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(71), [anon_sym_GT] = ACTIONS(73), [anon_sym_GT_EQ] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_try] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [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), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [sym_none] = ACTIONS(929), + [sym_undefined] = ACTIONS(929), + [sym_sink] = ACTIONS(929), + [sym_integer] = ACTIONS(929), + [sym_float] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym_multiline_string] = ACTIONS(927), + [sym_character] = ACTIONS(927), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(925), + [sym__newline] = ACTIONS(927), }, - [STATE(543)] = { - [sym_argument_list] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(925), - [sym_identifier] = ACTIONS(927), - [anon_sym_import] = 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(923), - [anon_sym_RPAREN] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), + [STATE(545)] = { + [sym_argument_list] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(1438), + [sym_identifier] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1440), + [anon_sym_func] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_EQ] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(927), - [anon_sym_anyopaque] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_int] = 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_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_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_PLUS] = ACTIONS(1424), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_try] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [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(544)] = { - [sym_argument_list] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_identifier] = ACTIONS(1430), - [anon_sym_import] = 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(923), - [anon_sym_RPAREN] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_PIPE] = ACTIONS(1428), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(1430), - [anon_sym_anyopaque] = ACTIONS(1430), - [anon_sym_bool] = ACTIONS(1430), - [anon_sym_int] = 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_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_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_STAR] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_anyopaque] = ACTIONS(1440), + [anon_sym_bool] = ACTIONS(1440), + [anon_sym_int] = ACTIONS(1440), + [anon_sym_float] = ACTIONS(1440), + [anon_sym_range] = ACTIONS(1440), + [anon_sym_i8] = ACTIONS(1440), + [anon_sym_i16] = ACTIONS(1440), + [anon_sym_i32] = ACTIONS(1440), + [anon_sym_i64] = ACTIONS(1440), + [anon_sym_u8] = ACTIONS(1440), + [anon_sym_u16] = ACTIONS(1440), + [anon_sym_u32] = ACTIONS(1440), + [anon_sym_u64] = ACTIONS(1440), + [anon_sym_isize] = ACTIONS(1440), + [anon_sym_usize] = ACTIONS(1440), + [anon_sym_f32] = ACTIONS(1440), + [anon_sym_f64] = ACTIONS(1440), + [anon_sym_c_char] = ACTIONS(1440), + [anon_sym_c_schar] = ACTIONS(1440), + [anon_sym_c_uchar] = ACTIONS(1440), + [anon_sym_c_short] = ACTIONS(1440), + [anon_sym_c_ushort] = ACTIONS(1440), + [anon_sym_c_int] = ACTIONS(1440), + [anon_sym_c_uint] = ACTIONS(1440), + [anon_sym_c_long] = ACTIONS(1440), + [anon_sym_c_ulong] = ACTIONS(1440), + [anon_sym_c_longlong] = ACTIONS(1440), + [anon_sym_c_ulonglong] = ACTIONS(1440), + [anon_sym_c_float] = ACTIONS(1440), + [anon_sym_c_double] = ACTIONS(1440), + [anon_sym_c_longdouble] = ACTIONS(1440), + [anon_sym_PLUS_EQ] = ACTIONS(1438), + [anon_sym_DASH_EQ] = ACTIONS(1438), + [anon_sym_STAR_EQ] = ACTIONS(1438), + [anon_sym_SLASH_EQ] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_yield] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_defer] = ACTIONS(1440), + [anon_sym_errdefer] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_else] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_DOT_DOT] = ACTIONS(1440), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1438), + [anon_sym_orelse] = ACTIONS(1440), + [anon_sym_catch] = ACTIONS(1440), + [anon_sym_or] = ACTIONS(1440), + [anon_sym_and] = ACTIONS(69), [anon_sym_EQ_EQ] = ACTIONS(71), [anon_sym_BANG_EQ] = ACTIONS(71), [anon_sym_LT] = ACTIONS(73), [anon_sym_LT_EQ] = ACTIONS(71), [anon_sym_GT] = ACTIONS(73), [anon_sym_GT_EQ] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_try] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [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), + [anon_sym_true] = ACTIONS(1440), + [anon_sym_false] = ACTIONS(1440), + [sym_none] = ACTIONS(1440), + [sym_undefined] = ACTIONS(1440), + [sym_sink] = ACTIONS(1440), + [sym_integer] = ACTIONS(1440), + [sym_float] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_multiline_string] = ACTIONS(1438), + [sym_character] = ACTIONS(1438), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1428), - }, - [STATE(545)] = { - [ts_builtin_sym_end] = ACTIONS(1279), - [sym_identifier] = ACTIONS(1119), - [anon_sym_import] = ACTIONS(1281), - [anon_sym_func] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_struct] = ACTIONS(1119), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_RPAREN] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_QMARK] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1119), - [anon_sym_anyopaque] = ACTIONS(1119), - [anon_sym_bool] = ACTIONS(1119), - [anon_sym_int] = ACTIONS(1119), - [anon_sym_float] = ACTIONS(1119), - [anon_sym_range] = ACTIONS(1119), - [anon_sym_i8] = ACTIONS(1119), - [anon_sym_i16] = ACTIONS(1119), - [anon_sym_i32] = ACTIONS(1119), - [anon_sym_i64] = ACTIONS(1119), - [anon_sym_u8] = ACTIONS(1119), - [anon_sym_u16] = ACTIONS(1119), - [anon_sym_u32] = ACTIONS(1119), - [anon_sym_u64] = ACTIONS(1119), - [anon_sym_isize] = ACTIONS(1119), - [anon_sym_usize] = ACTIONS(1119), - [anon_sym_f32] = ACTIONS(1119), - [anon_sym_f64] = ACTIONS(1119), - [anon_sym_c_char] = ACTIONS(1119), - [anon_sym_c_schar] = ACTIONS(1119), - [anon_sym_c_uchar] = ACTIONS(1119), - [anon_sym_c_short] = ACTIONS(1119), - [anon_sym_c_ushort] = ACTIONS(1119), - [anon_sym_c_int] = ACTIONS(1119), - [anon_sym_c_uint] = ACTIONS(1119), - [anon_sym_c_long] = ACTIONS(1119), - [anon_sym_c_ulong] = ACTIONS(1119), - [anon_sym_c_longlong] = ACTIONS(1119), - [anon_sym_c_ulonglong] = ACTIONS(1119), - [anon_sym_c_float] = ACTIONS(1119), - [anon_sym_c_double] = ACTIONS(1119), - [anon_sym_c_longdouble] = ACTIONS(1119), - [anon_sym_PLUS_EQ] = ACTIONS(1279), - [anon_sym_DASH_EQ] = ACTIONS(1279), - [anon_sym_STAR_EQ] = ACTIONS(1279), - [anon_sym_SLASH_EQ] = ACTIONS(1279), - [anon_sym_return] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1119), - [anon_sym_break] = ACTIONS(1119), - [anon_sym_continue] = ACTIONS(1119), - [anon_sym_defer] = ACTIONS(1119), - [anon_sym_errdefer] = ACTIONS(1119), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1281), - [anon_sym_while] = ACTIONS(1119), - [anon_sym_for] = ACTIONS(1119), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_DOT_DOT] = ACTIONS(1119), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_orelse] = ACTIONS(1119), - [anon_sym_catch] = ACTIONS(1119), - [anon_sym_or] = ACTIONS(1119), - [anon_sym_and] = ACTIONS(1119), - [anon_sym_EQ_EQ] = ACTIONS(1117), - [anon_sym_BANG_EQ] = ACTIONS(1117), - [anon_sym_LT] = ACTIONS(1119), - [anon_sym_LT_EQ] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1119), - [anon_sym_GT_EQ] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_SLASH] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1119), - [anon_sym_DOT] = ACTIONS(1119), - [anon_sym_CARET] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1119), - [anon_sym_false] = ACTIONS(1119), - [sym_none] = ACTIONS(1119), - [sym_undefined] = ACTIONS(1119), - [sym_sink] = ACTIONS(1119), - [sym_integer] = ACTIONS(1119), - [sym_float] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym_multiline_string] = ACTIONS(1117), - [sym_character] = ACTIONS(1117), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1117), + [sym__newline] = ACTIONS(1438), }, [STATE(546)] = { - [ts_builtin_sym_end] = ACTIONS(1239), - [sym_identifier] = ACTIONS(1123), - [anon_sym_import] = ACTIONS(1241), - [anon_sym_func] = ACTIONS(1123), - [anon_sym_BANG] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(1121), - [anon_sym_RPAREN] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1121), - [anon_sym_RBRACE] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(1121), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_QMARK] = ACTIONS(1121), - [anon_sym_STAR] = ACTIONS(1123), - [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_void] = ACTIONS(1123), - [anon_sym_anyopaque] = ACTIONS(1123), - [anon_sym_bool] = ACTIONS(1123), - [anon_sym_int] = ACTIONS(1123), - [anon_sym_float] = ACTIONS(1123), - [anon_sym_range] = ACTIONS(1123), - [anon_sym_i8] = ACTIONS(1123), - [anon_sym_i16] = ACTIONS(1123), - [anon_sym_i32] = ACTIONS(1123), - [anon_sym_i64] = ACTIONS(1123), - [anon_sym_u8] = ACTIONS(1123), - [anon_sym_u16] = ACTIONS(1123), - [anon_sym_u32] = ACTIONS(1123), - [anon_sym_u64] = ACTIONS(1123), - [anon_sym_isize] = ACTIONS(1123), - [anon_sym_usize] = ACTIONS(1123), - [anon_sym_f32] = ACTIONS(1123), - [anon_sym_f64] = ACTIONS(1123), - [anon_sym_c_char] = ACTIONS(1123), - [anon_sym_c_schar] = ACTIONS(1123), - [anon_sym_c_uchar] = ACTIONS(1123), - [anon_sym_c_short] = ACTIONS(1123), - [anon_sym_c_ushort] = ACTIONS(1123), - [anon_sym_c_int] = ACTIONS(1123), - [anon_sym_c_uint] = ACTIONS(1123), - [anon_sym_c_long] = ACTIONS(1123), - [anon_sym_c_ulong] = ACTIONS(1123), - [anon_sym_c_longlong] = ACTIONS(1123), - [anon_sym_c_ulonglong] = ACTIONS(1123), - [anon_sym_c_float] = ACTIONS(1123), - [anon_sym_c_double] = ACTIONS(1123), - [anon_sym_c_longdouble] = ACTIONS(1123), - [anon_sym_PLUS_EQ] = ACTIONS(1239), - [anon_sym_DASH_EQ] = ACTIONS(1239), - [anon_sym_STAR_EQ] = ACTIONS(1239), - [anon_sym_SLASH_EQ] = ACTIONS(1239), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_defer] = ACTIONS(1123), - [anon_sym_errdefer] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1241), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1121), - [anon_sym_orelse] = ACTIONS(1123), - [anon_sym_catch] = ACTIONS(1123), - [anon_sym_or] = ACTIONS(1123), - [anon_sym_and] = ACTIONS(1123), - [anon_sym_EQ_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_LT] = ACTIONS(1123), - [anon_sym_LT_EQ] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1121), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_SLASH] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_try] = ACTIONS(1123), - [anon_sym_DOT] = ACTIONS(1123), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(1123), - [anon_sym_false] = ACTIONS(1123), - [sym_none] = ACTIONS(1123), - [sym_undefined] = ACTIONS(1123), - [sym_sink] = ACTIONS(1123), - [sym_integer] = ACTIONS(1123), - [sym_float] = ACTIONS(1121), - [anon_sym_DQUOTE] = ACTIONS(1121), - [sym_multiline_string] = ACTIONS(1121), - [sym_character] = ACTIONS(1121), + [ts_builtin_sym_end] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1067), + [anon_sym_import] = ACTIONS(1359), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_EQ] = ACTIONS(1359), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [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_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(1357), + [anon_sym_DASH_EQ] = ACTIONS(1357), + [anon_sym_STAR_EQ] = ACTIONS(1357), + [anon_sym_SLASH_EQ] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1067), + [anon_sym_yield] = ACTIONS(1067), + [anon_sym_break] = ACTIONS(1067), + [anon_sym_continue] = ACTIONS(1067), + [anon_sym_defer] = ACTIONS(1067), + [anon_sym_errdefer] = ACTIONS(1067), + [anon_sym_if] = ACTIONS(1067), + [anon_sym_else] = ACTIONS(1359), + [anon_sym_while] = 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_PLUS] = ACTIONS(1067), + [anon_sym_SLASH] = ACTIONS(1067), + [anon_sym_AMP] = 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(1121), + [sym__newline] = ACTIONS(1065), }, [STATE(547)] = { - [ts_builtin_sym_end] = ACTIONS(1191), - [sym_identifier] = ACTIONS(1061), - [anon_sym_import] = ACTIONS(1193), - [anon_sym_func] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_struct] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1191), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1191), - [anon_sym_DASH] = ACTIONS(1061), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1061), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_void] = ACTIONS(1061), - [anon_sym_anyopaque] = ACTIONS(1061), - [anon_sym_bool] = ACTIONS(1061), - [anon_sym_int] = ACTIONS(1061), - [anon_sym_float] = ACTIONS(1061), - [anon_sym_range] = ACTIONS(1061), - [anon_sym_i8] = ACTIONS(1061), - [anon_sym_i16] = ACTIONS(1061), - [anon_sym_i32] = ACTIONS(1061), - [anon_sym_i64] = ACTIONS(1061), - [anon_sym_u8] = ACTIONS(1061), - [anon_sym_u16] = ACTIONS(1061), - [anon_sym_u32] = ACTIONS(1061), - [anon_sym_u64] = ACTIONS(1061), - [anon_sym_isize] = ACTIONS(1061), - [anon_sym_usize] = ACTIONS(1061), - [anon_sym_f32] = ACTIONS(1061), - [anon_sym_f64] = ACTIONS(1061), - [anon_sym_c_char] = ACTIONS(1061), - [anon_sym_c_schar] = ACTIONS(1061), - [anon_sym_c_uchar] = ACTIONS(1061), - [anon_sym_c_short] = ACTIONS(1061), - [anon_sym_c_ushort] = ACTIONS(1061), - [anon_sym_c_int] = ACTIONS(1061), - [anon_sym_c_uint] = ACTIONS(1061), - [anon_sym_c_long] = ACTIONS(1061), - [anon_sym_c_ulong] = ACTIONS(1061), - [anon_sym_c_longlong] = ACTIONS(1061), - [anon_sym_c_ulonglong] = ACTIONS(1061), - [anon_sym_c_float] = ACTIONS(1061), - [anon_sym_c_double] = ACTIONS(1061), - [anon_sym_c_longdouble] = ACTIONS(1061), - [anon_sym_PLUS_EQ] = ACTIONS(1191), - [anon_sym_DASH_EQ] = ACTIONS(1191), - [anon_sym_STAR_EQ] = ACTIONS(1191), - [anon_sym_SLASH_EQ] = ACTIONS(1191), - [anon_sym_return] = ACTIONS(1061), - [anon_sym_yield] = ACTIONS(1061), - [anon_sym_break] = ACTIONS(1061), - [anon_sym_continue] = ACTIONS(1061), - [anon_sym_defer] = ACTIONS(1061), - [anon_sym_errdefer] = ACTIONS(1061), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_else] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1061), - [anon_sym_for] = ACTIONS(1061), - [anon_sym_match] = ACTIONS(1061), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_orelse] = ACTIONS(1061), - [anon_sym_catch] = ACTIONS(1061), - [anon_sym_or] = ACTIONS(1061), - [anon_sym_and] = ACTIONS(1061), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1061), - [anon_sym_SLASH] = ACTIONS(1061), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1061), - [anon_sym_DOT] = ACTIONS(1061), - [anon_sym_CARET] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_none] = ACTIONS(1061), - [sym_undefined] = ACTIONS(1061), - [sym_sink] = ACTIONS(1061), - [sym_integer] = ACTIONS(1061), - [sym_float] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_multiline_string] = ACTIONS(1059), - [sym_character] = ACTIONS(1059), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(967), + [anon_sym_import] = ACTIONS(1287), + [anon_sym_func] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(965), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_PIPE] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(965), + [anon_sym_void] = ACTIONS(967), + [anon_sym_anyopaque] = ACTIONS(967), + [anon_sym_bool] = ACTIONS(967), + [anon_sym_int] = ACTIONS(967), + [anon_sym_float] = ACTIONS(967), + [anon_sym_range] = ACTIONS(967), + [anon_sym_i8] = ACTIONS(967), + [anon_sym_i16] = ACTIONS(967), + [anon_sym_i32] = ACTIONS(967), + [anon_sym_i64] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(967), + [anon_sym_u16] = ACTIONS(967), + [anon_sym_u32] = ACTIONS(967), + [anon_sym_u64] = ACTIONS(967), + [anon_sym_isize] = ACTIONS(967), + [anon_sym_usize] = ACTIONS(967), + [anon_sym_f32] = ACTIONS(967), + [anon_sym_f64] = ACTIONS(967), + [anon_sym_c_char] = ACTIONS(967), + [anon_sym_c_schar] = ACTIONS(967), + [anon_sym_c_uchar] = ACTIONS(967), + [anon_sym_c_short] = ACTIONS(967), + [anon_sym_c_ushort] = ACTIONS(967), + [anon_sym_c_int] = ACTIONS(967), + [anon_sym_c_uint] = ACTIONS(967), + [anon_sym_c_long] = ACTIONS(967), + [anon_sym_c_ulong] = ACTIONS(967), + [anon_sym_c_longlong] = ACTIONS(967), + [anon_sym_c_ulonglong] = ACTIONS(967), + [anon_sym_c_float] = ACTIONS(967), + [anon_sym_c_double] = ACTIONS(967), + [anon_sym_c_longdouble] = ACTIONS(967), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(967), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_break] = ACTIONS(967), + [anon_sym_continue] = ACTIONS(967), + [anon_sym_defer] = ACTIONS(967), + [anon_sym_errdefer] = ACTIONS(967), + [anon_sym_if] = ACTIONS(967), + [anon_sym_else] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(967), + [anon_sym_for] = ACTIONS(967), + [anon_sym_match] = ACTIONS(967), + [anon_sym_DOT_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(965), + [anon_sym_orelse] = ACTIONS(967), + [anon_sym_catch] = ACTIONS(967), + [anon_sym_or] = ACTIONS(967), + [anon_sym_and] = ACTIONS(967), + [anon_sym_EQ_EQ] = ACTIONS(965), + [anon_sym_BANG_EQ] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(965), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_GT_EQ] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(967), + [anon_sym_SLASH] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(965), + [anon_sym_try] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_CARET] = ACTIONS(965), + [anon_sym_true] = ACTIONS(967), + [anon_sym_false] = ACTIONS(967), + [sym_none] = ACTIONS(967), + [sym_undefined] = ACTIONS(967), + [sym_sink] = ACTIONS(967), + [sym_integer] = ACTIONS(967), + [sym_float] = ACTIONS(965), + [anon_sym_DQUOTE] = ACTIONS(965), + [sym_multiline_string] = ACTIONS(965), + [sym_character] = ACTIONS(965), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1059), + [sym__newline] = ACTIONS(965), }, [STATE(548)] = { - [sym_argument_list] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(981), - [sym_identifier] = ACTIONS(983), - [anon_sym_import] = ACTIONS(983), - [anon_sym_func] = ACTIONS(927), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_EQ] = ACTIONS(983), - [anon_sym_struct] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(927), - [anon_sym_anyopaque] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_int] = 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(981), - [anon_sym_DASH_EQ] = ACTIONS(981), - [anon_sym_STAR_EQ] = ACTIONS(981), - [anon_sym_SLASH_EQ] = ACTIONS(981), - [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(983), - [anon_sym_while] = ACTIONS(927), - [anon_sym_for] = ACTIONS(927), - [anon_sym_match] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(981), - [anon_sym_orelse] = ACTIONS(983), - [anon_sym_catch] = ACTIONS(983), - [anon_sym_or] = ACTIONS(983), - [anon_sym_and] = ACTIONS(983), - [anon_sym_EQ_EQ] = ACTIONS(981), - [anon_sym_BANG_EQ] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_LT_EQ] = ACTIONS(981), - [anon_sym_GT] = ACTIONS(983), - [anon_sym_GT_EQ] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_try] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [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), + [ts_builtin_sym_end] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1019), + [anon_sym_import] = ACTIONS(1411), + [anon_sym_func] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_EQ] = ACTIONS(1411), + [anon_sym_struct] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1409), + [anon_sym_LBRACE] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1017), + [anon_sym_PIPE] = ACTIONS(1017), + [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_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(1409), + [anon_sym_DASH_EQ] = ACTIONS(1409), + [anon_sym_STAR_EQ] = ACTIONS(1409), + [anon_sym_SLASH_EQ] = ACTIONS(1409), + [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(1411), + [anon_sym_while] = 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_PLUS] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_AMP] = 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(981), + [sym__newline] = ACTIONS(1017), }, [STATE(549)] = { - [sym_type] = STATE(2060), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), + [sym_type] = STATE(2068), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), [sym_identifier] = ACTIONS(842), - [anon_sym_COLON_COLON] = ACTIONS(1436), + [anon_sym_COLON_COLON] = ACTIONS(1442), [anon_sym_func] = ACTIONS(847), - [anon_sym_c_func] = ACTIONS(273), + [anon_sym_c_func] = ACTIONS(319), [anon_sym_BANG] = ACTIONS(850), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_void] = ACTIONS(866), - [anon_sym_anyopaque] = ACTIONS(866), - [anon_sym_bool] = ACTIONS(866), - [anon_sym_int] = ACTIONS(866), - [anon_sym_float] = ACTIONS(866), - [anon_sym_range] = ACTIONS(866), - [anon_sym_i8] = ACTIONS(866), - [anon_sym_i16] = ACTIONS(866), - [anon_sym_i32] = ACTIONS(866), - [anon_sym_i64] = ACTIONS(866), - [anon_sym_u8] = ACTIONS(866), - [anon_sym_u16] = ACTIONS(866), - [anon_sym_u32] = ACTIONS(866), - [anon_sym_u64] = ACTIONS(866), - [anon_sym_isize] = ACTIONS(866), - [anon_sym_usize] = ACTIONS(866), - [anon_sym_f32] = ACTIONS(866), - [anon_sym_f64] = ACTIONS(866), - [anon_sym_c_char] = ACTIONS(866), - [anon_sym_c_schar] = ACTIONS(866), - [anon_sym_c_uchar] = ACTIONS(866), - [anon_sym_c_short] = ACTIONS(866), - [anon_sym_c_ushort] = ACTIONS(866), - [anon_sym_c_int] = ACTIONS(866), - [anon_sym_c_uint] = ACTIONS(866), - [anon_sym_c_long] = ACTIONS(866), - [anon_sym_c_ulong] = ACTIONS(866), - [anon_sym_c_longlong] = ACTIONS(866), - [anon_sym_c_ulonglong] = ACTIONS(866), - [anon_sym_c_float] = ACTIONS(866), - [anon_sym_c_double] = ACTIONS(866), - [anon_sym_c_longdouble] = ACTIONS(866), - [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_COLON] = ACTIONS(869), - [anon_sym_else] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_AMP] = ACTIONS(855), - [anon_sym_try] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(871), - [anon_sym_CARET] = ACTIONS(855), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [sym_none] = ACTIONS(850), - [sym_undefined] = ACTIONS(850), - [sym_sink] = ACTIONS(850), - [sym_integer] = ACTIONS(850), - [sym_float] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [sym_multiline_string] = ACTIONS(855), - [sym_character] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_struct] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_DOLLAR] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_void] = ACTIONS(868), + [anon_sym_anyopaque] = ACTIONS(868), + [anon_sym_bool] = ACTIONS(868), + [anon_sym_int] = ACTIONS(868), + [anon_sym_float] = ACTIONS(868), + [anon_sym_range] = ACTIONS(868), + [anon_sym_i8] = ACTIONS(868), + [anon_sym_i16] = ACTIONS(868), + [anon_sym_i32] = ACTIONS(868), + [anon_sym_i64] = ACTIONS(868), + [anon_sym_u8] = ACTIONS(868), + [anon_sym_u16] = ACTIONS(868), + [anon_sym_u32] = ACTIONS(868), + [anon_sym_u64] = ACTIONS(868), + [anon_sym_isize] = ACTIONS(868), + [anon_sym_usize] = ACTIONS(868), + [anon_sym_f32] = ACTIONS(868), + [anon_sym_f64] = ACTIONS(868), + [anon_sym_c_char] = ACTIONS(868), + [anon_sym_c_schar] = ACTIONS(868), + [anon_sym_c_uchar] = ACTIONS(868), + [anon_sym_c_short] = ACTIONS(868), + [anon_sym_c_ushort] = ACTIONS(868), + [anon_sym_c_int] = ACTIONS(868), + [anon_sym_c_uint] = ACTIONS(868), + [anon_sym_c_long] = ACTIONS(868), + [anon_sym_c_ulong] = ACTIONS(868), + [anon_sym_c_longlong] = ACTIONS(868), + [anon_sym_c_ulonglong] = ACTIONS(868), + [anon_sym_c_float] = ACTIONS(868), + [anon_sym_c_double] = ACTIONS(868), + [anon_sym_c_longdouble] = ACTIONS(868), + [anon_sym_PLUS_EQ] = ACTIONS(857), + [anon_sym_DASH_EQ] = ACTIONS(857), + [anon_sym_STAR_EQ] = ACTIONS(857), + [anon_sym_SLASH_EQ] = ACTIONS(857), + [anon_sym_COLON] = ACTIONS(871), + [anon_sym_else] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_try] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_true] = ACTIONS(852), + [anon_sym_false] = ACTIONS(852), + [sym_none] = ACTIONS(852), + [sym_undefined] = ACTIONS(852), + [sym_sink] = ACTIONS(852), + [sym_integer] = ACTIONS(852), + [sym_float] = ACTIONS(857), + [anon_sym_DQUOTE] = ACTIONS(857), + [sym_multiline_string] = ACTIONS(857), + [sym_character] = ACTIONS(857), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), + [sym__newline] = ACTIONS(857), }, [STATE(550)] = { - [sym_argument_list] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(1153), - [sym_identifier] = ACTIONS(1155), - [anon_sym_import] = ACTIONS(1155), - [anon_sym_func] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(1155), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(1155), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_PIPE] = ACTIONS(941), + [sym_argument_list] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(1033), + [sym_identifier] = ACTIONS(1035), + [anon_sym_import] = ACTIONS(1035), + [anon_sym_func] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(1035), + [anon_sym_struct] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(943), - [anon_sym_anyopaque] = ACTIONS(943), - [anon_sym_bool] = ACTIONS(943), - [anon_sym_int] = ACTIONS(943), - [anon_sym_float] = ACTIONS(943), - [anon_sym_range] = ACTIONS(943), - [anon_sym_i8] = ACTIONS(943), - [anon_sym_i16] = ACTIONS(943), - [anon_sym_i32] = ACTIONS(943), - [anon_sym_i64] = ACTIONS(943), - [anon_sym_u8] = ACTIONS(943), - [anon_sym_u16] = ACTIONS(943), - [anon_sym_u32] = ACTIONS(943), - [anon_sym_u64] = ACTIONS(943), - [anon_sym_isize] = ACTIONS(943), - [anon_sym_usize] = ACTIONS(943), - [anon_sym_f32] = ACTIONS(943), - [anon_sym_f64] = ACTIONS(943), - [anon_sym_c_char] = ACTIONS(943), - [anon_sym_c_schar] = ACTIONS(943), - [anon_sym_c_uchar] = ACTIONS(943), - [anon_sym_c_short] = ACTIONS(943), - [anon_sym_c_ushort] = ACTIONS(943), - [anon_sym_c_int] = ACTIONS(943), - [anon_sym_c_uint] = ACTIONS(943), - [anon_sym_c_long] = ACTIONS(943), - [anon_sym_c_ulong] = ACTIONS(943), - [anon_sym_c_longlong] = ACTIONS(943), - [anon_sym_c_ulonglong] = ACTIONS(943), - [anon_sym_c_float] = ACTIONS(943), - [anon_sym_c_double] = ACTIONS(943), - [anon_sym_c_longdouble] = ACTIONS(943), - [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_return] = ACTIONS(943), - [anon_sym_yield] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_defer] = ACTIONS(943), - [anon_sym_errdefer] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_else] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [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_PLUS] = ACTIONS(1155), - [anon_sym_SLASH] = ACTIONS(1155), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_try] = ACTIONS(943), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(929), + [anon_sym_anyopaque] = ACTIONS(929), + [anon_sym_bool] = ACTIONS(929), + [anon_sym_int] = ACTIONS(929), + [anon_sym_float] = ACTIONS(929), + [anon_sym_range] = ACTIONS(929), + [anon_sym_i8] = ACTIONS(929), + [anon_sym_i16] = ACTIONS(929), + [anon_sym_i32] = ACTIONS(929), + [anon_sym_i64] = ACTIONS(929), + [anon_sym_u8] = ACTIONS(929), + [anon_sym_u16] = ACTIONS(929), + [anon_sym_u32] = ACTIONS(929), + [anon_sym_u64] = ACTIONS(929), + [anon_sym_isize] = ACTIONS(929), + [anon_sym_usize] = ACTIONS(929), + [anon_sym_f32] = ACTIONS(929), + [anon_sym_f64] = ACTIONS(929), + [anon_sym_c_char] = ACTIONS(929), + [anon_sym_c_schar] = ACTIONS(929), + [anon_sym_c_uchar] = ACTIONS(929), + [anon_sym_c_short] = ACTIONS(929), + [anon_sym_c_ushort] = ACTIONS(929), + [anon_sym_c_int] = ACTIONS(929), + [anon_sym_c_uint] = ACTIONS(929), + [anon_sym_c_long] = ACTIONS(929), + [anon_sym_c_ulong] = ACTIONS(929), + [anon_sym_c_longlong] = ACTIONS(929), + [anon_sym_c_ulonglong] = ACTIONS(929), + [anon_sym_c_float] = ACTIONS(929), + [anon_sym_c_double] = ACTIONS(929), + [anon_sym_c_longdouble] = ACTIONS(929), + [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_return] = ACTIONS(929), + [anon_sym_yield] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_defer] = ACTIONS(929), + [anon_sym_errdefer] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [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_PLUS] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [sym_none] = ACTIONS(943), - [sym_undefined] = ACTIONS(943), - [sym_sink] = ACTIONS(943), - [sym_integer] = ACTIONS(943), - [sym_float] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_multiline_string] = ACTIONS(941), - [sym_character] = ACTIONS(941), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [sym_none] = ACTIONS(929), + [sym_undefined] = ACTIONS(929), + [sym_sink] = ACTIONS(929), + [sym_integer] = ACTIONS(929), + [sym_float] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym_multiline_string] = ACTIONS(927), + [sym_character] = ACTIONS(927), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1153), + [sym__newline] = ACTIONS(1033), }, [STATE(551)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = 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(923), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_RBRACE] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1155), - [anon_sym_DOLLAR] = ACTIONS(1153), - [anon_sym_PIPE] = ACTIONS(941), + [sym_argument_list] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(1049), + [sym_identifier] = ACTIONS(1051), + [anon_sym_import] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(1051), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(1155), - [anon_sym_anyopaque] = ACTIONS(1155), - [anon_sym_bool] = ACTIONS(1155), - [anon_sym_int] = 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_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_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_PLUS] = ACTIONS(1155), - [anon_sym_SLASH] = ACTIONS(1155), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_try] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(993), + [anon_sym_anyopaque] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_int] = ACTIONS(993), + [anon_sym_float] = ACTIONS(993), + [anon_sym_range] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_c_char] = ACTIONS(993), + [anon_sym_c_schar] = ACTIONS(993), + [anon_sym_c_uchar] = ACTIONS(993), + [anon_sym_c_short] = ACTIONS(993), + [anon_sym_c_ushort] = ACTIONS(993), + [anon_sym_c_int] = ACTIONS(993), + [anon_sym_c_uint] = ACTIONS(993), + [anon_sym_c_long] = ACTIONS(993), + [anon_sym_c_ulong] = ACTIONS(993), + [anon_sym_c_longlong] = ACTIONS(993), + [anon_sym_c_ulonglong] = ACTIONS(993), + [anon_sym_c_float] = ACTIONS(993), + [anon_sym_c_double] = ACTIONS(993), + [anon_sym_c_longdouble] = ACTIONS(993), + [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_return] = ACTIONS(993), + [anon_sym_yield] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_defer] = ACTIONS(993), + [anon_sym_errdefer] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_match] = ACTIONS(993), + [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_PLUS] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_try] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [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), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [sym_none] = ACTIONS(993), + [sym_undefined] = ACTIONS(993), + [sym_sink] = ACTIONS(993), + [sym_integer] = ACTIONS(993), + [sym_float] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [sym_multiline_string] = ACTIONS(991), + [sym_character] = ACTIONS(991), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1153), + [sym__newline] = ACTIONS(1049), }, [STATE(552)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = ACTIONS(983), - [anon_sym_func] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_EQ] = ACTIONS(983), - [anon_sym_struct] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(981), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOLLAR] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(925), + [sym_argument_list] = STATE(523), + [sym_identifier] = 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(915), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(927), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(983), - [anon_sym_anyopaque] = ACTIONS(983), - [anon_sym_bool] = ACTIONS(983), - [anon_sym_int] = ACTIONS(983), - [anon_sym_float] = ACTIONS(983), - [anon_sym_range] = ACTIONS(983), - [anon_sym_i8] = ACTIONS(983), - [anon_sym_i16] = ACTIONS(983), - [anon_sym_i32] = ACTIONS(983), - [anon_sym_i64] = ACTIONS(983), - [anon_sym_u8] = ACTIONS(983), - [anon_sym_u16] = ACTIONS(983), - [anon_sym_u32] = ACTIONS(983), - [anon_sym_u64] = ACTIONS(983), - [anon_sym_isize] = ACTIONS(983), - [anon_sym_usize] = ACTIONS(983), - [anon_sym_f32] = ACTIONS(983), - [anon_sym_f64] = ACTIONS(983), - [anon_sym_c_char] = ACTIONS(983), - [anon_sym_c_schar] = ACTIONS(983), - [anon_sym_c_uchar] = ACTIONS(983), - [anon_sym_c_short] = ACTIONS(983), - [anon_sym_c_ushort] = ACTIONS(983), - [anon_sym_c_int] = ACTIONS(983), - [anon_sym_c_uint] = ACTIONS(983), - [anon_sym_c_long] = ACTIONS(983), - [anon_sym_c_ulong] = ACTIONS(983), - [anon_sym_c_longlong] = ACTIONS(983), - [anon_sym_c_ulonglong] = ACTIONS(983), - [anon_sym_c_float] = ACTIONS(983), - [anon_sym_c_double] = ACTIONS(983), - [anon_sym_c_longdouble] = ACTIONS(983), - [anon_sym_PLUS_EQ] = ACTIONS(981), - [anon_sym_DASH_EQ] = ACTIONS(981), - [anon_sym_STAR_EQ] = ACTIONS(981), - [anon_sym_SLASH_EQ] = ACTIONS(981), - [anon_sym_return] = ACTIONS(983), - [anon_sym_yield] = ACTIONS(983), - [anon_sym_break] = ACTIONS(983), - [anon_sym_continue] = ACTIONS(983), - [anon_sym_defer] = ACTIONS(983), - [anon_sym_errdefer] = ACTIONS(983), - [anon_sym_if] = ACTIONS(983), - [anon_sym_else] = ACTIONS(983), - [anon_sym_while] = ACTIONS(983), - [anon_sym_for] = ACTIONS(983), - [anon_sym_match] = ACTIONS(983), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(981), - [anon_sym_orelse] = ACTIONS(983), - [anon_sym_catch] = ACTIONS(983), - [anon_sym_or] = ACTIONS(983), - [anon_sym_and] = ACTIONS(983), - [anon_sym_EQ_EQ] = ACTIONS(981), - [anon_sym_BANG_EQ] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_LT_EQ] = ACTIONS(981), - [anon_sym_GT] = ACTIONS(983), - [anon_sym_GT_EQ] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_try] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(1035), + [anon_sym_anyopaque] = ACTIONS(1035), + [anon_sym_bool] = ACTIONS(1035), + [anon_sym_int] = 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_return] = ACTIONS(929), + [anon_sym_yield] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_defer] = ACTIONS(929), + [anon_sym_errdefer] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [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_PLUS] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(983), - [anon_sym_false] = ACTIONS(983), - [sym_none] = ACTIONS(983), - [sym_undefined] = ACTIONS(983), - [sym_sink] = ACTIONS(983), - [sym_integer] = ACTIONS(983), - [sym_float] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(981), - [sym_multiline_string] = ACTIONS(981), - [sym_character] = ACTIONS(981), + [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(981), + [sym__newline] = ACTIONS(1033), }, [STATE(553)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = ACTIONS(983), - [anon_sym_func] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_EQ] = ACTIONS(983), - [anon_sym_struct] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOLLAR] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(925), + [sym_argument_list] = STATE(523), + [sym_identifier] = 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(915), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(991), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(983), - [anon_sym_anyopaque] = ACTIONS(983), - [anon_sym_bool] = ACTIONS(983), - [anon_sym_int] = ACTIONS(983), - [anon_sym_float] = ACTIONS(983), - [anon_sym_range] = ACTIONS(983), - [anon_sym_i8] = ACTIONS(983), - [anon_sym_i16] = ACTIONS(983), - [anon_sym_i32] = ACTIONS(983), - [anon_sym_i64] = ACTIONS(983), - [anon_sym_u8] = ACTIONS(983), - [anon_sym_u16] = ACTIONS(983), - [anon_sym_u32] = ACTIONS(983), - [anon_sym_u64] = ACTIONS(983), - [anon_sym_isize] = ACTIONS(983), - [anon_sym_usize] = ACTIONS(983), - [anon_sym_f32] = ACTIONS(983), - [anon_sym_f64] = ACTIONS(983), - [anon_sym_c_char] = ACTIONS(983), - [anon_sym_c_schar] = ACTIONS(983), - [anon_sym_c_uchar] = ACTIONS(983), - [anon_sym_c_short] = ACTIONS(983), - [anon_sym_c_ushort] = ACTIONS(983), - [anon_sym_c_int] = ACTIONS(983), - [anon_sym_c_uint] = ACTIONS(983), - [anon_sym_c_long] = ACTIONS(983), - [anon_sym_c_ulong] = ACTIONS(983), - [anon_sym_c_longlong] = ACTIONS(983), - [anon_sym_c_ulonglong] = ACTIONS(983), - [anon_sym_c_float] = ACTIONS(983), - [anon_sym_c_double] = ACTIONS(983), - [anon_sym_c_longdouble] = ACTIONS(983), - [anon_sym_PLUS_EQ] = ACTIONS(981), - [anon_sym_DASH_EQ] = ACTIONS(981), - [anon_sym_STAR_EQ] = ACTIONS(981), - [anon_sym_SLASH_EQ] = ACTIONS(981), - [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(983), - [anon_sym_while] = ACTIONS(927), - [anon_sym_for] = ACTIONS(927), - [anon_sym_match] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(981), - [anon_sym_orelse] = ACTIONS(983), - [anon_sym_catch] = ACTIONS(983), - [anon_sym_or] = ACTIONS(983), - [anon_sym_and] = ACTIONS(983), - [anon_sym_EQ_EQ] = ACTIONS(981), - [anon_sym_BANG_EQ] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_LT_EQ] = ACTIONS(981), - [anon_sym_GT] = ACTIONS(983), - [anon_sym_GT_EQ] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_try] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(1051), + [anon_sym_anyopaque] = ACTIONS(1051), + [anon_sym_bool] = ACTIONS(1051), + [anon_sym_int] = 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_return] = ACTIONS(993), + [anon_sym_yield] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_defer] = ACTIONS(993), + [anon_sym_errdefer] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_match] = ACTIONS(993), + [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_PLUS] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(983), - [anon_sym_false] = ACTIONS(983), - [sym_none] = ACTIONS(983), - [sym_undefined] = ACTIONS(983), - [sym_sink] = ACTIONS(983), - [sym_integer] = ACTIONS(983), - [sym_float] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(981), - [sym_multiline_string] = ACTIONS(981), - [sym_character] = ACTIONS(981), + [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(981), + [sym__newline] = ACTIONS(1049), }, [STATE(554)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = ACTIONS(943), - [anon_sym_func] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(1155), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(1155), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_PIPE] = ACTIONS(941), + [sym_argument_list] = STATE(523), + [sym_identifier] = 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(915), + [anon_sym_LBRACE] = ACTIONS(1049), + [anon_sym_RBRACE] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(991), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(943), - [anon_sym_anyopaque] = ACTIONS(943), - [anon_sym_bool] = ACTIONS(943), - [anon_sym_int] = ACTIONS(943), - [anon_sym_float] = ACTIONS(943), - [anon_sym_range] = ACTIONS(943), - [anon_sym_i8] = ACTIONS(943), - [anon_sym_i16] = ACTIONS(943), - [anon_sym_i32] = ACTIONS(943), - [anon_sym_i64] = ACTIONS(943), - [anon_sym_u8] = ACTIONS(943), - [anon_sym_u16] = ACTIONS(943), - [anon_sym_u32] = ACTIONS(943), - [anon_sym_u64] = ACTIONS(943), - [anon_sym_isize] = ACTIONS(943), - [anon_sym_usize] = ACTIONS(943), - [anon_sym_f32] = ACTIONS(943), - [anon_sym_f64] = ACTIONS(943), - [anon_sym_c_char] = ACTIONS(943), - [anon_sym_c_schar] = ACTIONS(943), - [anon_sym_c_uchar] = ACTIONS(943), - [anon_sym_c_short] = ACTIONS(943), - [anon_sym_c_ushort] = ACTIONS(943), - [anon_sym_c_int] = ACTIONS(943), - [anon_sym_c_uint] = ACTIONS(943), - [anon_sym_c_long] = ACTIONS(943), - [anon_sym_c_ulong] = ACTIONS(943), - [anon_sym_c_longlong] = ACTIONS(943), - [anon_sym_c_ulonglong] = ACTIONS(943), - [anon_sym_c_float] = ACTIONS(943), - [anon_sym_c_double] = ACTIONS(943), - [anon_sym_c_longdouble] = ACTIONS(943), - [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_return] = ACTIONS(943), - [anon_sym_yield] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_defer] = ACTIONS(943), - [anon_sym_errdefer] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_else] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [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_PLUS] = ACTIONS(1155), - [anon_sym_SLASH] = ACTIONS(1155), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_try] = ACTIONS(943), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(1051), + [anon_sym_anyopaque] = ACTIONS(1051), + [anon_sym_bool] = ACTIONS(1051), + [anon_sym_int] = 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_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_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_PLUS] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [sym_none] = ACTIONS(943), - [sym_undefined] = ACTIONS(943), - [sym_sink] = ACTIONS(943), - [sym_integer] = ACTIONS(943), - [sym_float] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_multiline_string] = ACTIONS(941), - [sym_character] = ACTIONS(941), + [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(1153), + [sym__newline] = ACTIONS(1049), }, [STATE(555)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = 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(923), - [anon_sym_LBRACE] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1155), - [anon_sym_DOLLAR] = ACTIONS(1153), - [anon_sym_PIPE] = ACTIONS(941), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(1155), - [anon_sym_anyopaque] = ACTIONS(1155), - [anon_sym_bool] = ACTIONS(1155), - [anon_sym_int] = 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_return] = ACTIONS(943), - [anon_sym_yield] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_defer] = ACTIONS(943), - [anon_sym_errdefer] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_else] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [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_PLUS] = ACTIONS(1155), - [anon_sym_SLASH] = ACTIONS(1155), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_try] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(1155), - [anon_sym_false] = ACTIONS(1155), - [sym_none] = ACTIONS(1155), - [sym_undefined] = ACTIONS(1155), - [sym_sink] = ACTIONS(1155), - [sym_integer] = ACTIONS(1155), - [sym_float] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [sym_multiline_string] = ACTIONS(1153), - [sym_character] = ACTIONS(1153), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1147), + [sym_labeled_block] = STATE(1147), + [sym_if_statement] = STATE(1147), + [sym_while_statement] = STATE(1147), + [sym_for_statement] = STATE(1147), + [sym_match_statement] = STATE(1147), + [sym__value] = STATE(1147), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1419), + [sym_identifier] = ACTIONS(882), + [anon_sym_import] = ACTIONS(1421), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(51), + [anon_sym_else] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1153), + [sym__newline] = ACTIONS(1419), }, [STATE(556)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = ACTIONS(927), - [anon_sym_func] = ACTIONS(927), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_EQ] = ACTIONS(983), - [anon_sym_struct] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(981), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(929), + [anon_sym_func] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(1035), + [anon_sym_struct] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(927), - [anon_sym_anyopaque] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_int] = 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(981), - [anon_sym_DASH_EQ] = ACTIONS(981), - [anon_sym_STAR_EQ] = ACTIONS(981), - [anon_sym_SLASH_EQ] = ACTIONS(981), - [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(983), - [anon_sym_while] = ACTIONS(927), - [anon_sym_for] = ACTIONS(927), - [anon_sym_match] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(981), - [anon_sym_orelse] = ACTIONS(983), - [anon_sym_catch] = ACTIONS(983), - [anon_sym_or] = ACTIONS(983), - [anon_sym_and] = ACTIONS(983), - [anon_sym_EQ_EQ] = ACTIONS(981), - [anon_sym_BANG_EQ] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_LT_EQ] = ACTIONS(981), - [anon_sym_GT] = ACTIONS(983), - [anon_sym_GT_EQ] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_try] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(929), + [anon_sym_anyopaque] = ACTIONS(929), + [anon_sym_bool] = ACTIONS(929), + [anon_sym_int] = ACTIONS(929), + [anon_sym_float] = ACTIONS(929), + [anon_sym_range] = ACTIONS(929), + [anon_sym_i8] = ACTIONS(929), + [anon_sym_i16] = ACTIONS(929), + [anon_sym_i32] = ACTIONS(929), + [anon_sym_i64] = ACTIONS(929), + [anon_sym_u8] = ACTIONS(929), + [anon_sym_u16] = ACTIONS(929), + [anon_sym_u32] = ACTIONS(929), + [anon_sym_u64] = ACTIONS(929), + [anon_sym_isize] = ACTIONS(929), + [anon_sym_usize] = ACTIONS(929), + [anon_sym_f32] = ACTIONS(929), + [anon_sym_f64] = ACTIONS(929), + [anon_sym_c_char] = ACTIONS(929), + [anon_sym_c_schar] = ACTIONS(929), + [anon_sym_c_uchar] = ACTIONS(929), + [anon_sym_c_short] = ACTIONS(929), + [anon_sym_c_ushort] = ACTIONS(929), + [anon_sym_c_int] = ACTIONS(929), + [anon_sym_c_uint] = ACTIONS(929), + [anon_sym_c_long] = ACTIONS(929), + [anon_sym_c_ulong] = ACTIONS(929), + [anon_sym_c_longlong] = ACTIONS(929), + [anon_sym_c_ulonglong] = ACTIONS(929), + [anon_sym_c_float] = ACTIONS(929), + [anon_sym_c_double] = ACTIONS(929), + [anon_sym_c_longdouble] = ACTIONS(929), + [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_return] = ACTIONS(929), + [anon_sym_yield] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_defer] = ACTIONS(929), + [anon_sym_errdefer] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [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_PLUS] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [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), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [sym_none] = ACTIONS(929), + [sym_undefined] = ACTIONS(929), + [sym_sink] = ACTIONS(929), + [sym_integer] = ACTIONS(929), + [sym_float] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym_multiline_string] = ACTIONS(927), + [sym_character] = ACTIONS(927), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(981), + [sym__newline] = ACTIONS(1033), }, [STATE(557)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = ACTIONS(1155), - [anon_sym_func] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(1155), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1155), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_PIPE] = ACTIONS(941), + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(993), + [anon_sym_func] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(1051), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RPAREN] = ACTIONS(1049), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(943), - [anon_sym_anyopaque] = ACTIONS(943), - [anon_sym_bool] = ACTIONS(943), - [anon_sym_int] = ACTIONS(943), - [anon_sym_float] = ACTIONS(943), - [anon_sym_range] = ACTIONS(943), - [anon_sym_i8] = ACTIONS(943), - [anon_sym_i16] = ACTIONS(943), - [anon_sym_i32] = ACTIONS(943), - [anon_sym_i64] = ACTIONS(943), - [anon_sym_u8] = ACTIONS(943), - [anon_sym_u16] = ACTIONS(943), - [anon_sym_u32] = ACTIONS(943), - [anon_sym_u64] = ACTIONS(943), - [anon_sym_isize] = ACTIONS(943), - [anon_sym_usize] = ACTIONS(943), - [anon_sym_f32] = ACTIONS(943), - [anon_sym_f64] = ACTIONS(943), - [anon_sym_c_char] = ACTIONS(943), - [anon_sym_c_schar] = ACTIONS(943), - [anon_sym_c_uchar] = ACTIONS(943), - [anon_sym_c_short] = ACTIONS(943), - [anon_sym_c_ushort] = ACTIONS(943), - [anon_sym_c_int] = ACTIONS(943), - [anon_sym_c_uint] = ACTIONS(943), - [anon_sym_c_long] = ACTIONS(943), - [anon_sym_c_ulong] = ACTIONS(943), - [anon_sym_c_longlong] = ACTIONS(943), - [anon_sym_c_ulonglong] = ACTIONS(943), - [anon_sym_c_float] = ACTIONS(943), - [anon_sym_c_double] = ACTIONS(943), - [anon_sym_c_longdouble] = ACTIONS(943), - [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_return] = ACTIONS(943), - [anon_sym_yield] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_defer] = ACTIONS(943), - [anon_sym_errdefer] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_else] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [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_PLUS] = ACTIONS(1155), - [anon_sym_SLASH] = ACTIONS(1155), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_try] = ACTIONS(943), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(993), + [anon_sym_anyopaque] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_int] = ACTIONS(993), + [anon_sym_float] = ACTIONS(993), + [anon_sym_range] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_c_char] = ACTIONS(993), + [anon_sym_c_schar] = ACTIONS(993), + [anon_sym_c_uchar] = ACTIONS(993), + [anon_sym_c_short] = ACTIONS(993), + [anon_sym_c_ushort] = ACTIONS(993), + [anon_sym_c_int] = ACTIONS(993), + [anon_sym_c_uint] = ACTIONS(993), + [anon_sym_c_long] = ACTIONS(993), + [anon_sym_c_ulong] = ACTIONS(993), + [anon_sym_c_longlong] = ACTIONS(993), + [anon_sym_c_ulonglong] = ACTIONS(993), + [anon_sym_c_float] = ACTIONS(993), + [anon_sym_c_double] = ACTIONS(993), + [anon_sym_c_longdouble] = ACTIONS(993), + [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_return] = ACTIONS(993), + [anon_sym_yield] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_defer] = ACTIONS(993), + [anon_sym_errdefer] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_match] = ACTIONS(993), + [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_PLUS] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_try] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [sym_none] = ACTIONS(943), - [sym_undefined] = ACTIONS(943), - [sym_sink] = ACTIONS(943), - [sym_integer] = ACTIONS(943), - [sym_float] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_multiline_string] = ACTIONS(941), - [sym_character] = ACTIONS(941), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [sym_none] = ACTIONS(993), + [sym_undefined] = ACTIONS(993), + [sym_sink] = ACTIONS(993), + [sym_integer] = ACTIONS(993), + [sym_float] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [sym_multiline_string] = ACTIONS(991), + [sym_character] = ACTIONS(991), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1153), + [sym__newline] = ACTIONS(1049), }, [STATE(558)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = 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(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(925), + [sym_argument_list] = STATE(523), + [sym_identifier] = 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(915), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(927), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(927), - [anon_sym_anyopaque] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_int] = 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_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_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(1442), - [anon_sym_catch] = ACTIONS(1444), - [anon_sym_or] = ACTIONS(1446), - [anon_sym_and] = ACTIONS(1448), - [anon_sym_EQ_EQ] = ACTIONS(1450), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_LT_EQ] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_try] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(1035), + [anon_sym_anyopaque] = ACTIONS(1035), + [anon_sym_bool] = ACTIONS(1035), + [anon_sym_int] = 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_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_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_PLUS] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [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), + [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(925), + [sym__newline] = ACTIONS(1033), }, [STATE(559)] = { - [sym_type] = STATE(2060), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(842), - [anon_sym_COLON_COLON] = ACTIONS(1436), - [anon_sym_func] = ACTIONS(847), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_void] = ACTIONS(866), - [anon_sym_anyopaque] = ACTIONS(866), - [anon_sym_bool] = ACTIONS(866), - [anon_sym_int] = ACTIONS(866), - [anon_sym_float] = ACTIONS(866), - [anon_sym_range] = ACTIONS(866), - [anon_sym_i8] = ACTIONS(866), - [anon_sym_i16] = ACTIONS(866), - [anon_sym_i32] = ACTIONS(866), - [anon_sym_i64] = ACTIONS(866), - [anon_sym_u8] = ACTIONS(866), - [anon_sym_u16] = ACTIONS(866), - [anon_sym_u32] = ACTIONS(866), - [anon_sym_u64] = ACTIONS(866), - [anon_sym_isize] = ACTIONS(866), - [anon_sym_usize] = ACTIONS(866), - [anon_sym_f32] = ACTIONS(866), - [anon_sym_f64] = ACTIONS(866), - [anon_sym_c_char] = ACTIONS(866), - [anon_sym_c_schar] = ACTIONS(866), - [anon_sym_c_uchar] = ACTIONS(866), - [anon_sym_c_short] = ACTIONS(866), - [anon_sym_c_ushort] = ACTIONS(866), - [anon_sym_c_int] = ACTIONS(866), - [anon_sym_c_uint] = ACTIONS(866), - [anon_sym_c_long] = ACTIONS(866), - [anon_sym_c_ulong] = ACTIONS(866), - [anon_sym_c_longlong] = ACTIONS(866), - [anon_sym_c_ulonglong] = ACTIONS(866), - [anon_sym_c_float] = ACTIONS(866), - [anon_sym_c_double] = ACTIONS(866), - [anon_sym_c_longdouble] = ACTIONS(866), - [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_else] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_AMP] = ACTIONS(855), - [anon_sym_try] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(855), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [sym_none] = ACTIONS(850), - [sym_undefined] = ACTIONS(850), - [sym_sink] = ACTIONS(850), - [sym_integer] = ACTIONS(850), - [sym_float] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [sym_multiline_string] = ACTIONS(855), - [sym_character] = ACTIONS(855), + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(993), + [anon_sym_func] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(993), + [anon_sym_anyopaque] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_int] = ACTIONS(993), + [anon_sym_float] = ACTIONS(993), + [anon_sym_range] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_c_char] = ACTIONS(993), + [anon_sym_c_schar] = ACTIONS(993), + [anon_sym_c_uchar] = ACTIONS(993), + [anon_sym_c_short] = ACTIONS(993), + [anon_sym_c_ushort] = ACTIONS(993), + [anon_sym_c_int] = ACTIONS(993), + [anon_sym_c_uint] = ACTIONS(993), + [anon_sym_c_long] = ACTIONS(993), + [anon_sym_c_ulong] = ACTIONS(993), + [anon_sym_c_longlong] = ACTIONS(993), + [anon_sym_c_ulonglong] = ACTIONS(993), + [anon_sym_c_float] = ACTIONS(993), + [anon_sym_c_double] = ACTIONS(993), + [anon_sym_c_longdouble] = ACTIONS(993), + [anon_sym_PLUS_EQ] = ACTIONS(991), + [anon_sym_DASH_EQ] = ACTIONS(991), + [anon_sym_STAR_EQ] = ACTIONS(991), + [anon_sym_SLASH_EQ] = ACTIONS(991), + [anon_sym_return] = ACTIONS(993), + [anon_sym_yield] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_defer] = ACTIONS(993), + [anon_sym_errdefer] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_match] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(991), + [anon_sym_orelse] = ACTIONS(993), + [anon_sym_catch] = ACTIONS(993), + [anon_sym_or] = ACTIONS(993), + [anon_sym_and] = ACTIONS(993), + [anon_sym_EQ_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_LT_EQ] = ACTIONS(991), + [anon_sym_GT] = ACTIONS(993), + [anon_sym_GT_EQ] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_try] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [sym_none] = ACTIONS(993), + [sym_undefined] = ACTIONS(993), + [sym_sink] = ACTIONS(993), + [sym_integer] = ACTIONS(993), + [sym_float] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [sym_multiline_string] = ACTIONS(991), + [sym_character] = ACTIONS(991), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), + [sym__newline] = ACTIONS(991), }, [STATE(560)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = 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(923), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(1428), + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(1051), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(1430), - [anon_sym_anyopaque] = ACTIONS(1430), - [anon_sym_bool] = ACTIONS(1430), - [anon_sym_int] = 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_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_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(1448), - [anon_sym_EQ_EQ] = ACTIONS(1450), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_LT_EQ] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(993), + [anon_sym_anyopaque] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_int] = ACTIONS(993), + [anon_sym_float] = ACTIONS(993), + [anon_sym_range] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_c_char] = ACTIONS(993), + [anon_sym_c_schar] = ACTIONS(993), + [anon_sym_c_uchar] = ACTIONS(993), + [anon_sym_c_short] = ACTIONS(993), + [anon_sym_c_ushort] = ACTIONS(993), + [anon_sym_c_int] = ACTIONS(993), + [anon_sym_c_uint] = ACTIONS(993), + [anon_sym_c_long] = ACTIONS(993), + [anon_sym_c_ulong] = ACTIONS(993), + [anon_sym_c_longlong] = ACTIONS(993), + [anon_sym_c_ulonglong] = ACTIONS(993), + [anon_sym_c_float] = ACTIONS(993), + [anon_sym_c_double] = ACTIONS(993), + [anon_sym_c_longdouble] = ACTIONS(993), + [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_return] = ACTIONS(993), + [anon_sym_yield] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_defer] = ACTIONS(993), + [anon_sym_errdefer] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_match] = ACTIONS(993), + [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_PLUS] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_try] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [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), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [sym_none] = ACTIONS(993), + [sym_undefined] = ACTIONS(993), + [sym_sink] = ACTIONS(993), + [sym_integer] = ACTIONS(993), + [sym_float] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [sym_multiline_string] = ACTIONS(991), + [sym_character] = ACTIONS(991), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1428), + [sym__newline] = ACTIONS(1049), }, [STATE(561)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = 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(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(927), - [anon_sym_anyopaque] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_int] = 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_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_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(1446), - [anon_sym_and] = ACTIONS(1448), - [anon_sym_EQ_EQ] = ACTIONS(1450), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_LT_EQ] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_try] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [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_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1147), + [sym_labeled_block] = STATE(1147), + [sym_if_statement] = STATE(1147), + [sym_while_statement] = STATE(1147), + [sym_for_statement] = STATE(1147), + [sym_match_statement] = STATE(1147), + [sym__value] = STATE(1147), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1419), + [sym_identifier] = ACTIONS(882), + [anon_sym_import] = ACTIONS(1421), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(925), + [sym__newline] = ACTIONS(1419), }, [STATE(562)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = 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(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(925), + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(929), + [anon_sym_func] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_struct] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(927), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(927), - [anon_sym_anyopaque] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_int] = 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_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_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_PLUS] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_try] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(929), + [anon_sym_anyopaque] = ACTIONS(929), + [anon_sym_bool] = ACTIONS(929), + [anon_sym_int] = ACTIONS(929), + [anon_sym_float] = ACTIONS(929), + [anon_sym_range] = ACTIONS(929), + [anon_sym_i8] = ACTIONS(929), + [anon_sym_i16] = ACTIONS(929), + [anon_sym_i32] = ACTIONS(929), + [anon_sym_i64] = ACTIONS(929), + [anon_sym_u8] = ACTIONS(929), + [anon_sym_u16] = ACTIONS(929), + [anon_sym_u32] = ACTIONS(929), + [anon_sym_u64] = ACTIONS(929), + [anon_sym_isize] = ACTIONS(929), + [anon_sym_usize] = ACTIONS(929), + [anon_sym_f32] = ACTIONS(929), + [anon_sym_f64] = ACTIONS(929), + [anon_sym_c_char] = ACTIONS(929), + [anon_sym_c_schar] = ACTIONS(929), + [anon_sym_c_uchar] = ACTIONS(929), + [anon_sym_c_short] = ACTIONS(929), + [anon_sym_c_ushort] = ACTIONS(929), + [anon_sym_c_int] = ACTIONS(929), + [anon_sym_c_uint] = ACTIONS(929), + [anon_sym_c_long] = ACTIONS(929), + [anon_sym_c_ulong] = ACTIONS(929), + [anon_sym_c_longlong] = ACTIONS(929), + [anon_sym_c_ulonglong] = ACTIONS(929), + [anon_sym_c_float] = ACTIONS(929), + [anon_sym_c_double] = ACTIONS(929), + [anon_sym_c_longdouble] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(927), + [anon_sym_DASH_EQ] = ACTIONS(927), + [anon_sym_STAR_EQ] = ACTIONS(927), + [anon_sym_SLASH_EQ] = ACTIONS(927), + [anon_sym_return] = ACTIONS(929), + [anon_sym_yield] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_defer] = ACTIONS(929), + [anon_sym_errdefer] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(927), + [anon_sym_orelse] = ACTIONS(929), + [anon_sym_catch] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [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), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [sym_none] = ACTIONS(929), + [sym_undefined] = ACTIONS(929), + [sym_sink] = ACTIONS(929), + [sym_integer] = ACTIONS(929), + [sym_float] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym_multiline_string] = ACTIONS(927), + [sym_character] = ACTIONS(927), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(925), + [sym__newline] = ACTIONS(927), }, [STATE(563)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = 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(923), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(1428), + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(1448), + [anon_sym_func] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1452), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(1430), - [anon_sym_anyopaque] = ACTIONS(1430), - [anon_sym_bool] = ACTIONS(1430), - [anon_sym_int] = 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_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_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(1450), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_LT_EQ] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(1448), + [anon_sym_anyopaque] = ACTIONS(1448), + [anon_sym_bool] = ACTIONS(1448), + [anon_sym_int] = ACTIONS(1448), + [anon_sym_float] = ACTIONS(1448), + [anon_sym_range] = ACTIONS(1448), + [anon_sym_i8] = ACTIONS(1448), + [anon_sym_i16] = ACTIONS(1448), + [anon_sym_i32] = ACTIONS(1448), + [anon_sym_i64] = ACTIONS(1448), + [anon_sym_u8] = ACTIONS(1448), + [anon_sym_u16] = ACTIONS(1448), + [anon_sym_u32] = ACTIONS(1448), + [anon_sym_u64] = ACTIONS(1448), + [anon_sym_isize] = ACTIONS(1448), + [anon_sym_usize] = ACTIONS(1448), + [anon_sym_f32] = ACTIONS(1448), + [anon_sym_f64] = ACTIONS(1448), + [anon_sym_c_char] = ACTIONS(1448), + [anon_sym_c_schar] = ACTIONS(1448), + [anon_sym_c_uchar] = ACTIONS(1448), + [anon_sym_c_short] = ACTIONS(1448), + [anon_sym_c_ushort] = ACTIONS(1448), + [anon_sym_c_int] = ACTIONS(1448), + [anon_sym_c_uint] = ACTIONS(1448), + [anon_sym_c_long] = ACTIONS(1448), + [anon_sym_c_ulong] = ACTIONS(1448), + [anon_sym_c_longlong] = ACTIONS(1448), + [anon_sym_c_ulonglong] = ACTIONS(1448), + [anon_sym_c_float] = ACTIONS(1448), + [anon_sym_c_double] = ACTIONS(1448), + [anon_sym_c_longdouble] = ACTIONS(1448), + [anon_sym_PLUS_EQ] = ACTIONS(1454), + [anon_sym_DASH_EQ] = ACTIONS(1454), + [anon_sym_STAR_EQ] = ACTIONS(1454), + [anon_sym_SLASH_EQ] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_yield] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_defer] = ACTIONS(1448), + [anon_sym_errdefer] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_else] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_match] = ACTIONS(1448), + [anon_sym_DOT_DOT] = ACTIONS(1456), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1458), + [anon_sym_orelse] = ACTIONS(1460), + [anon_sym_catch] = ACTIONS(1462), + [anon_sym_or] = ACTIONS(1464), + [anon_sym_and] = ACTIONS(1466), + [anon_sym_EQ_EQ] = ACTIONS(1468), + [anon_sym_BANG_EQ] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_EQ] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_GT_EQ] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_try] = ACTIONS(1448), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [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), + [anon_sym_true] = ACTIONS(1448), + [anon_sym_false] = ACTIONS(1448), + [sym_none] = ACTIONS(1448), + [sym_undefined] = ACTIONS(1448), + [sym_sink] = ACTIONS(1448), + [sym_integer] = ACTIONS(1448), + [sym_float] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_multiline_string] = ACTIONS(1452), + [sym_character] = ACTIONS(1452), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1428), + [sym__newline] = ACTIONS(1452), }, [STATE(564)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = ACTIONS(943), - [anon_sym_func] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(943), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(941), + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(929), + [anon_sym_func] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_struct] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(927), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(943), - [anon_sym_anyopaque] = ACTIONS(943), - [anon_sym_bool] = ACTIONS(943), - [anon_sym_int] = ACTIONS(943), - [anon_sym_float] = ACTIONS(943), - [anon_sym_range] = ACTIONS(943), - [anon_sym_i8] = ACTIONS(943), - [anon_sym_i16] = ACTIONS(943), - [anon_sym_i32] = ACTIONS(943), - [anon_sym_i64] = ACTIONS(943), - [anon_sym_u8] = ACTIONS(943), - [anon_sym_u16] = ACTIONS(943), - [anon_sym_u32] = ACTIONS(943), - [anon_sym_u64] = ACTIONS(943), - [anon_sym_isize] = ACTIONS(943), - [anon_sym_usize] = ACTIONS(943), - [anon_sym_f32] = ACTIONS(943), - [anon_sym_f64] = ACTIONS(943), - [anon_sym_c_char] = ACTIONS(943), - [anon_sym_c_schar] = ACTIONS(943), - [anon_sym_c_uchar] = ACTIONS(943), - [anon_sym_c_short] = ACTIONS(943), - [anon_sym_c_ushort] = ACTIONS(943), - [anon_sym_c_int] = ACTIONS(943), - [anon_sym_c_uint] = ACTIONS(943), - [anon_sym_c_long] = ACTIONS(943), - [anon_sym_c_ulong] = ACTIONS(943), - [anon_sym_c_longlong] = ACTIONS(943), - [anon_sym_c_ulonglong] = ACTIONS(943), - [anon_sym_c_float] = ACTIONS(943), - [anon_sym_c_double] = ACTIONS(943), - [anon_sym_c_longdouble] = ACTIONS(943), - [anon_sym_PLUS_EQ] = ACTIONS(941), - [anon_sym_DASH_EQ] = ACTIONS(941), - [anon_sym_STAR_EQ] = ACTIONS(941), - [anon_sym_SLASH_EQ] = ACTIONS(941), - [anon_sym_return] = ACTIONS(943), - [anon_sym_yield] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_defer] = ACTIONS(943), - [anon_sym_errdefer] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_else] = ACTIONS(943), - [anon_sym_while] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(941), - [anon_sym_orelse] = ACTIONS(1442), - [anon_sym_catch] = ACTIONS(1444), - [anon_sym_or] = ACTIONS(1446), - [anon_sym_and] = ACTIONS(1448), - [anon_sym_EQ_EQ] = ACTIONS(1450), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_LT_EQ] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_try] = ACTIONS(943), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(929), + [anon_sym_anyopaque] = ACTIONS(929), + [anon_sym_bool] = ACTIONS(929), + [anon_sym_int] = ACTIONS(929), + [anon_sym_float] = ACTIONS(929), + [anon_sym_range] = ACTIONS(929), + [anon_sym_i8] = ACTIONS(929), + [anon_sym_i16] = ACTIONS(929), + [anon_sym_i32] = ACTIONS(929), + [anon_sym_i64] = ACTIONS(929), + [anon_sym_u8] = ACTIONS(929), + [anon_sym_u16] = ACTIONS(929), + [anon_sym_u32] = ACTIONS(929), + [anon_sym_u64] = ACTIONS(929), + [anon_sym_isize] = ACTIONS(929), + [anon_sym_usize] = ACTIONS(929), + [anon_sym_f32] = ACTIONS(929), + [anon_sym_f64] = ACTIONS(929), + [anon_sym_c_char] = ACTIONS(929), + [anon_sym_c_schar] = ACTIONS(929), + [anon_sym_c_uchar] = ACTIONS(929), + [anon_sym_c_short] = ACTIONS(929), + [anon_sym_c_ushort] = ACTIONS(929), + [anon_sym_c_int] = ACTIONS(929), + [anon_sym_c_uint] = ACTIONS(929), + [anon_sym_c_long] = ACTIONS(929), + [anon_sym_c_ulong] = ACTIONS(929), + [anon_sym_c_longlong] = ACTIONS(929), + [anon_sym_c_ulonglong] = ACTIONS(929), + [anon_sym_c_float] = ACTIONS(929), + [anon_sym_c_double] = ACTIONS(929), + [anon_sym_c_longdouble] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(927), + [anon_sym_DASH_EQ] = ACTIONS(927), + [anon_sym_STAR_EQ] = ACTIONS(927), + [anon_sym_SLASH_EQ] = ACTIONS(927), + [anon_sym_return] = ACTIONS(929), + [anon_sym_yield] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_defer] = ACTIONS(929), + [anon_sym_errdefer] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(927), + [anon_sym_orelse] = ACTIONS(1460), + [anon_sym_catch] = ACTIONS(1462), + [anon_sym_or] = ACTIONS(1464), + [anon_sym_and] = ACTIONS(1466), + [anon_sym_EQ_EQ] = ACTIONS(1468), + [anon_sym_BANG_EQ] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_EQ] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_GT_EQ] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [sym_none] = ACTIONS(943), - [sym_undefined] = ACTIONS(943), - [sym_sink] = ACTIONS(943), - [sym_integer] = ACTIONS(943), - [sym_float] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_multiline_string] = ACTIONS(941), - [sym_character] = ACTIONS(941), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [sym_none] = ACTIONS(929), + [sym_undefined] = ACTIONS(929), + [sym_sink] = ACTIONS(929), + [sym_integer] = ACTIONS(929), + [sym_float] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym_multiline_string] = ACTIONS(927), + [sym_character] = ACTIONS(927), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(941), + [sym__newline] = ACTIONS(927), }, [STATE(565)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = ACTIONS(943), - [anon_sym_func] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(943), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(941), + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(929), + [anon_sym_func] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_struct] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(927), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(943), - [anon_sym_anyopaque] = ACTIONS(943), - [anon_sym_bool] = ACTIONS(943), - [anon_sym_int] = ACTIONS(943), - [anon_sym_float] = ACTIONS(943), - [anon_sym_range] = ACTIONS(943), - [anon_sym_i8] = ACTIONS(943), - [anon_sym_i16] = ACTIONS(943), - [anon_sym_i32] = ACTIONS(943), - [anon_sym_i64] = ACTIONS(943), - [anon_sym_u8] = ACTIONS(943), - [anon_sym_u16] = ACTIONS(943), - [anon_sym_u32] = ACTIONS(943), - [anon_sym_u64] = ACTIONS(943), - [anon_sym_isize] = ACTIONS(943), - [anon_sym_usize] = ACTIONS(943), - [anon_sym_f32] = ACTIONS(943), - [anon_sym_f64] = ACTIONS(943), - [anon_sym_c_char] = ACTIONS(943), - [anon_sym_c_schar] = ACTIONS(943), - [anon_sym_c_uchar] = ACTIONS(943), - [anon_sym_c_short] = ACTIONS(943), - [anon_sym_c_ushort] = ACTIONS(943), - [anon_sym_c_int] = ACTIONS(943), - [anon_sym_c_uint] = ACTIONS(943), - [anon_sym_c_long] = ACTIONS(943), - [anon_sym_c_ulong] = ACTIONS(943), - [anon_sym_c_longlong] = ACTIONS(943), - [anon_sym_c_ulonglong] = ACTIONS(943), - [anon_sym_c_float] = ACTIONS(943), - [anon_sym_c_double] = ACTIONS(943), - [anon_sym_c_longdouble] = ACTIONS(943), - [anon_sym_PLUS_EQ] = ACTIONS(941), - [anon_sym_DASH_EQ] = ACTIONS(941), - [anon_sym_STAR_EQ] = ACTIONS(941), - [anon_sym_SLASH_EQ] = ACTIONS(941), - [anon_sym_return] = ACTIONS(943), - [anon_sym_yield] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_defer] = ACTIONS(943), - [anon_sym_errdefer] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_else] = ACTIONS(943), - [anon_sym_while] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(941), - [anon_sym_orelse] = ACTIONS(943), - [anon_sym_catch] = ACTIONS(943), - [anon_sym_or] = ACTIONS(1446), - [anon_sym_and] = ACTIONS(1448), - [anon_sym_EQ_EQ] = ACTIONS(1450), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_LT_EQ] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_try] = ACTIONS(943), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(929), + [anon_sym_anyopaque] = ACTIONS(929), + [anon_sym_bool] = ACTIONS(929), + [anon_sym_int] = ACTIONS(929), + [anon_sym_float] = ACTIONS(929), + [anon_sym_range] = ACTIONS(929), + [anon_sym_i8] = ACTIONS(929), + [anon_sym_i16] = ACTIONS(929), + [anon_sym_i32] = ACTIONS(929), + [anon_sym_i64] = ACTIONS(929), + [anon_sym_u8] = ACTIONS(929), + [anon_sym_u16] = ACTIONS(929), + [anon_sym_u32] = ACTIONS(929), + [anon_sym_u64] = ACTIONS(929), + [anon_sym_isize] = ACTIONS(929), + [anon_sym_usize] = ACTIONS(929), + [anon_sym_f32] = ACTIONS(929), + [anon_sym_f64] = ACTIONS(929), + [anon_sym_c_char] = ACTIONS(929), + [anon_sym_c_schar] = ACTIONS(929), + [anon_sym_c_uchar] = ACTIONS(929), + [anon_sym_c_short] = ACTIONS(929), + [anon_sym_c_ushort] = ACTIONS(929), + [anon_sym_c_int] = ACTIONS(929), + [anon_sym_c_uint] = ACTIONS(929), + [anon_sym_c_long] = ACTIONS(929), + [anon_sym_c_ulong] = ACTIONS(929), + [anon_sym_c_longlong] = ACTIONS(929), + [anon_sym_c_ulonglong] = ACTIONS(929), + [anon_sym_c_float] = ACTIONS(929), + [anon_sym_c_double] = ACTIONS(929), + [anon_sym_c_longdouble] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(927), + [anon_sym_DASH_EQ] = ACTIONS(927), + [anon_sym_STAR_EQ] = ACTIONS(927), + [anon_sym_SLASH_EQ] = ACTIONS(927), + [anon_sym_return] = ACTIONS(929), + [anon_sym_yield] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_defer] = ACTIONS(929), + [anon_sym_errdefer] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(927), + [anon_sym_orelse] = ACTIONS(929), + [anon_sym_catch] = ACTIONS(929), + [anon_sym_or] = ACTIONS(1464), + [anon_sym_and] = ACTIONS(1466), + [anon_sym_EQ_EQ] = ACTIONS(1468), + [anon_sym_BANG_EQ] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_EQ] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_GT_EQ] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [sym_none] = ACTIONS(943), - [sym_undefined] = ACTIONS(943), - [sym_sink] = ACTIONS(943), - [sym_integer] = ACTIONS(943), - [sym_float] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_multiline_string] = ACTIONS(941), - [sym_character] = ACTIONS(941), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [sym_none] = ACTIONS(929), + [sym_undefined] = ACTIONS(929), + [sym_sink] = ACTIONS(929), + [sym_integer] = ACTIONS(929), + [sym_float] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym_multiline_string] = ACTIONS(927), + [sym_character] = ACTIONS(927), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(941), + [sym__newline] = ACTIONS(927), }, [STATE(566)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = 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(923), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(1432), + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(1440), + [anon_sym_func] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_EQ] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1438), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(1434), - [anon_sym_anyopaque] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_int] = 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_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_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(1448), - [anon_sym_EQ_EQ] = ACTIONS(1450), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_LT_EQ] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_try] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_anyopaque] = ACTIONS(1440), + [anon_sym_bool] = ACTIONS(1440), + [anon_sym_int] = ACTIONS(1440), + [anon_sym_float] = ACTIONS(1440), + [anon_sym_range] = ACTIONS(1440), + [anon_sym_i8] = ACTIONS(1440), + [anon_sym_i16] = ACTIONS(1440), + [anon_sym_i32] = ACTIONS(1440), + [anon_sym_i64] = ACTIONS(1440), + [anon_sym_u8] = ACTIONS(1440), + [anon_sym_u16] = ACTIONS(1440), + [anon_sym_u32] = ACTIONS(1440), + [anon_sym_u64] = ACTIONS(1440), + [anon_sym_isize] = ACTIONS(1440), + [anon_sym_usize] = ACTIONS(1440), + [anon_sym_f32] = ACTIONS(1440), + [anon_sym_f64] = ACTIONS(1440), + [anon_sym_c_char] = ACTIONS(1440), + [anon_sym_c_schar] = ACTIONS(1440), + [anon_sym_c_uchar] = ACTIONS(1440), + [anon_sym_c_short] = ACTIONS(1440), + [anon_sym_c_ushort] = ACTIONS(1440), + [anon_sym_c_int] = ACTIONS(1440), + [anon_sym_c_uint] = ACTIONS(1440), + [anon_sym_c_long] = ACTIONS(1440), + [anon_sym_c_ulong] = ACTIONS(1440), + [anon_sym_c_longlong] = ACTIONS(1440), + [anon_sym_c_ulonglong] = ACTIONS(1440), + [anon_sym_c_float] = ACTIONS(1440), + [anon_sym_c_double] = ACTIONS(1440), + [anon_sym_c_longdouble] = ACTIONS(1440), + [anon_sym_PLUS_EQ] = ACTIONS(1438), + [anon_sym_DASH_EQ] = ACTIONS(1438), + [anon_sym_STAR_EQ] = ACTIONS(1438), + [anon_sym_SLASH_EQ] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_yield] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_defer] = ACTIONS(1440), + [anon_sym_errdefer] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_else] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_DOT_DOT] = ACTIONS(1440), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1438), + [anon_sym_orelse] = ACTIONS(1440), + [anon_sym_catch] = ACTIONS(1440), + [anon_sym_or] = ACTIONS(1440), + [anon_sym_and] = ACTIONS(1466), + [anon_sym_EQ_EQ] = ACTIONS(1468), + [anon_sym_BANG_EQ] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_EQ] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_GT_EQ] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_try] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [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), + [anon_sym_true] = ACTIONS(1440), + [anon_sym_false] = ACTIONS(1440), + [sym_none] = ACTIONS(1440), + [sym_undefined] = ACTIONS(1440), + [sym_sink] = ACTIONS(1440), + [sym_integer] = ACTIONS(1440), + [sym_float] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_multiline_string] = ACTIONS(1438), + [sym_character] = ACTIONS(1438), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1432), + [sym__newline] = ACTIONS(1438), }, [STATE(567)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = ACTIONS(1454), - [anon_sym_func] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_EQ] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(1458), + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(1440), + [anon_sym_func] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_EQ] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1438), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(1454), - [anon_sym_anyopaque] = ACTIONS(1454), - [anon_sym_bool] = ACTIONS(1454), - [anon_sym_int] = 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(1460), - [anon_sym_DASH_EQ] = ACTIONS(1460), - [anon_sym_STAR_EQ] = ACTIONS(1460), - [anon_sym_SLASH_EQ] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_yield] = ACTIONS(1454), - [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_for] = ACTIONS(1454), - [anon_sym_match] = ACTIONS(1454), - [anon_sym_DOT_DOT] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1464), - [anon_sym_orelse] = ACTIONS(1442), - [anon_sym_catch] = ACTIONS(1444), - [anon_sym_or] = ACTIONS(1446), - [anon_sym_and] = ACTIONS(1448), - [anon_sym_EQ_EQ] = ACTIONS(1450), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_LT_EQ] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_try] = ACTIONS(1454), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_anyopaque] = ACTIONS(1440), + [anon_sym_bool] = ACTIONS(1440), + [anon_sym_int] = ACTIONS(1440), + [anon_sym_float] = ACTIONS(1440), + [anon_sym_range] = ACTIONS(1440), + [anon_sym_i8] = ACTIONS(1440), + [anon_sym_i16] = ACTIONS(1440), + [anon_sym_i32] = ACTIONS(1440), + [anon_sym_i64] = ACTIONS(1440), + [anon_sym_u8] = ACTIONS(1440), + [anon_sym_u16] = ACTIONS(1440), + [anon_sym_u32] = ACTIONS(1440), + [anon_sym_u64] = ACTIONS(1440), + [anon_sym_isize] = ACTIONS(1440), + [anon_sym_usize] = ACTIONS(1440), + [anon_sym_f32] = ACTIONS(1440), + [anon_sym_f64] = ACTIONS(1440), + [anon_sym_c_char] = ACTIONS(1440), + [anon_sym_c_schar] = ACTIONS(1440), + [anon_sym_c_uchar] = ACTIONS(1440), + [anon_sym_c_short] = ACTIONS(1440), + [anon_sym_c_ushort] = ACTIONS(1440), + [anon_sym_c_int] = ACTIONS(1440), + [anon_sym_c_uint] = ACTIONS(1440), + [anon_sym_c_long] = ACTIONS(1440), + [anon_sym_c_ulong] = ACTIONS(1440), + [anon_sym_c_longlong] = ACTIONS(1440), + [anon_sym_c_ulonglong] = ACTIONS(1440), + [anon_sym_c_float] = ACTIONS(1440), + [anon_sym_c_double] = ACTIONS(1440), + [anon_sym_c_longdouble] = ACTIONS(1440), + [anon_sym_PLUS_EQ] = ACTIONS(1438), + [anon_sym_DASH_EQ] = ACTIONS(1438), + [anon_sym_STAR_EQ] = ACTIONS(1438), + [anon_sym_SLASH_EQ] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_yield] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_defer] = ACTIONS(1440), + [anon_sym_errdefer] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_else] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_DOT_DOT] = ACTIONS(1440), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1438), + [anon_sym_orelse] = ACTIONS(1440), + [anon_sym_catch] = ACTIONS(1440), + [anon_sym_or] = ACTIONS(1440), + [anon_sym_and] = ACTIONS(1440), + [anon_sym_EQ_EQ] = ACTIONS(1468), + [anon_sym_BANG_EQ] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_EQ] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_GT_EQ] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_try] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [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(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_multiline_string] = ACTIONS(1458), - [sym_character] = ACTIONS(1458), + [anon_sym_true] = ACTIONS(1440), + [anon_sym_false] = ACTIONS(1440), + [sym_none] = ACTIONS(1440), + [sym_undefined] = ACTIONS(1440), + [sym_sink] = ACTIONS(1440), + [sym_integer] = ACTIONS(1440), + [sym_float] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_multiline_string] = ACTIONS(1438), + [sym_character] = ACTIONS(1438), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1458), + [sym__newline] = ACTIONS(1438), }, [STATE(568)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = ACTIONS(983), - [anon_sym_func] = ACTIONS(927), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_EQ] = ACTIONS(983), - [anon_sym_struct] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(925), + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(929), + [anon_sym_func] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_struct] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(927), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(927), - [anon_sym_anyopaque] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_int] = 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(981), - [anon_sym_DASH_EQ] = ACTIONS(981), - [anon_sym_STAR_EQ] = ACTIONS(981), - [anon_sym_SLASH_EQ] = ACTIONS(981), - [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(983), - [anon_sym_while] = ACTIONS(927), - [anon_sym_for] = ACTIONS(927), - [anon_sym_match] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(981), - [anon_sym_orelse] = ACTIONS(983), - [anon_sym_catch] = ACTIONS(983), - [anon_sym_or] = ACTIONS(983), - [anon_sym_and] = ACTIONS(983), - [anon_sym_EQ_EQ] = ACTIONS(981), - [anon_sym_BANG_EQ] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_LT_EQ] = ACTIONS(981), - [anon_sym_GT] = ACTIONS(983), - [anon_sym_GT_EQ] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_try] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(929), + [anon_sym_anyopaque] = ACTIONS(929), + [anon_sym_bool] = ACTIONS(929), + [anon_sym_int] = ACTIONS(929), + [anon_sym_float] = ACTIONS(929), + [anon_sym_range] = ACTIONS(929), + [anon_sym_i8] = ACTIONS(929), + [anon_sym_i16] = ACTIONS(929), + [anon_sym_i32] = ACTIONS(929), + [anon_sym_i64] = ACTIONS(929), + [anon_sym_u8] = ACTIONS(929), + [anon_sym_u16] = ACTIONS(929), + [anon_sym_u32] = ACTIONS(929), + [anon_sym_u64] = ACTIONS(929), + [anon_sym_isize] = ACTIONS(929), + [anon_sym_usize] = ACTIONS(929), + [anon_sym_f32] = ACTIONS(929), + [anon_sym_f64] = ACTIONS(929), + [anon_sym_c_char] = ACTIONS(929), + [anon_sym_c_schar] = ACTIONS(929), + [anon_sym_c_uchar] = ACTIONS(929), + [anon_sym_c_short] = ACTIONS(929), + [anon_sym_c_ushort] = ACTIONS(929), + [anon_sym_c_int] = ACTIONS(929), + [anon_sym_c_uint] = ACTIONS(929), + [anon_sym_c_long] = ACTIONS(929), + [anon_sym_c_ulong] = ACTIONS(929), + [anon_sym_c_longlong] = ACTIONS(929), + [anon_sym_c_ulonglong] = ACTIONS(929), + [anon_sym_c_float] = ACTIONS(929), + [anon_sym_c_double] = ACTIONS(929), + [anon_sym_c_longdouble] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(927), + [anon_sym_DASH_EQ] = ACTIONS(927), + [anon_sym_STAR_EQ] = ACTIONS(927), + [anon_sym_SLASH_EQ] = ACTIONS(927), + [anon_sym_return] = ACTIONS(929), + [anon_sym_yield] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_defer] = ACTIONS(929), + [anon_sym_errdefer] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(927), + [anon_sym_orelse] = ACTIONS(929), + [anon_sym_catch] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [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), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [sym_none] = ACTIONS(929), + [sym_undefined] = ACTIONS(929), + [sym_sink] = ACTIONS(929), + [sym_integer] = ACTIONS(929), + [sym_float] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym_multiline_string] = ACTIONS(927), + [sym_character] = ACTIONS(927), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(981), + [sym__newline] = ACTIONS(927), }, [STATE(569)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = 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(923), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(1432), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(1434), - [anon_sym_anyopaque] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_int] = 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_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_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(1450), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_LT_EQ] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_try] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [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_type] = STATE(2068), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(842), + [anon_sym_COLON_COLON] = ACTIONS(1442), + [anon_sym_func] = ACTIONS(847), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_struct] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_DOLLAR] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_void] = ACTIONS(868), + [anon_sym_anyopaque] = ACTIONS(868), + [anon_sym_bool] = ACTIONS(868), + [anon_sym_int] = ACTIONS(868), + [anon_sym_float] = ACTIONS(868), + [anon_sym_range] = ACTIONS(868), + [anon_sym_i8] = ACTIONS(868), + [anon_sym_i16] = ACTIONS(868), + [anon_sym_i32] = ACTIONS(868), + [anon_sym_i64] = ACTIONS(868), + [anon_sym_u8] = ACTIONS(868), + [anon_sym_u16] = ACTIONS(868), + [anon_sym_u32] = ACTIONS(868), + [anon_sym_u64] = ACTIONS(868), + [anon_sym_isize] = ACTIONS(868), + [anon_sym_usize] = ACTIONS(868), + [anon_sym_f32] = ACTIONS(868), + [anon_sym_f64] = ACTIONS(868), + [anon_sym_c_char] = ACTIONS(868), + [anon_sym_c_schar] = ACTIONS(868), + [anon_sym_c_uchar] = ACTIONS(868), + [anon_sym_c_short] = ACTIONS(868), + [anon_sym_c_ushort] = ACTIONS(868), + [anon_sym_c_int] = ACTIONS(868), + [anon_sym_c_uint] = ACTIONS(868), + [anon_sym_c_long] = ACTIONS(868), + [anon_sym_c_ulong] = ACTIONS(868), + [anon_sym_c_longlong] = ACTIONS(868), + [anon_sym_c_ulonglong] = ACTIONS(868), + [anon_sym_c_float] = ACTIONS(868), + [anon_sym_c_double] = ACTIONS(868), + [anon_sym_c_longdouble] = ACTIONS(868), + [anon_sym_PLUS_EQ] = ACTIONS(857), + [anon_sym_DASH_EQ] = ACTIONS(857), + [anon_sym_STAR_EQ] = ACTIONS(857), + [anon_sym_SLASH_EQ] = ACTIONS(857), + [anon_sym_else] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_try] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(852), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_true] = ACTIONS(852), + [anon_sym_false] = ACTIONS(852), + [sym_none] = ACTIONS(852), + [sym_undefined] = ACTIONS(852), + [sym_sink] = ACTIONS(852), + [sym_integer] = ACTIONS(852), + [sym_float] = ACTIONS(857), + [anon_sym_DQUOTE] = ACTIONS(857), + [sym_multiline_string] = ACTIONS(857), + [sym_character] = ACTIONS(857), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1432), + [sym__newline] = ACTIONS(857), }, [STATE(570)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = ACTIONS(943), - [anon_sym_func] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(943), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(941), + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(1035), + [anon_sym_func] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(1035), + [anon_sym_struct] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(943), - [anon_sym_anyopaque] = ACTIONS(943), - [anon_sym_bool] = ACTIONS(943), - [anon_sym_int] = ACTIONS(943), - [anon_sym_float] = ACTIONS(943), - [anon_sym_range] = ACTIONS(943), - [anon_sym_i8] = ACTIONS(943), - [anon_sym_i16] = ACTIONS(943), - [anon_sym_i32] = ACTIONS(943), - [anon_sym_i64] = ACTIONS(943), - [anon_sym_u8] = ACTIONS(943), - [anon_sym_u16] = ACTIONS(943), - [anon_sym_u32] = ACTIONS(943), - [anon_sym_u64] = ACTIONS(943), - [anon_sym_isize] = ACTIONS(943), - [anon_sym_usize] = ACTIONS(943), - [anon_sym_f32] = ACTIONS(943), - [anon_sym_f64] = ACTIONS(943), - [anon_sym_c_char] = ACTIONS(943), - [anon_sym_c_schar] = ACTIONS(943), - [anon_sym_c_uchar] = ACTIONS(943), - [anon_sym_c_short] = ACTIONS(943), - [anon_sym_c_ushort] = ACTIONS(943), - [anon_sym_c_int] = ACTIONS(943), - [anon_sym_c_uint] = ACTIONS(943), - [anon_sym_c_long] = ACTIONS(943), - [anon_sym_c_ulong] = ACTIONS(943), - [anon_sym_c_longlong] = ACTIONS(943), - [anon_sym_c_ulonglong] = ACTIONS(943), - [anon_sym_c_float] = ACTIONS(943), - [anon_sym_c_double] = ACTIONS(943), - [anon_sym_c_longdouble] = ACTIONS(943), - [anon_sym_PLUS_EQ] = ACTIONS(941), - [anon_sym_DASH_EQ] = ACTIONS(941), - [anon_sym_STAR_EQ] = ACTIONS(941), - [anon_sym_SLASH_EQ] = ACTIONS(941), - [anon_sym_return] = ACTIONS(943), - [anon_sym_yield] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_defer] = ACTIONS(943), - [anon_sym_errdefer] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_else] = ACTIONS(943), - [anon_sym_while] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(941), - [anon_sym_orelse] = ACTIONS(943), - [anon_sym_catch] = ACTIONS(943), - [anon_sym_or] = ACTIONS(943), - [anon_sym_and] = ACTIONS(943), - [anon_sym_EQ_EQ] = ACTIONS(941), - [anon_sym_BANG_EQ] = ACTIONS(941), - [anon_sym_LT] = ACTIONS(943), - [anon_sym_LT_EQ] = ACTIONS(941), - [anon_sym_GT] = ACTIONS(943), - [anon_sym_GT_EQ] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_try] = ACTIONS(943), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(929), + [anon_sym_anyopaque] = ACTIONS(929), + [anon_sym_bool] = ACTIONS(929), + [anon_sym_int] = ACTIONS(929), + [anon_sym_float] = ACTIONS(929), + [anon_sym_range] = ACTIONS(929), + [anon_sym_i8] = ACTIONS(929), + [anon_sym_i16] = ACTIONS(929), + [anon_sym_i32] = ACTIONS(929), + [anon_sym_i64] = ACTIONS(929), + [anon_sym_u8] = ACTIONS(929), + [anon_sym_u16] = ACTIONS(929), + [anon_sym_u32] = ACTIONS(929), + [anon_sym_u64] = ACTIONS(929), + [anon_sym_isize] = ACTIONS(929), + [anon_sym_usize] = ACTIONS(929), + [anon_sym_f32] = ACTIONS(929), + [anon_sym_f64] = ACTIONS(929), + [anon_sym_c_char] = ACTIONS(929), + [anon_sym_c_schar] = ACTIONS(929), + [anon_sym_c_uchar] = ACTIONS(929), + [anon_sym_c_short] = ACTIONS(929), + [anon_sym_c_ushort] = ACTIONS(929), + [anon_sym_c_int] = ACTIONS(929), + [anon_sym_c_uint] = ACTIONS(929), + [anon_sym_c_long] = ACTIONS(929), + [anon_sym_c_ulong] = ACTIONS(929), + [anon_sym_c_longlong] = ACTIONS(929), + [anon_sym_c_ulonglong] = ACTIONS(929), + [anon_sym_c_float] = ACTIONS(929), + [anon_sym_c_double] = ACTIONS(929), + [anon_sym_c_longdouble] = ACTIONS(929), + [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_return] = ACTIONS(929), + [anon_sym_yield] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_defer] = ACTIONS(929), + [anon_sym_errdefer] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [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_PLUS] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [sym_none] = ACTIONS(943), - [sym_undefined] = ACTIONS(943), - [sym_sink] = ACTIONS(943), - [sym_integer] = ACTIONS(943), - [sym_float] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_multiline_string] = ACTIONS(941), - [sym_character] = ACTIONS(941), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [sym_none] = ACTIONS(929), + [sym_undefined] = ACTIONS(929), + [sym_sink] = ACTIONS(929), + [sym_integer] = ACTIONS(929), + [sym_float] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym_multiline_string] = ACTIONS(927), + [sym_character] = ACTIONS(927), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(941), + [sym__newline] = ACTIONS(1033), }, [STATE(571)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1062), - [sym_labeled_block] = STATE(1062), - [sym_if_statement] = STATE(1062), - [sym_while_statement] = STATE(1062), - [sym_for_statement] = STATE(1062), - [sym_match_statement] = STATE(1062), - [sym__value] = STATE(1062), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [ts_builtin_sym_end] = ACTIONS(1413), - [sym_identifier] = ACTIONS(880), - [anon_sym_import] = ACTIONS(1415), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1147), + [sym_labeled_block] = STATE(1147), + [sym_if_statement] = STATE(1147), + [sym_while_statement] = STATE(1147), + [sym_for_statement] = STATE(1147), + [sym_match_statement] = STATE(1147), + [sym__value] = STATE(1147), + [sym_expression] = STATE(999), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(882), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -68987,14 +69388,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(51), - [anon_sym_else] = ACTIONS(1415), + [anon_sym_if] = ACTIONS(191), + [anon_sym_else] = ACTIONS(1421), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -69006,417 +69407,606 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1413), + [sym__newline] = ACTIONS(1419), }, [STATE(572)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = ACTIONS(943), - [anon_sym_func] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(943), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(943), - [anon_sym_anyopaque] = ACTIONS(943), - [anon_sym_bool] = ACTIONS(943), - [anon_sym_int] = ACTIONS(943), - [anon_sym_float] = ACTIONS(943), - [anon_sym_range] = ACTIONS(943), - [anon_sym_i8] = ACTIONS(943), - [anon_sym_i16] = ACTIONS(943), - [anon_sym_i32] = ACTIONS(943), - [anon_sym_i64] = ACTIONS(943), - [anon_sym_u8] = ACTIONS(943), - [anon_sym_u16] = ACTIONS(943), - [anon_sym_u32] = ACTIONS(943), - [anon_sym_u64] = ACTIONS(943), - [anon_sym_isize] = ACTIONS(943), - [anon_sym_usize] = ACTIONS(943), - [anon_sym_f32] = ACTIONS(943), - [anon_sym_f64] = ACTIONS(943), - [anon_sym_c_char] = ACTIONS(943), - [anon_sym_c_schar] = ACTIONS(943), - [anon_sym_c_uchar] = ACTIONS(943), - [anon_sym_c_short] = ACTIONS(943), - [anon_sym_c_ushort] = ACTIONS(943), - [anon_sym_c_int] = ACTIONS(943), - [anon_sym_c_uint] = ACTIONS(943), - [anon_sym_c_long] = ACTIONS(943), - [anon_sym_c_ulong] = ACTIONS(943), - [anon_sym_c_longlong] = ACTIONS(943), - [anon_sym_c_ulonglong] = ACTIONS(943), - [anon_sym_c_float] = ACTIONS(943), - [anon_sym_c_double] = ACTIONS(943), - [anon_sym_c_longdouble] = ACTIONS(943), - [anon_sym_PLUS_EQ] = ACTIONS(941), - [anon_sym_DASH_EQ] = ACTIONS(941), - [anon_sym_STAR_EQ] = ACTIONS(941), - [anon_sym_SLASH_EQ] = ACTIONS(941), - [anon_sym_return] = ACTIONS(943), - [anon_sym_yield] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_defer] = ACTIONS(943), - [anon_sym_errdefer] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_else] = ACTIONS(943), - [anon_sym_while] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(941), - [anon_sym_orelse] = ACTIONS(943), - [anon_sym_catch] = ACTIONS(943), - [anon_sym_or] = ACTIONS(943), - [anon_sym_and] = ACTIONS(943), - [anon_sym_EQ_EQ] = ACTIONS(941), - [anon_sym_BANG_EQ] = ACTIONS(941), - [anon_sym_LT] = ACTIONS(943), - [anon_sym_LT_EQ] = ACTIONS(941), - [anon_sym_GT] = ACTIONS(943), - [anon_sym_GT_EQ] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_try] = ACTIONS(943), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [sym_none] = ACTIONS(943), - [sym_undefined] = ACTIONS(943), - [sym_sink] = ACTIONS(943), - [sym_integer] = ACTIONS(943), - [sym_float] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_multiline_string] = ACTIONS(941), - [sym_character] = ACTIONS(941), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1147), + [sym_labeled_block] = STATE(1147), + [sym_if_statement] = STATE(1147), + [sym_while_statement] = STATE(1147), + [sym_for_statement] = STATE(1147), + [sym_match_statement] = STATE(1147), + [sym__value] = STATE(1147), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_RPAREN] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(111), + [anon_sym_else] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(941), + [sym__newline] = ACTIONS(1419), }, [STATE(573)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = 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(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(925), + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(993), + [anon_sym_func] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(991), [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(927), - [anon_sym_anyopaque] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_int] = 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_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_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_PLUS] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_try] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(993), + [anon_sym_anyopaque] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_int] = ACTIONS(993), + [anon_sym_float] = ACTIONS(993), + [anon_sym_range] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_c_char] = ACTIONS(993), + [anon_sym_c_schar] = ACTIONS(993), + [anon_sym_c_uchar] = ACTIONS(993), + [anon_sym_c_short] = ACTIONS(993), + [anon_sym_c_ushort] = ACTIONS(993), + [anon_sym_c_int] = ACTIONS(993), + [anon_sym_c_uint] = ACTIONS(993), + [anon_sym_c_long] = ACTIONS(993), + [anon_sym_c_ulong] = ACTIONS(993), + [anon_sym_c_longlong] = ACTIONS(993), + [anon_sym_c_ulonglong] = ACTIONS(993), + [anon_sym_c_float] = ACTIONS(993), + [anon_sym_c_double] = ACTIONS(993), + [anon_sym_c_longdouble] = ACTIONS(993), + [anon_sym_PLUS_EQ] = ACTIONS(991), + [anon_sym_DASH_EQ] = ACTIONS(991), + [anon_sym_STAR_EQ] = ACTIONS(991), + [anon_sym_SLASH_EQ] = ACTIONS(991), + [anon_sym_return] = ACTIONS(993), + [anon_sym_yield] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_defer] = ACTIONS(993), + [anon_sym_errdefer] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_match] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(991), + [anon_sym_orelse] = ACTIONS(993), + [anon_sym_catch] = ACTIONS(993), + [anon_sym_or] = ACTIONS(993), + [anon_sym_and] = ACTIONS(993), + [anon_sym_EQ_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_LT_EQ] = ACTIONS(991), + [anon_sym_GT] = ACTIONS(993), + [anon_sym_GT_EQ] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_try] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_CARET] = ACTIONS(31), - [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), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [sym_none] = ACTIONS(993), + [sym_undefined] = ACTIONS(993), + [sym_sink] = ACTIONS(993), + [sym_integer] = ACTIONS(993), + [sym_float] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [sym_multiline_string] = ACTIONS(991), + [sym_character] = ACTIONS(991), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(925), + [sym__newline] = ACTIONS(991), }, [STATE(574)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1062), - [sym_labeled_block] = STATE(1062), - [sym_if_statement] = STATE(1062), - [sym_while_statement] = STATE(1062), - [sym_for_statement] = STATE(1062), - [sym_match_statement] = STATE(1062), - [sym__value] = STATE(1062), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [ts_builtin_sym_end] = ACTIONS(1413), - [sym_identifier] = ACTIONS(880), - [anon_sym_import] = ACTIONS(1415), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(993), + [anon_sym_func] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(993), + [anon_sym_anyopaque] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_int] = ACTIONS(993), + [anon_sym_float] = ACTIONS(993), + [anon_sym_range] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_c_char] = ACTIONS(993), + [anon_sym_c_schar] = ACTIONS(993), + [anon_sym_c_uchar] = ACTIONS(993), + [anon_sym_c_short] = ACTIONS(993), + [anon_sym_c_ushort] = ACTIONS(993), + [anon_sym_c_int] = ACTIONS(993), + [anon_sym_c_uint] = ACTIONS(993), + [anon_sym_c_long] = ACTIONS(993), + [anon_sym_c_ulong] = ACTIONS(993), + [anon_sym_c_longlong] = ACTIONS(993), + [anon_sym_c_ulonglong] = ACTIONS(993), + [anon_sym_c_float] = ACTIONS(993), + [anon_sym_c_double] = ACTIONS(993), + [anon_sym_c_longdouble] = ACTIONS(993), + [anon_sym_PLUS_EQ] = ACTIONS(991), + [anon_sym_DASH_EQ] = ACTIONS(991), + [anon_sym_STAR_EQ] = ACTIONS(991), + [anon_sym_SLASH_EQ] = ACTIONS(991), + [anon_sym_return] = ACTIONS(993), + [anon_sym_yield] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_defer] = ACTIONS(993), + [anon_sym_errdefer] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_match] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(991), + [anon_sym_orelse] = ACTIONS(1460), + [anon_sym_catch] = ACTIONS(1462), + [anon_sym_or] = ACTIONS(1464), + [anon_sym_and] = ACTIONS(1466), + [anon_sym_EQ_EQ] = ACTIONS(1468), + [anon_sym_BANG_EQ] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_EQ] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_GT_EQ] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_try] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [sym_none] = ACTIONS(993), + [sym_undefined] = ACTIONS(993), + [sym_sink] = ACTIONS(993), + [sym_integer] = ACTIONS(993), + [sym_float] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [sym_multiline_string] = ACTIONS(991), + [sym_character] = ACTIONS(991), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1413), + [sym__newline] = ACTIONS(991), }, [STATE(575)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1062), - [sym_labeled_block] = STATE(1062), - [sym_if_statement] = STATE(1062), - [sym_while_statement] = STATE(1062), - [sym_for_statement] = STATE(1062), - [sym_match_statement] = STATE(1062), - [sym__value] = STATE(1062), - [sym_expression] = STATE(998), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(165), - [anon_sym_else] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(993), + [anon_sym_func] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(993), + [anon_sym_anyopaque] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_int] = ACTIONS(993), + [anon_sym_float] = ACTIONS(993), + [anon_sym_range] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_c_char] = ACTIONS(993), + [anon_sym_c_schar] = ACTIONS(993), + [anon_sym_c_uchar] = ACTIONS(993), + [anon_sym_c_short] = ACTIONS(993), + [anon_sym_c_ushort] = ACTIONS(993), + [anon_sym_c_int] = ACTIONS(993), + [anon_sym_c_uint] = ACTIONS(993), + [anon_sym_c_long] = ACTIONS(993), + [anon_sym_c_ulong] = ACTIONS(993), + [anon_sym_c_longlong] = ACTIONS(993), + [anon_sym_c_ulonglong] = ACTIONS(993), + [anon_sym_c_float] = ACTIONS(993), + [anon_sym_c_double] = ACTIONS(993), + [anon_sym_c_longdouble] = ACTIONS(993), + [anon_sym_PLUS_EQ] = ACTIONS(991), + [anon_sym_DASH_EQ] = ACTIONS(991), + [anon_sym_STAR_EQ] = ACTIONS(991), + [anon_sym_SLASH_EQ] = ACTIONS(991), + [anon_sym_return] = ACTIONS(993), + [anon_sym_yield] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_defer] = ACTIONS(993), + [anon_sym_errdefer] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_match] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(991), + [anon_sym_orelse] = ACTIONS(993), + [anon_sym_catch] = ACTIONS(993), + [anon_sym_or] = ACTIONS(1464), + [anon_sym_and] = ACTIONS(1466), + [anon_sym_EQ_EQ] = ACTIONS(1468), + [anon_sym_BANG_EQ] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_EQ] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_GT_EQ] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_try] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [sym_none] = ACTIONS(993), + [sym_undefined] = ACTIONS(993), + [sym_sink] = ACTIONS(993), + [sym_integer] = ACTIONS(993), + [sym_float] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [sym_multiline_string] = ACTIONS(991), + [sym_character] = ACTIONS(991), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1413), + [sym__newline] = ACTIONS(991), }, [STATE(576)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1062), - [sym_labeled_block] = STATE(1062), - [sym_if_statement] = STATE(1062), - [sym_while_statement] = STATE(1062), - [sym_for_statement] = STATE(1062), - [sym_match_statement] = STATE(1062), - [sym__value] = STATE(1062), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(880), + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(1436), + [anon_sym_func] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_EQ] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(1436), + [anon_sym_anyopaque] = ACTIONS(1436), + [anon_sym_bool] = ACTIONS(1436), + [anon_sym_int] = ACTIONS(1436), + [anon_sym_float] = ACTIONS(1436), + [anon_sym_range] = ACTIONS(1436), + [anon_sym_i8] = ACTIONS(1436), + [anon_sym_i16] = ACTIONS(1436), + [anon_sym_i32] = ACTIONS(1436), + [anon_sym_i64] = ACTIONS(1436), + [anon_sym_u8] = ACTIONS(1436), + [anon_sym_u16] = ACTIONS(1436), + [anon_sym_u32] = ACTIONS(1436), + [anon_sym_u64] = ACTIONS(1436), + [anon_sym_isize] = ACTIONS(1436), + [anon_sym_usize] = ACTIONS(1436), + [anon_sym_f32] = ACTIONS(1436), + [anon_sym_f64] = ACTIONS(1436), + [anon_sym_c_char] = ACTIONS(1436), + [anon_sym_c_schar] = ACTIONS(1436), + [anon_sym_c_uchar] = ACTIONS(1436), + [anon_sym_c_short] = ACTIONS(1436), + [anon_sym_c_ushort] = ACTIONS(1436), + [anon_sym_c_int] = ACTIONS(1436), + [anon_sym_c_uint] = ACTIONS(1436), + [anon_sym_c_long] = ACTIONS(1436), + [anon_sym_c_ulong] = ACTIONS(1436), + [anon_sym_c_longlong] = ACTIONS(1436), + [anon_sym_c_ulonglong] = ACTIONS(1436), + [anon_sym_c_float] = ACTIONS(1436), + [anon_sym_c_double] = ACTIONS(1436), + [anon_sym_c_longdouble] = ACTIONS(1436), + [anon_sym_PLUS_EQ] = ACTIONS(1434), + [anon_sym_DASH_EQ] = ACTIONS(1434), + [anon_sym_STAR_EQ] = ACTIONS(1434), + [anon_sym_SLASH_EQ] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_yield] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_defer] = ACTIONS(1436), + [anon_sym_errdefer] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_else] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_match] = ACTIONS(1436), + [anon_sym_DOT_DOT] = ACTIONS(1436), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1434), + [anon_sym_orelse] = ACTIONS(1436), + [anon_sym_catch] = ACTIONS(1436), + [anon_sym_or] = ACTIONS(1436), + [anon_sym_and] = ACTIONS(1466), + [anon_sym_EQ_EQ] = ACTIONS(1468), + [anon_sym_BANG_EQ] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_EQ] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_GT_EQ] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_try] = ACTIONS(1436), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [sym_none] = ACTIONS(1436), + [sym_undefined] = ACTIONS(1436), + [sym_sink] = ACTIONS(1436), + [sym_integer] = ACTIONS(1436), + [sym_float] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_multiline_string] = ACTIONS(1434), + [sym_character] = ACTIONS(1434), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1434), + }, + [STATE(577)] = { + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(1436), + [anon_sym_func] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_EQ] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(1436), + [anon_sym_anyopaque] = ACTIONS(1436), + [anon_sym_bool] = ACTIONS(1436), + [anon_sym_int] = ACTIONS(1436), + [anon_sym_float] = ACTIONS(1436), + [anon_sym_range] = ACTIONS(1436), + [anon_sym_i8] = ACTIONS(1436), + [anon_sym_i16] = ACTIONS(1436), + [anon_sym_i32] = ACTIONS(1436), + [anon_sym_i64] = ACTIONS(1436), + [anon_sym_u8] = ACTIONS(1436), + [anon_sym_u16] = ACTIONS(1436), + [anon_sym_u32] = ACTIONS(1436), + [anon_sym_u64] = ACTIONS(1436), + [anon_sym_isize] = ACTIONS(1436), + [anon_sym_usize] = ACTIONS(1436), + [anon_sym_f32] = ACTIONS(1436), + [anon_sym_f64] = ACTIONS(1436), + [anon_sym_c_char] = ACTIONS(1436), + [anon_sym_c_schar] = ACTIONS(1436), + [anon_sym_c_uchar] = ACTIONS(1436), + [anon_sym_c_short] = ACTIONS(1436), + [anon_sym_c_ushort] = ACTIONS(1436), + [anon_sym_c_int] = ACTIONS(1436), + [anon_sym_c_uint] = ACTIONS(1436), + [anon_sym_c_long] = ACTIONS(1436), + [anon_sym_c_ulong] = ACTIONS(1436), + [anon_sym_c_longlong] = ACTIONS(1436), + [anon_sym_c_ulonglong] = ACTIONS(1436), + [anon_sym_c_float] = ACTIONS(1436), + [anon_sym_c_double] = ACTIONS(1436), + [anon_sym_c_longdouble] = ACTIONS(1436), + [anon_sym_PLUS_EQ] = ACTIONS(1434), + [anon_sym_DASH_EQ] = ACTIONS(1434), + [anon_sym_STAR_EQ] = ACTIONS(1434), + [anon_sym_SLASH_EQ] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_yield] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_defer] = ACTIONS(1436), + [anon_sym_errdefer] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_else] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_match] = ACTIONS(1436), + [anon_sym_DOT_DOT] = ACTIONS(1436), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1434), + [anon_sym_orelse] = ACTIONS(1436), + [anon_sym_catch] = ACTIONS(1436), + [anon_sym_or] = ACTIONS(1436), + [anon_sym_and] = ACTIONS(1436), + [anon_sym_EQ_EQ] = ACTIONS(1468), + [anon_sym_BANG_EQ] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_EQ] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_GT_EQ] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_try] = ACTIONS(1436), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [sym_none] = ACTIONS(1436), + [sym_undefined] = ACTIONS(1436), + [sym_sink] = ACTIONS(1436), + [sym_integer] = ACTIONS(1436), + [sym_float] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_multiline_string] = ACTIONS(1434), + [sym_character] = ACTIONS(1434), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1434), + }, + [STATE(578)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1718), + [sym_labeled_block] = STATE(1718), + [sym_if_statement] = STATE(1718), + [sym_while_statement] = STATE(1718), + [sym_for_statement] = STATE(1718), + [sym_match_statement] = STATE(1718), + [sym__value] = STATE(1718), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1413), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -69449,14 +70039,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(193), - [anon_sym_else] = ACTIONS(1415), + [anon_sym_if] = ACTIONS(287), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -69468,131 +70057,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1413), + [sym__newline] = ACTIONS(227), }, - [STATE(577)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = ACTIONS(1454), - [anon_sym_func] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_EQ] = ACTIONS(1466), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(1454), - [anon_sym_anyopaque] = ACTIONS(1454), - [anon_sym_bool] = ACTIONS(1454), - [anon_sym_int] = 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(1468), - [anon_sym_DASH_EQ] = ACTIONS(1468), - [anon_sym_STAR_EQ] = ACTIONS(1468), - [anon_sym_SLASH_EQ] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_yield] = ACTIONS(1454), - [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_while] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_match] = ACTIONS(1454), - [anon_sym_DOT_DOT] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1464), - [anon_sym_orelse] = ACTIONS(1442), - [anon_sym_catch] = ACTIONS(1444), - [anon_sym_or] = ACTIONS(1446), - [anon_sym_and] = ACTIONS(1448), - [anon_sym_EQ_EQ] = ACTIONS(1450), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_LT_EQ] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_try] = ACTIONS(1454), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [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(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_multiline_string] = ACTIONS(1458), - [sym_character] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1458), - }, - [STATE(578)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1092), - [sym_labeled_block] = STATE(1092), - [sym_if_statement] = STATE(1092), - [sym_while_statement] = STATE(1092), - [sym_for_statement] = STATE(1092), - [sym_match_statement] = STATE(1092), - [sym__value] = STATE(1092), - [sym_expression] = STATE(998), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(608), - [sym_identifier] = ACTIONS(880), + [STATE(579)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1160), + [sym_labeled_block] = STATE(1160), + [sym_if_statement] = STATE(1160), + [sym_while_statement] = STATE(1160), + [sym_for_statement] = STATE(1160), + [sym_match_statement] = STATE(1160), + [sym__value] = STATE(1160), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1417), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), @@ -69600,7 +70098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(167), [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -69639,97 +70137,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(167), [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1470), - }, - [STATE(579)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1094), - [sym_labeled_block] = STATE(1094), - [sym_if_statement] = STATE(1094), - [sym_while_statement] = STATE(1094), - [sym_for_statement] = STATE(1094), - [sym_match_statement] = STATE(1094), - [sym__value] = STATE(1094), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -69742,46 +70149,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(580)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1855), - [sym_labeled_block] = STATE(1855), - [sym_if_statement] = STATE(1855), - [sym_while_statement] = STATE(1855), - [sym_for_statement] = STATE(1855), - [sym_match_statement] = STATE(1855), - [sym__value] = STATE(1855), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1161), + [sym_labeled_block] = STATE(1161), + [sym_if_statement] = STATE(1161), + [sym_while_statement] = STATE(1161), + [sym_for_statement] = STATE(1161), + [sym_match_statement] = STATE(1161), + [sym__value] = STATE(1161), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1417), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -69815,13 +70223,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(413), + [anon_sym_if] = ACTIONS(165), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -69833,46 +70241,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(581)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1198), - [sym_labeled_block] = STATE(1198), - [sym_if_statement] = STATE(1198), - [sym_while_statement] = STATE(1198), - [sym_for_statement] = STATE(1198), - [sym_match_statement] = STATE(1198), - [sym__value] = STATE(1198), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1411), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1143), + [sym_labeled_block] = STATE(1143), + [sym_if_statement] = STATE(1143), + [sym_while_statement] = STATE(1143), + [sym_for_statement] = STATE(1143), + [sym_match_statement] = STATE(1143), + [sym__value] = STATE(1143), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1417), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -69910,8 +70319,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -69924,46 +70333,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, [STATE(582)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1203), - [sym_labeled_block] = STATE(1203), - [sym_if_statement] = STATE(1203), - [sym_while_statement] = STATE(1203), - [sym_for_statement] = STATE(1203), - [sym_match_statement] = STATE(1203), - [sym__value] = STATE(1203), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1411), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1144), + [sym_labeled_block] = STATE(1144), + [sym_if_statement] = STATE(1144), + [sym_while_statement] = STATE(1144), + [sym_for_statement] = STATE(1144), + [sym_match_statement] = STATE(1144), + [sym__value] = STATE(1144), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(615), + [sym_identifier] = ACTIONS(1417), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -70001,8 +70411,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -70015,2412 +70425,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(583)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1089), - [sym_labeled_block] = STATE(1089), - [sym_if_statement] = STATE(1089), - [sym_while_statement] = STATE(1089), - [sym_for_statement] = STATE(1089), - [sym_match_statement] = STATE(1089), - [sym__value] = STATE(1089), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(584)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1090), - [sym_labeled_block] = STATE(1090), - [sym_if_statement] = STATE(1090), - [sym_while_statement] = STATE(1090), - [sym_for_statement] = STATE(1090), - [sym_match_statement] = STATE(1090), - [sym__value] = STATE(1090), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(632), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1472), }, - [STATE(585)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1092), - [sym_labeled_block] = STATE(1092), - [sym_if_statement] = STATE(1092), - [sym_while_statement] = STATE(1092), - [sym_for_statement] = STATE(1092), - [sym_match_statement] = STATE(1092), - [sym__value] = STATE(1092), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(637), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1474), - }, - [STATE(586)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1094), - [sym_labeled_block] = STATE(1094), - [sym_if_statement] = STATE(1094), - [sym_while_statement] = STATE(1094), - [sym_for_statement] = STATE(1094), - [sym_match_statement] = STATE(1094), - [sym__value] = STATE(1094), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(587)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1909), - [sym_labeled_block] = STATE(1909), - [sym_if_statement] = STATE(1909), - [sym_while_statement] = STATE(1909), - [sym_for_statement] = STATE(1909), - [sym_match_statement] = STATE(1909), - [sym__value] = STATE(1909), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(588)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1726), - [sym_labeled_block] = STATE(1726), - [sym_if_statement] = STATE(1726), - [sym_while_statement] = STATE(1726), - [sym_for_statement] = STATE(1726), - [sym_match_statement] = STATE(1726), - [sym__value] = STATE(1726), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(589)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1841), - [sym_labeled_block] = STATE(1841), - [sym_if_statement] = STATE(1841), - [sym_while_statement] = STATE(1841), - [sym_for_statement] = STATE(1841), - [sym_match_statement] = STATE(1841), - [sym__value] = STATE(1841), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(587), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1476), - }, - [STATE(590)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1843), - [sym_labeled_block] = STATE(1843), - [sym_if_statement] = STATE(1843), - [sym_while_statement] = STATE(1843), - [sym_for_statement] = STATE(1843), - [sym_match_statement] = STATE(1843), - [sym__value] = STATE(1843), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(588), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1478), - }, - [STATE(591)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1062), - [sym_labeled_block] = STATE(1062), - [sym_if_statement] = STATE(1062), - [sym_while_statement] = STATE(1062), - [sym_for_statement] = STATE(1062), - [sym_match_statement] = STATE(1062), - [sym__value] = STATE(1062), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(1411), + [STATE(583)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1145), + [sym_labeled_block] = STATE(1145), + [sym_if_statement] = STATE(1145), + [sym_while_statement] = STATE(1145), + [sym_for_statement] = STATE(1145), + [sym_match_statement] = STATE(1145), + [sym__value] = STATE(1145), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(616), + [sym_identifier] = ACTIONS(1417), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(139), - [anon_sym_else] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1413), - }, - [STATE(592)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1887), - [sym_labeled_block] = STATE(1887), - [sym_if_statement] = STATE(1887), - [sym_while_statement] = STATE(1887), - [sym_for_statement] = STATE(1887), - [sym_match_statement] = STATE(1887), - [sym__value] = STATE(1887), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(580), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1480), - }, - [STATE(593)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1136), - [sym_labeled_block] = STATE(1136), - [sym_if_statement] = STATE(1136), - [sym_while_statement] = STATE(1136), - [sym_for_statement] = STATE(1136), - [sym_match_statement] = STATE(1136), - [sym__value] = STATE(1136), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(595), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1482), - }, - [STATE(594)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1150), - [sym_labeled_block] = STATE(1150), - [sym_if_statement] = STATE(1150), - [sym_while_statement] = STATE(1150), - [sym_for_statement] = STATE(1150), - [sym_match_statement] = STATE(1150), - [sym__value] = STATE(1150), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(598), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(431), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1484), - }, - [STATE(595)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1089), - [sym_labeled_block] = STATE(1089), - [sym_if_statement] = STATE(1089), - [sym_while_statement] = STATE(1089), - [sym_for_statement] = STATE(1089), - [sym_match_statement] = STATE(1089), - [sym__value] = STATE(1089), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(596)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1090), - [sym_labeled_block] = STATE(1090), - [sym_if_statement] = STATE(1090), - [sym_while_statement] = STATE(1090), - [sym_for_statement] = STATE(1090), - [sym_match_statement] = STATE(1090), - [sym__value] = STATE(1090), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(599), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1486), - }, - [STATE(597)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1092), - [sym_labeled_block] = STATE(1092), - [sym_if_statement] = STATE(1092), - [sym_while_statement] = STATE(1092), - [sym_for_statement] = STATE(1092), - [sym_match_statement] = STATE(1092), - [sym__value] = STATE(1092), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(600), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1488), - }, - [STATE(598)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1094), - [sym_labeled_block] = STATE(1094), - [sym_if_statement] = STATE(1094), - [sym_while_statement] = STATE(1094), - [sym_for_statement] = STATE(1094), - [sym_match_statement] = STATE(1094), - [sym__value] = STATE(1094), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(431), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(599)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1198), - [sym_labeled_block] = STATE(1198), - [sym_if_statement] = STATE(1198), - [sym_while_statement] = STATE(1198), - [sym_for_statement] = STATE(1198), - [sym_match_statement] = STATE(1198), - [sym__value] = STATE(1198), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(600)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1203), - [sym_labeled_block] = STATE(1203), - [sym_if_statement] = STATE(1203), - [sym_while_statement] = STATE(1203), - [sym_for_statement] = STATE(1203), - [sym_match_statement] = STATE(1203), - [sym__value] = STATE(1203), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(601)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1136), - [sym_labeled_block] = STATE(1136), - [sym_if_statement] = STATE(1136), - [sym_while_statement] = STATE(1136), - [sym_for_statement] = STATE(1136), - [sym_match_statement] = STATE(1136), - [sym__value] = STATE(1136), - [sym_expression] = STATE(998), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(604), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(165), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1490), - }, - [STATE(602)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1150), - [sym_labeled_block] = STATE(1150), - [sym_if_statement] = STATE(1150), - [sym_while_statement] = STATE(1150), - [sym_for_statement] = STATE(1150), - [sym_match_statement] = STATE(1150), - [sym__value] = STATE(1150), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(606), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1492), - }, - [STATE(603)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1136), - [sym_labeled_block] = STATE(1136), - [sym_if_statement] = STATE(1136), - [sym_while_statement] = STATE(1136), - [sym_for_statement] = STATE(1136), - [sym_match_statement] = STATE(1136), - [sym__value] = STATE(1136), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(583), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(51), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1494), - }, - [STATE(604)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1089), - [sym_labeled_block] = STATE(1089), - [sym_if_statement] = STATE(1089), - [sym_while_statement] = STATE(1089), - [sym_for_statement] = STATE(1089), - [sym_match_statement] = STATE(1089), - [sym__value] = STATE(1089), - [sym_expression] = STATE(998), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(165), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(605)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1090), - [sym_labeled_block] = STATE(1090), - [sym_if_statement] = STATE(1090), - [sym_while_statement] = STATE(1090), - [sym_for_statement] = STATE(1090), - [sym_match_statement] = STATE(1090), - [sym__value] = STATE(1090), - [sym_expression] = STATE(998), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(607), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(165), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1496), - }, - [STATE(606)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1094), - [sym_labeled_block] = STATE(1094), - [sym_if_statement] = STATE(1094), - [sym_while_statement] = STATE(1094), - [sym_for_statement] = STATE(1094), - [sym_match_statement] = STATE(1094), - [sym__value] = STATE(1094), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(607)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1198), - [sym_labeled_block] = STATE(1198), - [sym_if_statement] = STATE(1198), - [sym_while_statement] = STATE(1198), - [sym_for_statement] = STATE(1198), - [sym_match_statement] = STATE(1198), - [sym__value] = STATE(1198), - [sym_expression] = STATE(998), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(165), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(608)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1203), - [sym_labeled_block] = STATE(1203), - [sym_if_statement] = STATE(1203), - [sym_while_statement] = STATE(1203), - [sym_for_statement] = STATE(1203), - [sym_match_statement] = STATE(1203), - [sym__value] = STATE(1203), - [sym_expression] = STATE(998), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(165), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(609)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1136), - [sym_labeled_block] = STATE(1136), - [sym_if_statement] = STATE(1136), - [sym_while_statement] = STATE(1136), - [sym_for_statement] = STATE(1136), - [sym_match_statement] = STATE(1136), - [sym__value] = STATE(1136), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(630), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -72458,8 +70503,2032 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1474), + }, + [STATE(584)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1146), + [sym_labeled_block] = STATE(1146), + [sym_if_statement] = STATE(1146), + [sym_while_statement] = STATE(1146), + [sym_for_statement] = STATE(1146), + [sym_match_statement] = STATE(1146), + [sym__value] = STATE(1146), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(585)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1220), + [sym_labeled_block] = STATE(1220), + [sym_if_statement] = STATE(1220), + [sym_while_statement] = STATE(1220), + [sym_for_statement] = STATE(1220), + [sym_match_statement] = STATE(1220), + [sym__value] = STATE(1220), + [sym_expression] = STATE(999), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(588), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(191), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1476), + }, + [STATE(586)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1118), + [sym_labeled_block] = STATE(1118), + [sym_if_statement] = STATE(1118), + [sym_while_statement] = STATE(1118), + [sym_for_statement] = STATE(1118), + [sym_match_statement] = STATE(1118), + [sym__value] = STATE(1118), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(591), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1478), + }, + [STATE(587)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1220), + [sym_labeled_block] = STATE(1220), + [sym_if_statement] = STATE(1220), + [sym_while_statement] = STATE(1220), + [sym_for_statement] = STATE(1220), + [sym_match_statement] = STATE(1220), + [sym__value] = STATE(1220), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(581), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1480), + }, + [STATE(588)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1143), + [sym_labeled_block] = STATE(1143), + [sym_if_statement] = STATE(1143), + [sym_while_statement] = STATE(1143), + [sym_for_statement] = STATE(1143), + [sym_match_statement] = STATE(1143), + [sym__value] = STATE(1143), + [sym_expression] = STATE(999), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(191), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(589)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1144), + [sym_labeled_block] = STATE(1144), + [sym_if_statement] = STATE(1144), + [sym_while_statement] = STATE(1144), + [sym_for_statement] = STATE(1144), + [sym_match_statement] = STATE(1144), + [sym__value] = STATE(1144), + [sym_expression] = STATE(999), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(592), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(191), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1482), + }, + [STATE(590)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1145), + [sym_labeled_block] = STATE(1145), + [sym_if_statement] = STATE(1145), + [sym_while_statement] = STATE(1145), + [sym_for_statement] = STATE(1145), + [sym_match_statement] = STATE(1145), + [sym__value] = STATE(1145), + [sym_expression] = STATE(999), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(593), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(191), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1484), + }, + [STATE(591)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1146), + [sym_labeled_block] = STATE(1146), + [sym_if_statement] = STATE(1146), + [sym_while_statement] = STATE(1146), + [sym_for_statement] = STATE(1146), + [sym_match_statement] = STATE(1146), + [sym__value] = STATE(1146), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(592)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1160), + [sym_labeled_block] = STATE(1160), + [sym_if_statement] = STATE(1160), + [sym_while_statement] = STATE(1160), + [sym_for_statement] = STATE(1160), + [sym_match_statement] = STATE(1160), + [sym__value] = STATE(1160), + [sym_expression] = STATE(999), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(191), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(593)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1161), + [sym_labeled_block] = STATE(1161), + [sym_if_statement] = STATE(1161), + [sym_while_statement] = STATE(1161), + [sym_for_statement] = STATE(1161), + [sym_match_statement] = STATE(1161), + [sym__value] = STATE(1161), + [sym_expression] = STATE(999), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(191), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(594)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1220), + [sym_labeled_block] = STATE(1220), + [sym_if_statement] = STATE(1220), + [sym_while_statement] = STATE(1220), + [sym_for_statement] = STATE(1220), + [sym_match_statement] = STATE(1220), + [sym__value] = STATE(1220), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(596), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1486), + }, + [STATE(595)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1118), + [sym_labeled_block] = STATE(1118), + [sym_if_statement] = STATE(1118), + [sym_while_statement] = STATE(1118), + [sym_for_statement] = STATE(1118), + [sym_match_statement] = STATE(1118), + [sym__value] = STATE(1118), + [sym_expression] = STATE(999), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(599), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(191), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1488), + }, + [STATE(596)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1143), + [sym_labeled_block] = STATE(1143), + [sym_if_statement] = STATE(1143), + [sym_while_statement] = STATE(1143), + [sym_for_statement] = STATE(1143), + [sym_match_statement] = STATE(1143), + [sym__value] = STATE(1143), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(597)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1144), + [sym_labeled_block] = STATE(1144), + [sym_if_statement] = STATE(1144), + [sym_while_statement] = STATE(1144), + [sym_for_statement] = STATE(1144), + [sym_match_statement] = STATE(1144), + [sym__value] = STATE(1144), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(600), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1490), + }, + [STATE(598)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1145), + [sym_labeled_block] = STATE(1145), + [sym_if_statement] = STATE(1145), + [sym_while_statement] = STATE(1145), + [sym_for_statement] = STATE(1145), + [sym_match_statement] = STATE(1145), + [sym__value] = STATE(1145), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(601), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1492), + }, + [STATE(599)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1146), + [sym_labeled_block] = STATE(1146), + [sym_if_statement] = STATE(1146), + [sym_while_statement] = STATE(1146), + [sym_for_statement] = STATE(1146), + [sym_match_statement] = STATE(1146), + [sym__value] = STATE(1146), + [sym_expression] = STATE(999), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(191), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(600)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1160), + [sym_labeled_block] = STATE(1160), + [sym_if_statement] = STATE(1160), + [sym_while_statement] = STATE(1160), + [sym_for_statement] = STATE(1160), + [sym_match_statement] = STATE(1160), + [sym__value] = STATE(1160), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(601)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1161), + [sym_labeled_block] = STATE(1161), + [sym_if_statement] = STATE(1161), + [sym_while_statement] = STATE(1161), + [sym_for_statement] = STATE(1161), + [sym_match_statement] = STATE(1161), + [sym__value] = STATE(1161), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(602)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1220), + [sym_labeled_block] = STATE(1220), + [sym_if_statement] = STATE(1220), + [sym_while_statement] = STATE(1220), + [sym_for_statement] = STATE(1220), + [sym_match_statement] = STATE(1220), + [sym__value] = STATE(1220), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(604), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1494), + }, + [STATE(603)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1118), + [sym_labeled_block] = STATE(1118), + [sym_if_statement] = STATE(1118), + [sym_while_statement] = STATE(1118), + [sym_for_statement] = STATE(1118), + [sym_match_statement] = STATE(1118), + [sym__value] = STATE(1118), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(607), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1496), + }, + [STATE(604)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1143), + [sym_labeled_block] = STATE(1143), + [sym_if_statement] = STATE(1143), + [sym_while_statement] = STATE(1143), + [sym_for_statement] = STATE(1143), + [sym_match_statement] = STATE(1143), + [sym__value] = STATE(1143), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(605)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1144), + [sym_labeled_block] = STATE(1144), + [sym_if_statement] = STATE(1144), + [sym_while_statement] = STATE(1144), + [sym_for_statement] = STATE(1144), + [sym_match_statement] = STATE(1144), + [sym__value] = STATE(1144), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(610), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -72474,44 +72543,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1498), }, - [STATE(610)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1150), - [sym_labeled_block] = STATE(1150), - [sym_if_statement] = STATE(1150), - [sym_while_statement] = STATE(1150), - [sym_for_statement] = STATE(1150), - [sym_match_statement] = STATE(1150), - [sym__value] = STATE(1150), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(579), - [sym_identifier] = ACTIONS(1411), + [STATE(606)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1145), + [sym_labeled_block] = STATE(1145), + [sym_if_statement] = STATE(1145), + [sym_while_statement] = STATE(1145), + [sym_for_statement] = STATE(1145), + [sym_match_statement] = STATE(1145), + [sym__value] = STATE(1145), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(611), + [sym_identifier] = ACTIONS(1417), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -72545,12 +72615,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(241), + [anon_sym_if] = ACTIONS(139), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -72565,45 +72635,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1500), }, - [STATE(611)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1136), - [sym_labeled_block] = STATE(1136), - [sym_if_statement] = STATE(1136), - [sym_while_statement] = STATE(1136), - [sym_for_statement] = STATE(1136), - [sym_match_statement] = STATE(1136), - [sym__value] = STATE(1136), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(613), - [sym_identifier] = ACTIONS(880), + [STATE(607)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1146), + [sym_labeled_block] = STATE(1146), + [sym_if_statement] = STATE(1146), + [sym_while_statement] = STATE(1146), + [sym_for_statement] = STATE(1146), + [sym_match_statement] = STATE(1146), + [sym__value] = STATE(1146), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1417), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -72636,13 +72707,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(193), + [anon_sym_if] = ACTIONS(139), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(608)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1118), + [sym_labeled_block] = STATE(1118), + [sym_if_statement] = STATE(1118), + [sym_while_statement] = STATE(1118), + [sym_for_statement] = STATE(1118), + [sym_match_statement] = STATE(1118), + [sym__value] = STATE(1118), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(584), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -72656,674 +72819,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1502), }, - [STATE(612)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1150), - [sym_labeled_block] = STATE(1150), - [sym_if_statement] = STATE(1150), - [sym_while_statement] = STATE(1150), - [sym_for_statement] = STATE(1150), - [sym_match_statement] = STATE(1150), - [sym__value] = STATE(1150), - [sym_expression] = STATE(998), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(616), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(165), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1504), - }, - [STATE(613)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1089), - [sym_labeled_block] = STATE(1089), - [sym_if_statement] = STATE(1089), - [sym_while_statement] = STATE(1089), - [sym_for_statement] = STATE(1089), - [sym_match_statement] = STATE(1089), - [sym__value] = STATE(1089), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(614)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1090), - [sym_labeled_block] = STATE(1090), - [sym_if_statement] = STATE(1090), - [sym_while_statement] = STATE(1090), - [sym_for_statement] = STATE(1090), - [sym_match_statement] = STATE(1090), - [sym__value] = STATE(1090), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(617), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1506), - }, - [STATE(615)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1092), - [sym_labeled_block] = STATE(1092), - [sym_if_statement] = STATE(1092), - [sym_while_statement] = STATE(1092), - [sym_for_statement] = STATE(1092), - [sym_match_statement] = STATE(1092), - [sym__value] = STATE(1092), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(618), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1508), - }, - [STATE(616)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1094), - [sym_labeled_block] = STATE(1094), - [sym_if_statement] = STATE(1094), - [sym_while_statement] = STATE(1094), - [sym_for_statement] = STATE(1094), - [sym_match_statement] = STATE(1094), - [sym__value] = STATE(1094), - [sym_expression] = STATE(998), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(165), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(617)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1198), - [sym_labeled_block] = STATE(1198), - [sym_if_statement] = STATE(1198), - [sym_while_statement] = STATE(1198), - [sym_for_statement] = STATE(1198), - [sym_match_statement] = STATE(1198), - [sym__value] = STATE(1198), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(618)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1203), - [sym_labeled_block] = STATE(1203), - [sym_if_statement] = STATE(1203), - [sym_while_statement] = STATE(1203), - [sym_for_statement] = STATE(1203), - [sym_match_statement] = STATE(1203), - [sym__value] = STATE(1203), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(619)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1150), - [sym_labeled_block] = STATE(1150), - [sym_if_statement] = STATE(1150), - [sym_while_statement] = STATE(1150), - [sym_for_statement] = STATE(1150), - [sym_match_statement] = STATE(1150), - [sym__value] = STATE(1150), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(586), - [sym_identifier] = ACTIONS(880), + [STATE(609)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1160), + [sym_labeled_block] = STATE(1160), + [sym_if_statement] = STATE(1160), + [sym_while_statement] = STATE(1160), + [sym_for_statement] = STATE(1160), + [sym_match_statement] = STATE(1160), + [sym__value] = STATE(1160), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), @@ -73370,7 +72897,743 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(610)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1160), + [sym_labeled_block] = STATE(1160), + [sym_if_statement] = STATE(1160), + [sym_while_statement] = STATE(1160), + [sym_for_statement] = STATE(1160), + [sym_match_statement] = STATE(1160), + [sym__value] = STATE(1160), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(611)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1161), + [sym_labeled_block] = STATE(1161), + [sym_if_statement] = STATE(1161), + [sym_while_statement] = STATE(1161), + [sym_for_statement] = STATE(1161), + [sym_match_statement] = STATE(1161), + [sym__value] = STATE(1161), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(139), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(612)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1161), + [sym_labeled_block] = STATE(1161), + [sym_if_statement] = STATE(1161), + [sym_while_statement] = STATE(1161), + [sym_for_statement] = STATE(1161), + [sym_match_statement] = STATE(1161), + [sym__value] = STATE(1161), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(51), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(613)] = { + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(1448), + [anon_sym_func] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1452), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(1448), + [anon_sym_anyopaque] = ACTIONS(1448), + [anon_sym_bool] = ACTIONS(1448), + [anon_sym_int] = ACTIONS(1448), + [anon_sym_float] = ACTIONS(1448), + [anon_sym_range] = ACTIONS(1448), + [anon_sym_i8] = ACTIONS(1448), + [anon_sym_i16] = ACTIONS(1448), + [anon_sym_i32] = ACTIONS(1448), + [anon_sym_i64] = ACTIONS(1448), + [anon_sym_u8] = ACTIONS(1448), + [anon_sym_u16] = ACTIONS(1448), + [anon_sym_u32] = ACTIONS(1448), + [anon_sym_u64] = ACTIONS(1448), + [anon_sym_isize] = ACTIONS(1448), + [anon_sym_usize] = ACTIONS(1448), + [anon_sym_f32] = ACTIONS(1448), + [anon_sym_f64] = ACTIONS(1448), + [anon_sym_c_char] = ACTIONS(1448), + [anon_sym_c_schar] = ACTIONS(1448), + [anon_sym_c_uchar] = ACTIONS(1448), + [anon_sym_c_short] = ACTIONS(1448), + [anon_sym_c_ushort] = ACTIONS(1448), + [anon_sym_c_int] = ACTIONS(1448), + [anon_sym_c_uint] = ACTIONS(1448), + [anon_sym_c_long] = ACTIONS(1448), + [anon_sym_c_ulong] = ACTIONS(1448), + [anon_sym_c_longlong] = ACTIONS(1448), + [anon_sym_c_ulonglong] = ACTIONS(1448), + [anon_sym_c_float] = ACTIONS(1448), + [anon_sym_c_double] = ACTIONS(1448), + [anon_sym_c_longdouble] = ACTIONS(1448), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_yield] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_defer] = ACTIONS(1448), + [anon_sym_errdefer] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_match] = ACTIONS(1448), + [anon_sym_DOT_DOT] = ACTIONS(1456), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1458), + [anon_sym_orelse] = ACTIONS(1460), + [anon_sym_catch] = ACTIONS(1462), + [anon_sym_or] = ACTIONS(1464), + [anon_sym_and] = ACTIONS(1466), + [anon_sym_EQ_EQ] = ACTIONS(1468), + [anon_sym_BANG_EQ] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_EQ] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_GT_EQ] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_try] = ACTIONS(1448), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(1448), + [anon_sym_false] = ACTIONS(1448), + [sym_none] = ACTIONS(1448), + [sym_undefined] = ACTIONS(1448), + [sym_sink] = ACTIONS(1448), + [sym_integer] = ACTIONS(1448), + [sym_float] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_multiline_string] = ACTIONS(1452), + [sym_character] = ACTIONS(1452), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1452), + }, + [STATE(614)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1886), + [sym_labeled_block] = STATE(1886), + [sym_if_statement] = STATE(1886), + [sym_while_statement] = STATE(1886), + [sym_for_statement] = STATE(1886), + [sym_match_statement] = STATE(1886), + [sym__value] = STATE(1886), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(640), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1508), + }, + [STATE(615)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1160), + [sym_labeled_block] = STATE(1160), + [sym_if_statement] = STATE(1160), + [sym_while_statement] = STATE(1160), + [sym_for_statement] = STATE(1160), + [sym_match_statement] = STATE(1160), + [sym__value] = STATE(1160), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(616)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1161), + [sym_labeled_block] = STATE(1161), + [sym_if_statement] = STATE(1161), + [sym_while_statement] = STATE(1161), + [sym_for_statement] = STATE(1161), + [sym_match_statement] = STATE(1161), + [sym__value] = STATE(1161), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(617)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1220), + [sym_labeled_block] = STATE(1220), + [sym_if_statement] = STATE(1220), + [sym_while_statement] = STATE(1220), + [sym_for_statement] = STATE(1220), + [sym_match_statement] = STATE(1220), + [sym__value] = STATE(1220), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(619), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -73384,45 +73647,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1510), }, - [STATE(620)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1136), - [sym_labeled_block] = STATE(1136), - [sym_if_statement] = STATE(1136), - [sym_while_statement] = STATE(1136), - [sym_for_statement] = STATE(1136), - [sym_match_statement] = STATE(1136), - [sym__value] = STATE(1136), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), + [STATE(618)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1118), + [sym_labeled_block] = STATE(1118), + [sym_if_statement] = STATE(1118), + [sym_while_statement] = STATE(1118), + [sym_for_statement] = STATE(1118), + [sym_match_statement] = STATE(1118), + [sym__value] = STATE(1118), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), [aux_sym_import_declaration_repeat1] = STATE(622), - [sym_identifier] = ACTIONS(1411), + [sym_identifier] = ACTIONS(882), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -73455,13 +73719,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(113), + [anon_sym_if] = ACTIONS(287), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -73475,227 +73739,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1512), }, + [STATE(619)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1143), + [sym_labeled_block] = STATE(1143), + [sym_if_statement] = STATE(1143), + [sym_while_statement] = STATE(1143), + [sym_for_statement] = STATE(1143), + [sym_match_statement] = STATE(1143), + [sym__value] = STATE(1143), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(620)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1160), + [sym_labeled_block] = STATE(1160), + [sym_if_statement] = STATE(1160), + [sym_while_statement] = STATE(1160), + [sym_for_statement] = STATE(1160), + [sym_match_statement] = STATE(1160), + [sym__value] = STATE(1160), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, [STATE(621)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1203), - [sym_labeled_block] = STATE(1203), - [sym_if_statement] = STATE(1203), - [sym_while_statement] = STATE(1203), - [sym_for_statement] = STATE(1203), - [sym_match_statement] = STATE(1203), - [sym__value] = STATE(1203), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(622)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1089), - [sym_labeled_block] = STATE(1089), - [sym_if_statement] = STATE(1089), - [sym_while_statement] = STATE(1089), - [sym_for_statement] = STATE(1089), - [sym_match_statement] = STATE(1089), - [sym__value] = STATE(1089), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(623)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1090), - [sym_labeled_block] = STATE(1090), - [sym_if_statement] = STATE(1090), - [sym_while_statement] = STATE(1090), - [sym_for_statement] = STATE(1090), - [sym_match_statement] = STATE(1090), - [sym__value] = STATE(1090), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1145), + [sym_labeled_block] = STATE(1145), + [sym_if_statement] = STATE(1145), + [sym_while_statement] = STATE(1145), + [sym_for_statement] = STATE(1145), + [sym_match_statement] = STATE(1145), + [sym__value] = STATE(1145), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), [aux_sym_import_declaration_repeat1] = STATE(626), - [sym_identifier] = ACTIONS(1411), + [sym_identifier] = ACTIONS(882), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -73728,13 +73995,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(113), + [anon_sym_if] = ACTIONS(287), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -73748,45 +74015,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1514), }, - [STATE(624)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1092), - [sym_labeled_block] = STATE(1092), - [sym_if_statement] = STATE(1092), - [sym_while_statement] = STATE(1092), - [sym_for_statement] = STATE(1092), - [sym_match_statement] = STATE(1092), - [sym__value] = STATE(1092), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(627), - [sym_identifier] = ACTIONS(1411), + [STATE(622)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1146), + [sym_labeled_block] = STATE(1146), + [sym_if_statement] = STATE(1146), + [sym_while_statement] = STATE(1146), + [sym_for_statement] = STATE(1146), + [sym_match_statement] = STATE(1146), + [sym__value] = STATE(1146), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -73819,13 +74087,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(113), + [anon_sym_if] = ACTIONS(287), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(623)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1668), + [sym_labeled_block] = STATE(1668), + [sym_if_statement] = STATE(1668), + [sym_while_statement] = STATE(1668), + [sym_for_statement] = STATE(1668), + [sym_match_statement] = STATE(1668), + [sym__value] = STATE(1668), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(641), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -73839,310 +74199,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1516), }, - [STATE(625)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1094), - [sym_labeled_block] = STATE(1094), - [sym_if_statement] = STATE(1094), - [sym_while_statement] = STATE(1094), - [sym_for_statement] = STATE(1094), - [sym_match_statement] = STATE(1094), - [sym__value] = STATE(1094), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(626)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1198), - [sym_labeled_block] = STATE(1198), - [sym_if_statement] = STATE(1198), - [sym_while_statement] = STATE(1198), - [sym_for_statement] = STATE(1198), - [sym_match_statement] = STATE(1198), - [sym__value] = STATE(1198), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(627)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1203), - [sym_labeled_block] = STATE(1203), - [sym_if_statement] = STATE(1203), - [sym_while_statement] = STATE(1203), - [sym_for_statement] = STATE(1203), - [sym_match_statement] = STATE(1203), - [sym__value] = STATE(1203), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(628)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1136), - [sym_labeled_block] = STATE(1136), - [sym_if_statement] = STATE(1136), - [sym_while_statement] = STATE(1136), - [sym_for_statement] = STATE(1136), - [sym_match_statement] = STATE(1136), - [sym__value] = STATE(1136), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(633), - [sym_identifier] = ACTIONS(880), + [STATE(624)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1888), + [sym_labeled_block] = STATE(1888), + [sym_if_statement] = STATE(1888), + [sym_while_statement] = STATE(1888), + [sym_for_statement] = STATE(1888), + [sym_match_statement] = STATE(1888), + [sym__value] = STATE(1888), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(578), + [sym_identifier] = ACTIONS(882), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), @@ -74183,13 +74271,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(413), + [anon_sym_if] = ACTIONS(287), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -74203,37 +74291,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1518), }, - [STATE(629)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1150), - [sym_labeled_block] = STATE(1150), - [sym_if_statement] = STATE(1150), - [sym_while_statement] = STATE(1150), - [sym_for_statement] = STATE(1150), - [sym_match_statement] = STATE(1150), - [sym__value] = STATE(1150), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(636), - [sym_identifier] = ACTIONS(880), + [STATE(625)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1160), + [sym_labeled_block] = STATE(1160), + [sym_if_statement] = STATE(1160), + [sym_while_statement] = STATE(1160), + [sym_for_statement] = STATE(1160), + [sym_match_statement] = STATE(1160), + [sym__value] = STATE(1160), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), @@ -74274,13 +74363,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(413), + [anon_sym_if] = ACTIONS(287), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(626)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1161), + [sym_labeled_block] = STATE(1161), + [sym_if_statement] = STATE(1161), + [sym_while_statement] = STATE(1161), + [sym_for_statement] = STATE(1161), + [sym_match_statement] = STATE(1161), + [sym__value] = STATE(1161), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(627)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1147), + [sym_labeled_block] = STATE(1147), + [sym_if_statement] = STATE(1147), + [sym_while_statement] = STATE(1147), + [sym_for_statement] = STATE(1147), + [sym_match_statement] = STATE(1147), + [sym__value] = STATE(1147), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(165), + [anon_sym_else] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1419), + }, + [STATE(628)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1220), + [sym_labeled_block] = STATE(1220), + [sym_if_statement] = STATE(1220), + [sym_while_statement] = STATE(1220), + [sym_for_statement] = STATE(1220), + [sym_match_statement] = STATE(1220), + [sym__value] = STATE(1220), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(647), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -74294,45 +74659,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1520), }, - [STATE(630)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1089), - [sym_labeled_block] = STATE(1089), - [sym_if_statement] = STATE(1089), - [sym_while_statement] = STATE(1089), - [sym_for_statement] = STATE(1089), - [sym_match_statement] = STATE(1089), - [sym__value] = STATE(1089), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1411), + [STATE(629)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1118), + [sym_labeled_block] = STATE(1118), + [sym_if_statement] = STATE(1118), + [sym_while_statement] = STATE(1118), + [sym_for_statement] = STATE(1118), + [sym_match_statement] = STATE(1118), + [sym__value] = STATE(1118), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(650), + [sym_identifier] = ACTIONS(1417), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -74365,103 +74731,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(241), + [anon_sym_if] = ACTIONS(303), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(631)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1090), - [sym_labeled_block] = STATE(1090), - [sym_if_statement] = STATE(1090), - [sym_while_statement] = STATE(1090), - [sym_for_statement] = STATE(1090), - [sym_match_statement] = STATE(1090), - [sym__value] = STATE(1090), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(581), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -74476,37 +74751,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1522), }, - [STATE(632)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1198), - [sym_labeled_block] = STATE(1198), - [sym_if_statement] = STATE(1198), - [sym_while_statement] = STATE(1198), - [sym_for_statement] = STATE(1198), - [sym_match_statement] = STATE(1198), - [sym__value] = STATE(1198), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), + [STATE(630)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1220), + [sym_labeled_block] = STATE(1220), + [sym_if_statement] = STATE(1220), + [sym_while_statement] = STATE(1220), + [sym_for_statement] = STATE(1220), + [sym_match_statement] = STATE(1220), + [sym__value] = STATE(1220), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(642), + [sym_identifier] = ACTIONS(882), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), @@ -74553,189 +74829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(633)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1089), - [sym_labeled_block] = STATE(1089), - [sym_if_statement] = STATE(1089), - [sym_while_statement] = STATE(1089), - [sym_for_statement] = STATE(1089), - [sym_match_statement] = STATE(1089), - [sym__value] = STATE(1089), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(634)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1090), - [sym_labeled_block] = STATE(1090), - [sym_if_statement] = STATE(1090), - [sym_while_statement] = STATE(1090), - [sym_for_statement] = STATE(1090), - [sym_match_statement] = STATE(1090), - [sym__value] = STATE(1090), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(639), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -74749,219 +74843,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1524), }, - [STATE(635)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1092), - [sym_labeled_block] = STATE(1092), - [sym_if_statement] = STATE(1092), - [sym_while_statement] = STATE(1092), - [sym_for_statement] = STATE(1092), - [sym_match_statement] = STATE(1092), - [sym__value] = STATE(1092), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(640), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1526), - }, - [STATE(636)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1094), - [sym_labeled_block] = STATE(1094), - [sym_if_statement] = STATE(1094), - [sym_while_statement] = STATE(1094), - [sym_for_statement] = STATE(1094), - [sym_match_statement] = STATE(1094), - [sym__value] = STATE(1094), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(413), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(637)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1203), - [sym_labeled_block] = STATE(1203), - [sym_if_statement] = STATE(1203), - [sym_while_statement] = STATE(1203), - [sym_for_statement] = STATE(1203), - [sym_match_statement] = STATE(1203), - [sym__value] = STATE(1203), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), + [STATE(631)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1118), + [sym_labeled_block] = STATE(1118), + [sym_if_statement] = STATE(1118), + [sym_while_statement] = STATE(1118), + [sym_for_statement] = STATE(1118), + [sym_match_statement] = STATE(1118), + [sym__value] = STATE(1118), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(645), + [sym_identifier] = ACTIONS(882), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), @@ -75008,7 +74921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -75020,47 +74933,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(1526), }, - [STATE(638)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1092), - [sym_labeled_block] = STATE(1092), - [sym_if_statement] = STATE(1092), - [sym_while_statement] = STATE(1092), - [sym_for_statement] = STATE(1092), - [sym_match_statement] = STATE(1092), - [sym__value] = STATE(1092), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(582), - [sym_identifier] = ACTIONS(1411), + [STATE(632)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1220), + [sym_labeled_block] = STATE(1220), + [sym_if_statement] = STATE(1220), + [sym_while_statement] = STATE(1220), + [sym_for_statement] = STATE(1220), + [sym_match_statement] = STATE(1220), + [sym__value] = STATE(1220), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(634), + [sym_identifier] = ACTIONS(1417), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -75093,12 +75007,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(241), + [anon_sym_if] = ACTIONS(303), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -75113,44 +75027,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1528), }, - [STATE(639)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1198), - [sym_labeled_block] = STATE(1198), - [sym_if_statement] = STATE(1198), - [sym_while_statement] = STATE(1198), - [sym_for_statement] = STATE(1198), - [sym_match_statement] = STATE(1198), - [sym__value] = STATE(1198), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), + [STATE(633)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1118), + [sym_labeled_block] = STATE(1118), + [sym_if_statement] = STATE(1118), + [sym_while_statement] = STATE(1118), + [sym_for_statement] = STATE(1118), + [sym_match_statement] = STATE(1118), + [sym__value] = STATE(1118), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(637), + [sym_identifier] = ACTIONS(1417), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -75184,13 +75099,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(413), + [anon_sym_if] = ACTIONS(165), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -75202,46 +75117,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(1530), }, - [STATE(640)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1203), - [sym_labeled_block] = STATE(1203), - [sym_if_statement] = STATE(1203), - [sym_while_statement] = STATE(1203), - [sym_for_statement] = STATE(1203), - [sym_match_statement] = STATE(1203), - [sym__value] = STATE(1203), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), + [STATE(634)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1143), + [sym_labeled_block] = STATE(1143), + [sym_if_statement] = STATE(1143), + [sym_while_statement] = STATE(1143), + [sym_for_statement] = STATE(1143), + [sym_match_statement] = STATE(1143), + [sym__value] = STATE(1143), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1417), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -75275,13 +75191,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(413), + [anon_sym_if] = ACTIONS(303), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -75293,137 +75209,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(641)] = { - [sym_variant_payload] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(1417), - [sym_identifier] = ACTIONS(1419), - [anon_sym_import] = ACTIONS(1419), - [anon_sym_func] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_EQ] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1417), - [anon_sym_RPAREN] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_COMMA] = ACTIONS(1417), - [anon_sym_RBRACE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_DOLLAR] = ACTIONS(1417), - [anon_sym_PIPE] = ACTIONS(1417), - [anon_sym_QMARK] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym_RBRACK] = ACTIONS(1417), - [anon_sym_void] = ACTIONS(1419), - [anon_sym_anyopaque] = ACTIONS(1419), - [anon_sym_bool] = ACTIONS(1419), - [anon_sym_int] = ACTIONS(1419), - [anon_sym_float] = ACTIONS(1419), - [anon_sym_range] = ACTIONS(1419), - [anon_sym_i8] = ACTIONS(1419), - [anon_sym_i16] = ACTIONS(1419), - [anon_sym_i32] = ACTIONS(1419), - [anon_sym_i64] = ACTIONS(1419), - [anon_sym_u8] = ACTIONS(1419), - [anon_sym_u16] = ACTIONS(1419), - [anon_sym_u32] = ACTIONS(1419), - [anon_sym_u64] = ACTIONS(1419), - [anon_sym_isize] = ACTIONS(1419), - [anon_sym_usize] = ACTIONS(1419), - [anon_sym_f32] = ACTIONS(1419), - [anon_sym_f64] = ACTIONS(1419), - [anon_sym_c_char] = ACTIONS(1419), - [anon_sym_c_schar] = ACTIONS(1419), - [anon_sym_c_uchar] = ACTIONS(1419), - [anon_sym_c_short] = ACTIONS(1419), - [anon_sym_c_ushort] = ACTIONS(1419), - [anon_sym_c_int] = ACTIONS(1419), - [anon_sym_c_uint] = ACTIONS(1419), - [anon_sym_c_long] = ACTIONS(1419), - [anon_sym_c_ulong] = ACTIONS(1419), - [anon_sym_c_longlong] = ACTIONS(1419), - [anon_sym_c_ulonglong] = ACTIONS(1419), - [anon_sym_c_float] = ACTIONS(1419), - [anon_sym_c_double] = ACTIONS(1419), - [anon_sym_c_longdouble] = ACTIONS(1419), - [anon_sym_PLUS_EQ] = ACTIONS(1417), - [anon_sym_DASH_EQ] = ACTIONS(1417), - [anon_sym_STAR_EQ] = ACTIONS(1417), - [anon_sym_SLASH_EQ] = ACTIONS(1417), - [anon_sym_COLON] = ACTIONS(1417), - [anon_sym_else] = ACTIONS(1419), - [anon_sym_DOT_DOT] = ACTIONS(1419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1417), - [anon_sym_orelse] = ACTIONS(1419), - [anon_sym_catch] = ACTIONS(1419), - [anon_sym_or] = ACTIONS(1419), - [anon_sym_and] = ACTIONS(1419), - [anon_sym_EQ_EQ] = ACTIONS(1417), - [anon_sym_BANG_EQ] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_LT_EQ] = ACTIONS(1417), - [anon_sym_GT] = ACTIONS(1419), - [anon_sym_GT_EQ] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_SLASH] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1417), - [anon_sym_try] = ACTIONS(1419), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_true] = ACTIONS(1419), - [anon_sym_false] = ACTIONS(1419), - [sym_none] = ACTIONS(1419), - [sym_undefined] = ACTIONS(1419), - [sym_sink] = ACTIONS(1419), - [sym_integer] = ACTIONS(1419), - [sym_float] = ACTIONS(1417), - [anon_sym_DQUOTE] = ACTIONS(1417), - [sym_multiline_string] = ACTIONS(1417), - [sym_character] = ACTIONS(1417), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1417), - }, - [STATE(642)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1136), - [sym_labeled_block] = STATE(1136), - [sym_if_statement] = STATE(1136), - [sym_while_statement] = STATE(1136), - [sym_for_statement] = STATE(1136), - [sym_match_statement] = STATE(1136), - [sym__value] = STATE(1136), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(644), - [sym_identifier] = ACTIONS(1411), + [STATE(635)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1144), + [sym_labeled_block] = STATE(1144), + [sym_if_statement] = STATE(1144), + [sym_while_statement] = STATE(1144), + [sym_for_statement] = STATE(1144), + [sym_match_statement] = STATE(1144), + [sym__value] = STATE(1144), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(638), + [sym_identifier] = ACTIONS(1417), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -75457,12 +75283,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(431), + [anon_sym_if] = ACTIONS(303), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -75477,44 +75303,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1532), }, - [STATE(643)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1150), - [sym_labeled_block] = STATE(1150), - [sym_if_statement] = STATE(1150), - [sym_while_statement] = STATE(1150), - [sym_for_statement] = STATE(1150), - [sym_match_statement] = STATE(1150), - [sym__value] = STATE(1150), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(647), - [sym_identifier] = ACTIONS(1411), + [STATE(636)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1145), + [sym_labeled_block] = STATE(1145), + [sym_if_statement] = STATE(1145), + [sym_while_statement] = STATE(1145), + [sym_for_statement] = STATE(1145), + [sym_match_statement] = STATE(1145), + [sym__value] = STATE(1145), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(639), + [sym_identifier] = ACTIONS(1417), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -75548,12 +75375,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(139), + [anon_sym_if] = ACTIONS(303), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -75568,44 +75395,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1534), }, - [STATE(644)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1089), - [sym_labeled_block] = STATE(1089), - [sym_if_statement] = STATE(1089), - [sym_while_statement] = STATE(1089), - [sym_for_statement] = STATE(1089), - [sym_match_statement] = STATE(1089), - [sym__value] = STATE(1089), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1411), + [STATE(637)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1146), + [sym_labeled_block] = STATE(1146), + [sym_if_statement] = STATE(1146), + [sym_while_statement] = STATE(1146), + [sym_for_statement] = STATE(1146), + [sym_match_statement] = STATE(1146), + [sym__value] = STATE(1146), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1417), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -75639,12 +75467,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(431), + [anon_sym_if] = ACTIONS(165), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -75657,46 +75485,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(645)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1090), - [sym_labeled_block] = STATE(1090), - [sym_if_statement] = STATE(1090), - [sym_while_statement] = STATE(1090), - [sym_for_statement] = STATE(1090), - [sym_match_statement] = STATE(1090), - [sym__value] = STATE(1090), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(648), - [sym_identifier] = ACTIONS(1411), + [STATE(638)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1160), + [sym_labeled_block] = STATE(1160), + [sym_if_statement] = STATE(1160), + [sym_while_statement] = STATE(1160), + [sym_for_statement] = STATE(1160), + [sym_match_statement] = STATE(1160), + [sym__value] = STATE(1160), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1417), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -75730,12 +75559,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(431), + [anon_sym_if] = ACTIONS(303), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -75748,46 +75577,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1536), + [sym__newline] = ACTIONS(227), }, - [STATE(646)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1092), - [sym_labeled_block] = STATE(1092), - [sym_if_statement] = STATE(1092), - [sym_while_statement] = STATE(1092), - [sym_for_statement] = STATE(1092), - [sym_match_statement] = STATE(1092), - [sym__value] = STATE(1092), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(649), - [sym_identifier] = ACTIONS(1411), + [STATE(639)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1161), + [sym_labeled_block] = STATE(1161), + [sym_if_statement] = STATE(1161), + [sym_while_statement] = STATE(1161), + [sym_for_statement] = STATE(1161), + [sym_match_statement] = STATE(1161), + [sym__value] = STATE(1161), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1417), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -75821,12 +75651,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(431), + [anon_sym_if] = ACTIONS(303), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -75839,1220 +75669,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1538), + [sym__newline] = ACTIONS(227), }, - [STATE(647)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1094), - [sym_labeled_block] = STATE(1094), - [sym_if_statement] = STATE(1094), - [sym_while_statement] = STATE(1094), - [sym_for_statement] = STATE(1094), - [sym_match_statement] = STATE(1094), - [sym__value] = STATE(1094), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(648)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1198), - [sym_labeled_block] = STATE(1198), - [sym_if_statement] = STATE(1198), - [sym_while_statement] = STATE(1198), - [sym_for_statement] = STATE(1198), - [sym_match_statement] = STATE(1198), - [sym__value] = STATE(1198), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(431), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(649)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1203), - [sym_labeled_block] = STATE(1203), - [sym_if_statement] = STATE(1203), - [sym_while_statement] = STATE(1203), - [sym_for_statement] = STATE(1203), - [sym_match_statement] = STATE(1203), - [sym__value] = STATE(1203), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(431), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(650)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1150), - [sym_labeled_block] = STATE(1150), - [sym_if_statement] = STATE(1150), - [sym_while_statement] = STATE(1150), - [sym_for_statement] = STATE(1150), - [sym_match_statement] = STATE(1150), - [sym__value] = STATE(1150), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(651), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1540), - }, - [STATE(651)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1094), - [sym_labeled_block] = STATE(1094), - [sym_if_statement] = STATE(1094), - [sym_while_statement] = STATE(1094), - [sym_for_statement] = STATE(1094), - [sym_match_statement] = STATE(1094), - [sym__value] = STATE(1094), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(193), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(652)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1062), - [sym_labeled_block] = STATE(1062), - [sym_if_statement] = STATE(1062), - [sym_while_statement] = STATE(1062), - [sym_for_statement] = STATE(1062), - [sym_match_statement] = STATE(1062), - [sym__value] = STATE(1062), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1413), - }, - [STATE(653)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1136), - [sym_labeled_block] = STATE(1136), - [sym_if_statement] = STATE(1136), - [sym_while_statement] = STATE(1136), - [sym_for_statement] = STATE(1136), - [sym_match_statement] = STATE(1136), - [sym__value] = STATE(1136), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1542), - }, - [STATE(654)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1089), - [sym_labeled_block] = STATE(1089), - [sym_if_statement] = STATE(1089), - [sym_while_statement] = STATE(1089), - [sym_for_statement] = STATE(1089), - [sym_match_statement] = STATE(1089), - [sym__value] = STATE(1089), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(655)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1090), - [sym_labeled_block] = STATE(1090), - [sym_if_statement] = STATE(1090), - [sym_while_statement] = STATE(1090), - [sym_for_statement] = STATE(1090), - [sym_match_statement] = STATE(1090), - [sym__value] = STATE(1090), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(657), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1544), - }, - [STATE(656)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1092), - [sym_labeled_block] = STATE(1092), - [sym_if_statement] = STATE(1092), - [sym_while_statement] = STATE(1092), - [sym_for_statement] = STATE(1092), - [sym_match_statement] = STATE(1092), - [sym__value] = STATE(1092), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(621), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1546), - }, - [STATE(657)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1198), - [sym_labeled_block] = STATE(1198), - [sym_if_statement] = STATE(1198), - [sym_while_statement] = STATE(1198), - [sym_for_statement] = STATE(1198), - [sym_match_statement] = STATE(1198), - [sym__value] = STATE(1198), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(658)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1150), - [sym_labeled_block] = STATE(1150), - [sym_if_statement] = STATE(1150), - [sym_while_statement] = STATE(1150), - [sym_for_statement] = STATE(1150), - [sym_match_statement] = STATE(1150), - [sym__value] = STATE(1150), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(625), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(113), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1548), - }, - [STATE(659)] = { - [ts_builtin_sym_end] = ACTIONS(855), - [sym_identifier] = ACTIONS(850), - [anon_sym_import] = ACTIONS(850), - [anon_sym_func] = ACTIONS(850), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_COMMA] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_QMARK] = ACTIONS(855), - [anon_sym_STAR] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(855), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_RBRACK] = ACTIONS(855), - [anon_sym_void] = ACTIONS(850), - [anon_sym_anyopaque] = ACTIONS(850), - [anon_sym_bool] = ACTIONS(850), - [anon_sym_int] = ACTIONS(850), - [anon_sym_float] = ACTIONS(850), - [anon_sym_range] = ACTIONS(850), - [anon_sym_i8] = ACTIONS(850), - [anon_sym_i16] = ACTIONS(850), - [anon_sym_i32] = ACTIONS(850), - [anon_sym_i64] = ACTIONS(850), - [anon_sym_u8] = ACTIONS(850), - [anon_sym_u16] = ACTIONS(850), - [anon_sym_u32] = ACTIONS(850), - [anon_sym_u64] = ACTIONS(850), - [anon_sym_isize] = ACTIONS(850), - [anon_sym_usize] = ACTIONS(850), - [anon_sym_f32] = ACTIONS(850), - [anon_sym_f64] = ACTIONS(850), - [anon_sym_c_char] = ACTIONS(850), - [anon_sym_c_schar] = ACTIONS(850), - [anon_sym_c_uchar] = ACTIONS(850), - [anon_sym_c_short] = ACTIONS(850), - [anon_sym_c_ushort] = ACTIONS(850), - [anon_sym_c_int] = ACTIONS(850), - [anon_sym_c_uint] = ACTIONS(850), - [anon_sym_c_long] = ACTIONS(850), - [anon_sym_c_ulong] = ACTIONS(850), - [anon_sym_c_longlong] = ACTIONS(850), - [anon_sym_c_ulonglong] = ACTIONS(850), - [anon_sym_c_float] = ACTIONS(850), - [anon_sym_c_double] = ACTIONS(850), - [anon_sym_c_longdouble] = ACTIONS(850), - [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_COLON] = ACTIONS(855), - [anon_sym_else] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_AMP] = ACTIONS(855), - [anon_sym_try] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(871), - [anon_sym_CARET] = ACTIONS(855), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [sym_none] = ACTIONS(850), - [sym_undefined] = ACTIONS(850), - [sym_sink] = ACTIONS(850), - [sym_integer] = ACTIONS(850), - [sym_float] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [sym_multiline_string] = ACTIONS(855), - [sym_character] = ACTIONS(855), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), - }, - [STATE(660)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1095), - [sym_labeled_block] = STATE(1095), - [sym_if_statement] = STATE(1095), - [sym_while_statement] = STATE(1095), - [sym_for_statement] = STATE(1095), - [sym_match_statement] = STATE(1095), - [sym__value] = STATE(1095), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(880), + [STATE(640)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1790), + [sym_labeled_block] = STATE(1790), + [sym_if_statement] = STATE(1790), + [sym_while_statement] = STATE(1790), + [sym_for_statement] = STATE(1790), + [sym_match_statement] = STATE(1790), + [sym__value] = STATE(1790), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), @@ -77093,14 +75743,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_COLON] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(51), + [anon_sym_if] = ACTIONS(287), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -77112,45 +75761,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), }, - [STATE(661)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1095), - [sym_labeled_block] = STATE(1095), - [sym_if_statement] = STATE(1095), - [sym_while_statement] = STATE(1095), - [sym_for_statement] = STATE(1095), - [sym_match_statement] = STATE(1095), - [sym__value] = STATE(1095), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(880), + [STATE(641)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1804), + [sym_labeled_block] = STATE(1804), + [sym_if_statement] = STATE(1804), + [sym_while_statement] = STATE(1804), + [sym_for_statement] = STATE(1804), + [sym_match_statement] = STATE(1804), + [sym__value] = STATE(1804), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -77183,14 +75835,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_COLON] = ACTIONS(1552), - [anon_sym_if] = ACTIONS(193), + [anon_sym_if] = ACTIONS(287), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -77202,37 +75853,500 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), }, - [STATE(662)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1095), - [sym_labeled_block] = STATE(1095), - [sym_if_statement] = STATE(1095), - [sym_while_statement] = STATE(1095), - [sym_for_statement] = STATE(1095), - [sym_match_statement] = STATE(1095), - [sym__value] = STATE(1095), - [sym_expression] = STATE(998), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(880), + [STATE(642)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1143), + [sym_labeled_block] = STATE(1143), + [sym_if_statement] = STATE(1143), + [sym_while_statement] = STATE(1143), + [sym_for_statement] = STATE(1143), + [sym_match_statement] = STATE(1143), + [sym__value] = STATE(1143), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(51), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(643)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1144), + [sym_labeled_block] = STATE(1144), + [sym_if_statement] = STATE(1144), + [sym_while_statement] = STATE(1144), + [sym_for_statement] = STATE(1144), + [sym_match_statement] = STATE(1144), + [sym__value] = STATE(1144), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(609), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(51), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1536), + }, + [STATE(644)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1145), + [sym_labeled_block] = STATE(1145), + [sym_if_statement] = STATE(1145), + [sym_while_statement] = STATE(1145), + [sym_for_statement] = STATE(1145), + [sym_match_statement] = STATE(1145), + [sym__value] = STATE(1145), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(612), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(51), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1538), + }, + [STATE(645)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1146), + [sym_labeled_block] = STATE(1146), + [sym_if_statement] = STATE(1146), + [sym_while_statement] = STATE(1146), + [sym_for_statement] = STATE(1146), + [sym_match_statement] = STATE(1146), + [sym__value] = STATE(1146), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(51), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(646)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1161), + [sym_labeled_block] = STATE(1161), + [sym_if_statement] = STATE(1161), + [sym_while_statement] = STATE(1161), + [sym_for_statement] = STATE(1161), + [sym_match_statement] = STATE(1161), + [sym__value] = STATE(1161), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(647)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1143), + [sym_labeled_block] = STATE(1143), + [sym_if_statement] = STATE(1143), + [sym_while_statement] = STATE(1143), + [sym_for_statement] = STATE(1143), + [sym_match_statement] = STATE(1143), + [sym__value] = STATE(1143), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1417), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), @@ -77240,7 +76354,1110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(167), [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(648)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1144), + [sym_labeled_block] = STATE(1144), + [sym_if_statement] = STATE(1144), + [sym_while_statement] = STATE(1144), + [sym_for_statement] = STATE(1144), + [sym_match_statement] = STATE(1144), + [sym__value] = STATE(1144), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(579), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1540), + }, + [STATE(649)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1145), + [sym_labeled_block] = STATE(1145), + [sym_if_statement] = STATE(1145), + [sym_while_statement] = STATE(1145), + [sym_for_statement] = STATE(1145), + [sym_match_statement] = STATE(1145), + [sym__value] = STATE(1145), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(580), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1542), + }, + [STATE(650)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1146), + [sym_labeled_block] = STATE(1146), + [sym_if_statement] = STATE(1146), + [sym_while_statement] = STATE(1146), + [sym_for_statement] = STATE(1146), + [sym_match_statement] = STATE(1146), + [sym__value] = STATE(1146), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(651)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1118), + [sym_labeled_block] = STATE(1118), + [sym_if_statement] = STATE(1118), + [sym_while_statement] = STATE(1118), + [sym_for_statement] = STATE(1118), + [sym_match_statement] = STATE(1118), + [sym__value] = STATE(1118), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(652), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1544), + }, + [STATE(652)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1146), + [sym_labeled_block] = STATE(1146), + [sym_if_statement] = STATE(1146), + [sym_while_statement] = STATE(1146), + [sym_for_statement] = STATE(1146), + [sym_match_statement] = STATE(1146), + [sym__value] = STATE(1146), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(653)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1147), + [sym_labeled_block] = STATE(1147), + [sym_if_statement] = STATE(1147), + [sym_while_statement] = STATE(1147), + [sym_for_statement] = STATE(1147), + [sym_match_statement] = STATE(1147), + [sym__value] = STATE(1147), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_RPAREN] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1419), + }, + [STATE(654)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1220), + [sym_labeled_block] = STATE(1220), + [sym_if_statement] = STATE(1220), + [sym_while_statement] = STATE(1220), + [sym_for_statement] = STATE(1220), + [sym_match_statement] = STATE(1220), + [sym__value] = STATE(1220), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(655), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1546), + }, + [STATE(655)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1143), + [sym_labeled_block] = STATE(1143), + [sym_if_statement] = STATE(1143), + [sym_while_statement] = STATE(1143), + [sym_for_statement] = STATE(1143), + [sym_match_statement] = STATE(1143), + [sym__value] = STATE(1143), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(656)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1144), + [sym_labeled_block] = STATE(1144), + [sym_if_statement] = STATE(1144), + [sym_while_statement] = STATE(1144), + [sym_for_statement] = STATE(1144), + [sym_match_statement] = STATE(1144), + [sym__value] = STATE(1144), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(620), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1548), + }, + [STATE(657)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1145), + [sym_labeled_block] = STATE(1145), + [sym_if_statement] = STATE(1145), + [sym_while_statement] = STATE(1145), + [sym_for_statement] = STATE(1145), + [sym_match_statement] = STATE(1145), + [sym__value] = STATE(1145), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(646), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1550), + }, + [STATE(658)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1144), + [sym_labeled_block] = STATE(1144), + [sym_if_statement] = STATE(1144), + [sym_while_statement] = STATE(1144), + [sym_for_statement] = STATE(1144), + [sym_match_statement] = STATE(1144), + [sym__value] = STATE(1144), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(625), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1552), + }, + [STATE(659)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1149), + [sym_labeled_block] = STATE(1149), + [sym_if_statement] = STATE(1149), + [sym_while_statement] = STATE(1149), + [sym_for_statement] = STATE(1149), + [sym_match_statement] = STATE(1149), + [sym__value] = STATE(1149), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -77280,7 +77497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(167), [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -77293,43 +77510,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), }, - [STATE(663)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1095), - [sym_labeled_block] = STATE(1095), - [sym_if_statement] = STATE(1095), - [sym_while_statement] = STATE(1095), - [sym_for_statement] = STATE(1095), - [sym_match_statement] = STATE(1095), - [sym__value] = STATE(1095), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(1411), + [STATE(660)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1149), + [sym_labeled_block] = STATE(1149), + [sym_if_statement] = STATE(1149), + [sym_while_statement] = STATE(1149), + [sym_for_statement] = STATE(1149), + [sym_match_statement] = STATE(1149), + [sym__value] = STATE(1149), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(1417), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -77364,12 +77582,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), [anon_sym_COLON] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(113), + [anon_sym_if] = ACTIONS(139), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -77383,216 +77601,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), }, - [STATE(664)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1095), - [sym_labeled_block] = STATE(1095), - [sym_if_statement] = STATE(1095), - [sym_while_statement] = STATE(1095), - [sym_for_statement] = STATE(1095), - [sym_match_statement] = STATE(1095), - [sym__value] = STATE(1095), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_COLON] = ACTIONS(1558), - [anon_sym_if] = ACTIONS(241), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [STATE(665)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1095), - [sym_labeled_block] = STATE(1095), - [sym_if_statement] = STATE(1095), - [sym_while_statement] = STATE(1095), - [sym_for_statement] = STATE(1095), - [sym_match_statement] = STATE(1095), - [sym__value] = STATE(1095), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_COLON] = ACTIONS(1560), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [STATE(666)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1095), - [sym_labeled_block] = STATE(1095), - [sym_if_statement] = STATE(1095), - [sym_while_statement] = STATE(1095), - [sym_for_statement] = STATE(1095), - [sym_match_statement] = STATE(1095), - [sym__value] = STATE(1095), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(880), + [STATE(661)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1149), + [sym_labeled_block] = STATE(1149), + [sym_if_statement] = STATE(1149), + [sym_while_statement] = STATE(1149), + [sym_for_statement] = STATE(1149), + [sym_match_statement] = STATE(1149), + [sym__value] = STATE(1149), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(882), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), @@ -77633,14 +77672,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_COLON] = ACTIONS(1562), - [anon_sym_if] = ACTIONS(413), + [anon_sym_COLON] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(287), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -77653,43 +77692,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), }, - [STATE(667)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1095), - [sym_labeled_block] = STATE(1095), - [sym_if_statement] = STATE(1095), - [sym_while_statement] = STATE(1095), - [sym_for_statement] = STATE(1095), - [sym_match_statement] = STATE(1095), - [sym__value] = STATE(1095), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(1411), + [STATE(662)] = { + [sym_variant_payload] = STATE(468), + [ts_builtin_sym_end] = ACTIONS(1423), + [sym_identifier] = ACTIONS(1425), + [anon_sym_import] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(1425), + [anon_sym_BANG] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_struct] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_RPAREN] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_COMMA] = ACTIONS(1423), + [anon_sym_RBRACE] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_DOLLAR] = ACTIONS(1423), + [anon_sym_PIPE] = ACTIONS(1423), + [anon_sym_QMARK] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_SEMI] = ACTIONS(1423), + [anon_sym_RBRACK] = ACTIONS(1423), + [anon_sym_void] = ACTIONS(1425), + [anon_sym_anyopaque] = ACTIONS(1425), + [anon_sym_bool] = ACTIONS(1425), + [anon_sym_int] = ACTIONS(1425), + [anon_sym_float] = ACTIONS(1425), + [anon_sym_range] = ACTIONS(1425), + [anon_sym_i8] = ACTIONS(1425), + [anon_sym_i16] = ACTIONS(1425), + [anon_sym_i32] = ACTIONS(1425), + [anon_sym_i64] = ACTIONS(1425), + [anon_sym_u8] = ACTIONS(1425), + [anon_sym_u16] = ACTIONS(1425), + [anon_sym_u32] = ACTIONS(1425), + [anon_sym_u64] = ACTIONS(1425), + [anon_sym_isize] = ACTIONS(1425), + [anon_sym_usize] = ACTIONS(1425), + [anon_sym_f32] = ACTIONS(1425), + [anon_sym_f64] = ACTIONS(1425), + [anon_sym_c_char] = ACTIONS(1425), + [anon_sym_c_schar] = ACTIONS(1425), + [anon_sym_c_uchar] = ACTIONS(1425), + [anon_sym_c_short] = ACTIONS(1425), + [anon_sym_c_ushort] = ACTIONS(1425), + [anon_sym_c_int] = ACTIONS(1425), + [anon_sym_c_uint] = ACTIONS(1425), + [anon_sym_c_long] = ACTIONS(1425), + [anon_sym_c_ulong] = ACTIONS(1425), + [anon_sym_c_longlong] = ACTIONS(1425), + [anon_sym_c_ulonglong] = ACTIONS(1425), + [anon_sym_c_float] = ACTIONS(1425), + [anon_sym_c_double] = ACTIONS(1425), + [anon_sym_c_longdouble] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1423), + [anon_sym_DASH_EQ] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1423), + [anon_sym_SLASH_EQ] = ACTIONS(1423), + [anon_sym_COLON] = ACTIONS(1423), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1423), + [anon_sym_orelse] = ACTIONS(1425), + [anon_sym_catch] = ACTIONS(1425), + [anon_sym_or] = ACTIONS(1425), + [anon_sym_and] = ACTIONS(1425), + [anon_sym_EQ_EQ] = ACTIONS(1423), + [anon_sym_BANG_EQ] = ACTIONS(1423), + [anon_sym_LT] = ACTIONS(1425), + [anon_sym_LT_EQ] = ACTIONS(1423), + [anon_sym_GT] = ACTIONS(1425), + [anon_sym_GT_EQ] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_try] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [sym_none] = ACTIONS(1425), + [sym_undefined] = ACTIONS(1425), + [sym_sink] = ACTIONS(1425), + [sym_integer] = ACTIONS(1425), + [sym_float] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym_multiline_string] = ACTIONS(1423), + [sym_character] = ACTIONS(1423), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1423), + }, + [STATE(663)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1149), + [sym_labeled_block] = STATE(1149), + [sym_if_statement] = STATE(1149), + [sym_while_statement] = STATE(1149), + [sym_for_statement] = STATE(1149), + [sym_match_statement] = STATE(1149), + [sym__value] = STATE(1149), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(1417), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(1562), + [anon_sym_if] = ACTIONS(241), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + }, + [STATE(664)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1149), + [sym_labeled_block] = STATE(1149), + [sym_if_statement] = STATE(1149), + [sym_while_statement] = STATE(1149), + [sym_for_statement] = STATE(1149), + [sym_match_statement] = STATE(1149), + [sym__value] = STATE(1149), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -77724,12 +77946,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), [anon_sym_COLON] = ACTIONS(1564), - [anon_sym_if] = ACTIONS(139), + [anon_sym_if] = ACTIONS(303), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -77743,394 +77965,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), }, - [STATE(668)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1062), - [sym_labeled_block] = STATE(1062), - [sym_if_statement] = STATE(1062), - [sym_while_statement] = STATE(1062), - [sym_for_statement] = STATE(1062), - [sym_match_statement] = STATE(1062), - [sym__value] = STATE(1062), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(431), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1413), - }, - [STATE(669)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1095), - [sym_labeled_block] = STATE(1095), - [sym_if_statement] = STATE(1095), - [sym_while_statement] = STATE(1095), - [sym_for_statement] = STATE(1095), - [sym_match_statement] = STATE(1095), - [sym__value] = STATE(1095), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_COLON] = ACTIONS(1566), - [anon_sym_if] = ACTIONS(431), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [STATE(670)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1086), - [sym_labeled_block] = STATE(1086), - [sym_if_statement] = STATE(1086), - [sym_while_statement] = STATE(1086), - [sym_for_statement] = STATE(1086), - [sym_match_statement] = STATE(1086), - [sym__value] = STATE(1086), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(139), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [STATE(671)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1086), - [sym_labeled_block] = STATE(1086), - [sym_if_statement] = STATE(1086), - [sym_while_statement] = STATE(1086), - [sym_for_statement] = STATE(1086), - [sym_match_statement] = STATE(1086), - [sym__value] = STATE(1086), - [sym_expression] = STATE(1440), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(1411), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(431), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [STATE(672)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1086), - [sym_labeled_block] = STATE(1086), - [sym_if_statement] = STATE(1086), - [sym_while_statement] = STATE(1086), - [sym_for_statement] = STATE(1086), - [sym_match_statement] = STATE(1086), - [sym__value] = STATE(1086), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(880), + [STATE(665)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1149), + [sym_labeled_block] = STATE(1149), + [sym_if_statement] = STATE(1149), + [sym_while_statement] = STATE(1149), + [sym_for_statement] = STATE(1149), + [sym_match_statement] = STATE(1149), + [sym__value] = STATE(1149), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(882), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), @@ -78171,13 +78036,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(413), + [anon_sym_COLON] = ACTIONS(1566), + [anon_sym_if] = ACTIONS(51), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -78190,43 +78056,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), }, - [STATE(673)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1086), - [sym_labeled_block] = STATE(1086), - [sym_if_statement] = STATE(1086), - [sym_while_statement] = STATE(1086), - [sym_for_statement] = STATE(1086), - [sym_match_statement] = STATE(1086), - [sym__value] = STATE(1086), - [sym_expression] = STATE(998), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(880), + [STATE(666)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1149), + [sym_labeled_block] = STATE(1149), + [sym_if_statement] = STATE(1149), + [sym_while_statement] = STATE(1149), + [sym_for_statement] = STATE(1149), + [sym_match_statement] = STATE(1149), + [sym__value] = STATE(1149), + [sym_expression] = STATE(999), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(882), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -78260,13 +78127,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(1568), + [anon_sym_if] = ACTIONS(191), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -78279,36 +78147,580 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), }, - [STATE(674)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1086), - [sym_labeled_block] = STATE(1086), - [sym_if_statement] = STATE(1086), - [sym_while_statement] = STATE(1086), - [sym_for_statement] = STATE(1086), - [sym_match_statement] = STATE(1086), - [sym__value] = STATE(1086), - [sym_expression] = STATE(1429), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(880), + [STATE(667)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1147), + [sym_labeled_block] = STATE(1147), + [sym_if_statement] = STATE(1147), + [sym_while_statement] = STATE(1147), + [sym_for_statement] = STATE(1147), + [sym_match_statement] = STATE(1147), + [sym__value] = STATE(1147), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1419), + }, + [STATE(668)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1149), + [sym_labeled_block] = STATE(1149), + [sym_if_statement] = STATE(1149), + [sym_while_statement] = STATE(1149), + [sym_for_statement] = STATE(1149), + [sym_match_statement] = STATE(1149), + [sym__value] = STATE(1149), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(1570), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + }, + [STATE(669)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1149), + [sym_labeled_block] = STATE(1149), + [sym_if_statement] = STATE(1149), + [sym_while_statement] = STATE(1149), + [sym_for_statement] = STATE(1149), + [sym_match_statement] = STATE(1149), + [sym__value] = STATE(1149), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(1572), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + }, + [STATE(670)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1140), + [sym_labeled_block] = STATE(1140), + [sym_if_statement] = STATE(1140), + [sym_while_statement] = STATE(1140), + [sym_for_statement] = STATE(1140), + [sym_match_statement] = STATE(1140), + [sym__value] = STATE(1140), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(111), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + }, + [STATE(671)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1140), + [sym_labeled_block] = STATE(1140), + [sym_if_statement] = STATE(1140), + [sym_while_statement] = STATE(1140), + [sym_for_statement] = STATE(1140), + [sym_match_statement] = STATE(1140), + [sym__value] = STATE(1140), + [sym_expression] = STATE(999), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(191), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + }, + [STATE(672)] = { + [ts_builtin_sym_end] = ACTIONS(857), + [sym_identifier] = ACTIONS(852), + [anon_sym_import] = ACTIONS(852), + [anon_sym_func] = ACTIONS(852), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_struct] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_RPAREN] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_DOLLAR] = ACTIONS(857), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(857), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_RBRACK] = ACTIONS(857), + [anon_sym_void] = ACTIONS(852), + [anon_sym_anyopaque] = ACTIONS(852), + [anon_sym_bool] = ACTIONS(852), + [anon_sym_int] = ACTIONS(852), + [anon_sym_float] = ACTIONS(852), + [anon_sym_range] = ACTIONS(852), + [anon_sym_i8] = ACTIONS(852), + [anon_sym_i16] = ACTIONS(852), + [anon_sym_i32] = ACTIONS(852), + [anon_sym_i64] = ACTIONS(852), + [anon_sym_u8] = ACTIONS(852), + [anon_sym_u16] = ACTIONS(852), + [anon_sym_u32] = ACTIONS(852), + [anon_sym_u64] = ACTIONS(852), + [anon_sym_isize] = ACTIONS(852), + [anon_sym_usize] = ACTIONS(852), + [anon_sym_f32] = ACTIONS(852), + [anon_sym_f64] = ACTIONS(852), + [anon_sym_c_char] = ACTIONS(852), + [anon_sym_c_schar] = ACTIONS(852), + [anon_sym_c_uchar] = ACTIONS(852), + [anon_sym_c_short] = ACTIONS(852), + [anon_sym_c_ushort] = ACTIONS(852), + [anon_sym_c_int] = ACTIONS(852), + [anon_sym_c_uint] = ACTIONS(852), + [anon_sym_c_long] = ACTIONS(852), + [anon_sym_c_ulong] = ACTIONS(852), + [anon_sym_c_longlong] = ACTIONS(852), + [anon_sym_c_ulonglong] = ACTIONS(852), + [anon_sym_c_float] = ACTIONS(852), + [anon_sym_c_double] = ACTIONS(852), + [anon_sym_c_longdouble] = ACTIONS(852), + [anon_sym_PLUS_EQ] = ACTIONS(857), + [anon_sym_DASH_EQ] = ACTIONS(857), + [anon_sym_STAR_EQ] = ACTIONS(857), + [anon_sym_SLASH_EQ] = ACTIONS(857), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_else] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_try] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_true] = ACTIONS(852), + [anon_sym_false] = ACTIONS(852), + [sym_none] = ACTIONS(852), + [sym_undefined] = ACTIONS(852), + [sym_sink] = ACTIONS(852), + [sym_integer] = ACTIONS(852), + [sym_float] = ACTIONS(857), + [anon_sym_DQUOTE] = ACTIONS(857), + [sym_multiline_string] = ACTIONS(857), + [sym_character] = ACTIONS(857), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(857), + }, + [STATE(673)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1140), + [sym_labeled_block] = STATE(1140), + [sym_if_statement] = STATE(1140), + [sym_while_statement] = STATE(1140), + [sym_for_statement] = STATE(1140), + [sym_match_statement] = STATE(1140), + [sym__value] = STATE(1140), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(882), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), @@ -78355,7 +78767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -78368,43 +78780,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), }, - [STATE(675)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1086), - [sym_labeled_block] = STATE(1086), - [sym_if_statement] = STATE(1086), - [sym_while_statement] = STATE(1086), - [sym_for_statement] = STATE(1086), - [sym_match_statement] = STATE(1086), - [sym__value] = STATE(1086), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(1411), + [STATE(674)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1140), + [sym_labeled_block] = STATE(1140), + [sym_if_statement] = STATE(1140), + [sym_while_statement] = STATE(1140), + [sym_for_statement] = STATE(1140), + [sym_match_statement] = STATE(1140), + [sym__value] = STATE(1140), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(1417), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -78438,12 +78851,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(113), + [anon_sym_if] = ACTIONS(139), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + }, + [STATE(675)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1140), + [sym_labeled_block] = STATE(1140), + [sym_if_statement] = STATE(1140), + [sym_while_statement] = STATE(1140), + [sym_for_statement] = STATE(1140), + [sym_match_statement] = STATE(1140), + [sym__value] = STATE(1140), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(303), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -78458,42 +78961,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [STATE(676)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1086), - [sym_labeled_block] = STATE(1086), - [sym_if_statement] = STATE(1086), - [sym_while_statement] = STATE(1086), - [sym_for_statement] = STATE(1086), - [sym_match_statement] = STATE(1086), - [sym__value] = STATE(1086), - [sym_expression] = STATE(681), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(1411), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1140), + [sym_labeled_block] = STATE(1140), + [sym_if_statement] = STATE(1140), + [sym_while_statement] = STATE(1140), + [sym_for_statement] = STATE(1140), + [sym_match_statement] = STATE(1140), + [sym__value] = STATE(1140), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(882), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + }, + [STATE(677)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1140), + [sym_labeled_block] = STATE(1140), + [sym_if_statement] = STATE(1140), + [sym_while_statement] = STATE(1140), + [sym_for_statement] = STATE(1140), + [sym_match_statement] = STATE(1140), + [sym__value] = STATE(1140), + [sym_expression] = STATE(680), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(1417), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -78531,8 +79125,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -78546,133 +79140,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), }, - [STATE(677)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1086), - [sym_labeled_block] = STATE(1086), - [sym_if_statement] = STATE(1086), - [sym_while_statement] = STATE(1086), - [sym_for_statement] = STATE(1086), - [sym_match_statement] = STATE(1086), - [sym__value] = STATE(1086), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(880), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(263), - [anon_sym_while] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, [STATE(678)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(1086), - [sym_labeled_block] = STATE(1086), - [sym_if_statement] = STATE(1086), - [sym_while_statement] = STATE(1086), - [sym_for_statement] = STATE(1086), - [sym_match_statement] = STATE(1086), - [sym__value] = STATE(1086), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(880), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1140), + [sym_labeled_block] = STATE(1140), + [sym_if_statement] = STATE(1140), + [sym_while_statement] = STATE(1140), + [sym_for_statement] = STATE(1140), + [sym_match_statement] = STATE(1140), + [sym__value] = STATE(1140), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(1417), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -78705,13 +79211,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_if] = ACTIONS(193), + [anon_sym_if] = ACTIONS(165), [anon_sym_while] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -78725,386 +79231,394 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [STATE(679)] = { - [sym_identifier] = ACTIONS(850), - [anon_sym_func] = ACTIONS(850), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(852), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_QMARK] = ACTIONS(855), - [anon_sym_STAR] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(855), - [anon_sym_void] = ACTIONS(850), - [anon_sym_anyopaque] = ACTIONS(850), - [anon_sym_bool] = ACTIONS(850), - [anon_sym_int] = ACTIONS(850), - [anon_sym_float] = ACTIONS(850), - [anon_sym_range] = ACTIONS(850), - [anon_sym_i8] = ACTIONS(850), - [anon_sym_i16] = ACTIONS(850), - [anon_sym_i32] = ACTIONS(850), - [anon_sym_i64] = ACTIONS(850), - [anon_sym_u8] = ACTIONS(850), - [anon_sym_u16] = ACTIONS(850), - [anon_sym_u32] = ACTIONS(850), - [anon_sym_u64] = ACTIONS(850), - [anon_sym_isize] = ACTIONS(850), - [anon_sym_usize] = ACTIONS(850), - [anon_sym_f32] = ACTIONS(850), - [anon_sym_f64] = ACTIONS(850), - [anon_sym_c_char] = ACTIONS(850), - [anon_sym_c_schar] = ACTIONS(850), - [anon_sym_c_uchar] = ACTIONS(850), - [anon_sym_c_short] = ACTIONS(850), - [anon_sym_c_ushort] = ACTIONS(850), - [anon_sym_c_int] = ACTIONS(850), - [anon_sym_c_uint] = ACTIONS(850), - [anon_sym_c_long] = ACTIONS(850), - [anon_sym_c_ulong] = ACTIONS(850), - [anon_sym_c_longlong] = ACTIONS(850), - [anon_sym_c_ulonglong] = ACTIONS(850), - [anon_sym_c_float] = ACTIONS(850), - [anon_sym_c_double] = ACTIONS(850), - [anon_sym_c_longdouble] = ACTIONS(850), - [anon_sym_return] = ACTIONS(850), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_COLON] = ACTIONS(1568), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_defer] = ACTIONS(850), - [anon_sym_errdefer] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_else] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_match] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(855), - [anon_sym_AMP] = ACTIONS(855), - [anon_sym_try] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(871), - [anon_sym_CARET] = ACTIONS(855), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [sym_none] = ACTIONS(850), - [sym_undefined] = ACTIONS(850), - [sym_sink] = ACTIONS(850), - [sym_integer] = ACTIONS(850), - [sym_float] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [sym_multiline_string] = ACTIONS(855), - [sym_character] = ACTIONS(855), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(1140), + [sym_labeled_block] = STATE(1140), + [sym_if_statement] = STATE(1140), + [sym_while_statement] = STATE(1140), + [sym_for_statement] = STATE(1140), + [sym_match_statement] = STATE(1140), + [sym__value] = STATE(1140), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(882), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_if] = ACTIONS(287), + [anon_sym_while] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), }, [STATE(680)] = { - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(1570), - [anon_sym_func] = ACTIONS(1570), - [anon_sym_c_func] = ACTIONS(1570), - [anon_sym_BANG] = ACTIONS(1572), - [anon_sym_struct] = ACTIONS(1570), - [anon_sym_c_struct] = ACTIONS(1570), - [sym_opaque_type] = ACTIONS(1570), - [anon_sym_distinct] = ACTIONS(1570), - [anon_sym_alias] = ACTIONS(1570), - [anon_sym_union] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_enum] = ACTIONS(1570), - [anon_sym_RPAREN] = ACTIONS(1572), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_COMMA] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_QMARK] = ACTIONS(1572), - [anon_sym_AT] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_RBRACK] = ACTIONS(1572), - [anon_sym_void] = ACTIONS(1570), - [anon_sym_anyopaque] = ACTIONS(1570), - [anon_sym_bool] = ACTIONS(1570), - [anon_sym_int] = ACTIONS(1570), - [anon_sym_float] = ACTIONS(1570), - [anon_sym_range] = ACTIONS(1570), - [anon_sym_i8] = ACTIONS(1570), - [anon_sym_i16] = ACTIONS(1570), - [anon_sym_i32] = ACTIONS(1570), - [anon_sym_i64] = ACTIONS(1570), - [anon_sym_u8] = ACTIONS(1570), - [anon_sym_u16] = ACTIONS(1570), - [anon_sym_u32] = ACTIONS(1570), - [anon_sym_u64] = ACTIONS(1570), - [anon_sym_isize] = ACTIONS(1570), - [anon_sym_usize] = ACTIONS(1570), - [anon_sym_f32] = ACTIONS(1570), - [anon_sym_f64] = ACTIONS(1570), - [anon_sym_c_char] = ACTIONS(1570), - [anon_sym_c_schar] = ACTIONS(1570), - [anon_sym_c_uchar] = ACTIONS(1570), - [anon_sym_c_short] = ACTIONS(1570), - [anon_sym_c_ushort] = ACTIONS(1570), - [anon_sym_c_int] = ACTIONS(1570), - [anon_sym_c_uint] = ACTIONS(1570), - [anon_sym_c_long] = ACTIONS(1570), - [anon_sym_c_ulong] = ACTIONS(1570), - [anon_sym_c_longlong] = ACTIONS(1570), - [anon_sym_c_ulonglong] = ACTIONS(1570), - [anon_sym_c_float] = ACTIONS(1570), - [anon_sym_c_double] = ACTIONS(1570), - [anon_sym_c_longdouble] = ACTIONS(1570), - [anon_sym_return] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1570), - [anon_sym_break] = ACTIONS(1570), - [anon_sym_continue] = ACTIONS(1570), - [anon_sym_defer] = ACTIONS(1570), - [anon_sym_errdefer] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_else] = ACTIONS(1570), - [anon_sym_while] = ACTIONS(1570), - [anon_sym_for] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1570), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_try] = ACTIONS(1570), - [anon_sym_DOT] = ACTIONS(1570), - [anon_sym_true] = ACTIONS(1570), - [anon_sym_false] = ACTIONS(1570), - [sym_none] = ACTIONS(1570), - [sym_undefined] = ACTIONS(1570), - [sym_sink] = ACTIONS(1570), - [sym_integer] = ACTIONS(1570), - [sym_float] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [sym_multiline_string] = ACTIONS(1572), - [sym_character] = ACTIONS(1572), + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(1574), + [anon_sym_func] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_struct] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1578), + [anon_sym_DOLLAR] = ACTIONS(1576), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_anyopaque] = ACTIONS(1574), + [anon_sym_bool] = ACTIONS(1574), + [anon_sym_int] = ACTIONS(1574), + [anon_sym_float] = ACTIONS(1574), + [anon_sym_range] = ACTIONS(1574), + [anon_sym_i8] = ACTIONS(1574), + [anon_sym_i16] = ACTIONS(1574), + [anon_sym_i32] = ACTIONS(1574), + [anon_sym_i64] = ACTIONS(1574), + [anon_sym_u8] = ACTIONS(1574), + [anon_sym_u16] = ACTIONS(1574), + [anon_sym_u32] = ACTIONS(1574), + [anon_sym_u64] = ACTIONS(1574), + [anon_sym_isize] = ACTIONS(1574), + [anon_sym_usize] = ACTIONS(1574), + [anon_sym_f32] = ACTIONS(1574), + [anon_sym_f64] = ACTIONS(1574), + [anon_sym_c_char] = ACTIONS(1574), + [anon_sym_c_schar] = ACTIONS(1574), + [anon_sym_c_uchar] = ACTIONS(1574), + [anon_sym_c_short] = ACTIONS(1574), + [anon_sym_c_ushort] = ACTIONS(1574), + [anon_sym_c_int] = ACTIONS(1574), + [anon_sym_c_uint] = ACTIONS(1574), + [anon_sym_c_long] = ACTIONS(1574), + [anon_sym_c_ulong] = ACTIONS(1574), + [anon_sym_c_longlong] = ACTIONS(1574), + [anon_sym_c_ulonglong] = ACTIONS(1574), + [anon_sym_c_float] = ACTIONS(1574), + [anon_sym_c_double] = ACTIONS(1574), + [anon_sym_c_longdouble] = ACTIONS(1574), + [anon_sym_return] = ACTIONS(1574), + [anon_sym_yield] = ACTIONS(1574), + [anon_sym_break] = ACTIONS(1574), + [anon_sym_continue] = ACTIONS(1574), + [anon_sym_defer] = ACTIONS(1574), + [anon_sym_errdefer] = ACTIONS(1574), + [anon_sym_if] = ACTIONS(1574), + [anon_sym_else] = ACTIONS(1574), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1574), + [anon_sym_match] = ACTIONS(1574), + [anon_sym_DOT_DOT] = ACTIONS(1456), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1458), + [anon_sym_orelse] = ACTIONS(1460), + [anon_sym_catch] = ACTIONS(1462), + [anon_sym_or] = ACTIONS(1464), + [anon_sym_and] = ACTIONS(1466), + [anon_sym_EQ_EQ] = ACTIONS(1468), + [anon_sym_BANG_EQ] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_EQ] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_GT_EQ] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1578), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1576), + [anon_sym_try] = ACTIONS(1574), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(1574), + [anon_sym_false] = ACTIONS(1574), + [sym_none] = ACTIONS(1574), + [sym_undefined] = ACTIONS(1574), + [sym_sink] = ACTIONS(1574), + [sym_integer] = ACTIONS(1574), + [sym_float] = ACTIONS(1576), + [anon_sym_DQUOTE] = ACTIONS(1576), + [sym_multiline_string] = ACTIONS(1576), + [sym_character] = ACTIONS(1576), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1574), + [sym__newline] = ACTIONS(1576), }, [STATE(681)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = ACTIONS(1577), - [anon_sym_func] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1577), - [anon_sym_struct] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_RBRACE] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1581), - [anon_sym_DOLLAR] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(1577), - [anon_sym_anyopaque] = ACTIONS(1577), - [anon_sym_bool] = ACTIONS(1577), - [anon_sym_int] = ACTIONS(1577), - [anon_sym_float] = ACTIONS(1577), - [anon_sym_range] = ACTIONS(1577), - [anon_sym_i8] = ACTIONS(1577), - [anon_sym_i16] = ACTIONS(1577), - [anon_sym_i32] = ACTIONS(1577), - [anon_sym_i64] = ACTIONS(1577), - [anon_sym_u8] = ACTIONS(1577), - [anon_sym_u16] = ACTIONS(1577), - [anon_sym_u32] = ACTIONS(1577), - [anon_sym_u64] = ACTIONS(1577), - [anon_sym_isize] = ACTIONS(1577), - [anon_sym_usize] = ACTIONS(1577), - [anon_sym_f32] = ACTIONS(1577), - [anon_sym_f64] = ACTIONS(1577), - [anon_sym_c_char] = ACTIONS(1577), - [anon_sym_c_schar] = ACTIONS(1577), - [anon_sym_c_uchar] = ACTIONS(1577), - [anon_sym_c_short] = ACTIONS(1577), - [anon_sym_c_ushort] = ACTIONS(1577), - [anon_sym_c_int] = ACTIONS(1577), - [anon_sym_c_uint] = ACTIONS(1577), - [anon_sym_c_long] = ACTIONS(1577), - [anon_sym_c_ulong] = ACTIONS(1577), - [anon_sym_c_longlong] = ACTIONS(1577), - [anon_sym_c_ulonglong] = ACTIONS(1577), - [anon_sym_c_float] = ACTIONS(1577), - [anon_sym_c_double] = ACTIONS(1577), - [anon_sym_c_longdouble] = ACTIONS(1577), - [anon_sym_return] = ACTIONS(1577), - [anon_sym_yield] = ACTIONS(1577), - [anon_sym_break] = ACTIONS(1577), - [anon_sym_continue] = ACTIONS(1577), - [anon_sym_defer] = ACTIONS(1577), - [anon_sym_errdefer] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_else] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_match] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1464), - [anon_sym_orelse] = ACTIONS(1442), - [anon_sym_catch] = ACTIONS(1444), - [anon_sym_or] = ACTIONS(1446), - [anon_sym_and] = ACTIONS(1448), - [anon_sym_EQ_EQ] = ACTIONS(1450), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_LT_EQ] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1581), - [anon_sym_SLASH] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_try] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(1577), - [anon_sym_false] = ACTIONS(1577), - [sym_none] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [sym_sink] = ACTIONS(1577), - [sym_integer] = ACTIONS(1577), - [sym_float] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1579), - [sym_character] = ACTIONS(1579), + [sym_identifier] = ACTIONS(852), + [anon_sym_func] = ACTIONS(852), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_struct] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(857), + [anon_sym_DOLLAR] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(857), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_void] = ACTIONS(852), + [anon_sym_anyopaque] = ACTIONS(852), + [anon_sym_bool] = ACTIONS(852), + [anon_sym_int] = ACTIONS(852), + [anon_sym_float] = ACTIONS(852), + [anon_sym_range] = ACTIONS(852), + [anon_sym_i8] = ACTIONS(852), + [anon_sym_i16] = ACTIONS(852), + [anon_sym_i32] = ACTIONS(852), + [anon_sym_i64] = ACTIONS(852), + [anon_sym_u8] = ACTIONS(852), + [anon_sym_u16] = ACTIONS(852), + [anon_sym_u32] = ACTIONS(852), + [anon_sym_u64] = ACTIONS(852), + [anon_sym_isize] = ACTIONS(852), + [anon_sym_usize] = ACTIONS(852), + [anon_sym_f32] = ACTIONS(852), + [anon_sym_f64] = ACTIONS(852), + [anon_sym_c_char] = ACTIONS(852), + [anon_sym_c_schar] = ACTIONS(852), + [anon_sym_c_uchar] = ACTIONS(852), + [anon_sym_c_short] = ACTIONS(852), + [anon_sym_c_ushort] = ACTIONS(852), + [anon_sym_c_int] = ACTIONS(852), + [anon_sym_c_uint] = ACTIONS(852), + [anon_sym_c_long] = ACTIONS(852), + [anon_sym_c_ulong] = ACTIONS(852), + [anon_sym_c_longlong] = ACTIONS(852), + [anon_sym_c_ulonglong] = ACTIONS(852), + [anon_sym_c_float] = ACTIONS(852), + [anon_sym_c_double] = ACTIONS(852), + [anon_sym_c_longdouble] = ACTIONS(852), + [anon_sym_return] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(852), + [anon_sym_COLON] = ACTIONS(1582), + [anon_sym_break] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(852), + [anon_sym_defer] = ACTIONS(852), + [anon_sym_errdefer] = ACTIONS(852), + [anon_sym_if] = ACTIONS(852), + [anon_sym_else] = ACTIONS(852), + [anon_sym_while] = ACTIONS(852), + [anon_sym_for] = ACTIONS(852), + [anon_sym_match] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(857), + [anon_sym_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_try] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_true] = ACTIONS(852), + [anon_sym_false] = ACTIONS(852), + [sym_none] = ACTIONS(852), + [sym_undefined] = ACTIONS(852), + [sym_sink] = ACTIONS(852), + [sym_integer] = ACTIONS(852), + [sym_float] = ACTIONS(857), + [anon_sym_DQUOTE] = ACTIONS(857), + [sym_multiline_string] = ACTIONS(857), + [sym_character] = ACTIONS(857), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1579), + [sym__newline] = ACTIONS(857), }, [STATE(682)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1419), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(692), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_RBRACK] = ACTIONS(1591), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(1595), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(1597), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1584), + [anon_sym_import] = ACTIONS(1584), + [anon_sym_func] = ACTIONS(1584), + [anon_sym_c_func] = ACTIONS(1584), + [anon_sym_BANG] = ACTIONS(1586), + [anon_sym_struct] = ACTIONS(1584), + [anon_sym_c_struct] = ACTIONS(1584), + [sym_opaque_type] = ACTIONS(1584), + [anon_sym_distinct] = ACTIONS(1584), + [anon_sym_alias] = ACTIONS(1584), + [anon_sym_union] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1586), + [anon_sym_enum] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1586), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_QMARK] = ACTIONS(1586), + [anon_sym_AT] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_RBRACK] = ACTIONS(1586), + [anon_sym_void] = ACTIONS(1584), + [anon_sym_anyopaque] = ACTIONS(1584), + [anon_sym_bool] = ACTIONS(1584), + [anon_sym_int] = ACTIONS(1584), + [anon_sym_float] = ACTIONS(1584), + [anon_sym_range] = ACTIONS(1584), + [anon_sym_i8] = ACTIONS(1584), + [anon_sym_i16] = ACTIONS(1584), + [anon_sym_i32] = ACTIONS(1584), + [anon_sym_i64] = ACTIONS(1584), + [anon_sym_u8] = ACTIONS(1584), + [anon_sym_u16] = ACTIONS(1584), + [anon_sym_u32] = ACTIONS(1584), + [anon_sym_u64] = ACTIONS(1584), + [anon_sym_isize] = ACTIONS(1584), + [anon_sym_usize] = ACTIONS(1584), + [anon_sym_f32] = ACTIONS(1584), + [anon_sym_f64] = ACTIONS(1584), + [anon_sym_c_char] = ACTIONS(1584), + [anon_sym_c_schar] = ACTIONS(1584), + [anon_sym_c_uchar] = ACTIONS(1584), + [anon_sym_c_short] = ACTIONS(1584), + [anon_sym_c_ushort] = ACTIONS(1584), + [anon_sym_c_int] = ACTIONS(1584), + [anon_sym_c_uint] = ACTIONS(1584), + [anon_sym_c_long] = ACTIONS(1584), + [anon_sym_c_ulong] = ACTIONS(1584), + [anon_sym_c_longlong] = ACTIONS(1584), + [anon_sym_c_ulonglong] = ACTIONS(1584), + [anon_sym_c_float] = ACTIONS(1584), + [anon_sym_c_double] = ACTIONS(1584), + [anon_sym_c_longdouble] = ACTIONS(1584), + [anon_sym_return] = ACTIONS(1584), + [anon_sym_yield] = ACTIONS(1584), + [anon_sym_break] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(1584), + [anon_sym_defer] = ACTIONS(1584), + [anon_sym_errdefer] = ACTIONS(1584), + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_for] = ACTIONS(1584), + [anon_sym_match] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1586), + [anon_sym_try] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_true] = ACTIONS(1584), + [anon_sym_false] = ACTIONS(1584), + [sym_none] = ACTIONS(1584), + [sym_undefined] = ACTIONS(1584), + [sym_sink] = ACTIONS(1584), + [sym_integer] = ACTIONS(1584), + [sym_float] = ACTIONS(1586), + [anon_sym_DQUOTE] = ACTIONS(1586), + [sym_multiline_string] = ACTIONS(1586), + [sym_character] = ACTIONS(1586), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1599), + [sym__newline] = ACTIONS(1588), }, [STATE(683)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1419), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(691), - [sym_identifier] = ACTIONS(1585), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(685), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_RBRACK] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_RBRACK] = ACTIONS(1597), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -79137,305 +79651,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(1601), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(1597), + [sym_sink] = ACTIONS(1603), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1603), + [sym__newline] = ACTIONS(1605), }, [STATE(684)] = { - [sym_type] = STATE(426), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(1605), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_LPAREN] = ACTIONS(285), - [anon_sym_RPAREN] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_QMARK] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(356), - [anon_sym_mut] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_RBRACK] = ACTIONS(285), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_PLUS_EQ] = ACTIONS(285), - [anon_sym_DASH_EQ] = ACTIONS(285), - [anon_sym_STAR_EQ] = ACTIONS(285), - [anon_sym_SLASH_EQ] = ACTIONS(285), - [anon_sym_else] = ACTIONS(289), - [anon_sym_DOT_DOT] = ACTIONS(289), - [anon_sym_DOT_DOT_EQ] = ACTIONS(285), - [anon_sym_orelse] = ACTIONS(289), - [anon_sym_catch] = ACTIONS(289), - [anon_sym_or] = ACTIONS(289), - [anon_sym_and] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(289), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(289), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(285), - }, - [STATE(685)] = { - [sym_type] = STATE(430), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(1605), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_LPAREN] = ACTIONS(369), - [anon_sym_RPAREN] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(369), - [anon_sym_COMMA] = ACTIONS(369), - [anon_sym_RBRACE] = ACTIONS(369), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_QMARK] = ACTIONS(379), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_mut] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_SEMI] = ACTIONS(369), - [anon_sym_RBRACK] = ACTIONS(369), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_PLUS_EQ] = ACTIONS(369), - [anon_sym_DASH_EQ] = ACTIONS(369), - [anon_sym_STAR_EQ] = ACTIONS(369), - [anon_sym_SLASH_EQ] = ACTIONS(369), - [anon_sym_else] = ACTIONS(374), - [anon_sym_DOT_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_orelse] = ACTIONS(374), - [anon_sym_catch] = ACTIONS(374), - [anon_sym_or] = ACTIONS(374), - [anon_sym_and] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(369), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(369), - }, - [STATE(686)] = { - [sym_type] = STATE(428), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(1605), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_LPAREN] = ACTIONS(285), - [anon_sym_RPAREN] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_QMARK] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(356), - [anon_sym_mut] = ACTIONS(345), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_RBRACK] = ACTIONS(285), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_PLUS_EQ] = ACTIONS(285), - [anon_sym_DASH_EQ] = ACTIONS(285), - [anon_sym_STAR_EQ] = ACTIONS(285), - [anon_sym_SLASH_EQ] = ACTIONS(285), - [anon_sym_else] = ACTIONS(289), - [anon_sym_DOT_DOT] = ACTIONS(289), - [anon_sym_DOT_DOT_EQ] = ACTIONS(285), - [anon_sym_orelse] = ACTIONS(289), - [anon_sym_catch] = ACTIONS(289), - [anon_sym_or] = ACTIONS(289), - [anon_sym_and] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(289), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(289), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(285), - }, - [STATE(687)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1419), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(690), - [sym_identifier] = ACTIONS(1585), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(687), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_SEMI] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1595), [anon_sym_RBRACK] = ACTIONS(1607), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -79469,15 +79735,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(1601), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(1597), + [sym_sink] = ACTIONS(1603), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -79486,204 +79752,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1609), }, - [STATE(688)] = { - [sym_type] = STATE(453), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(1605), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(300), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_COMMA] = ACTIONS(295), - [anon_sym_RBRACE] = ACTIONS(295), - [anon_sym_DASH] = ACTIONS(300), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_mut] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(295), - [anon_sym_RBRACK] = ACTIONS(295), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_PLUS_EQ] = ACTIONS(295), - [anon_sym_DASH_EQ] = ACTIONS(295), - [anon_sym_STAR_EQ] = ACTIONS(295), - [anon_sym_SLASH_EQ] = ACTIONS(295), - [anon_sym_else] = ACTIONS(300), - [anon_sym_DOT_DOT] = ACTIONS(300), - [anon_sym_DOT_DOT_EQ] = ACTIONS(295), - [anon_sym_orelse] = ACTIONS(300), - [anon_sym_catch] = ACTIONS(300), - [anon_sym_or] = ACTIONS(300), - [anon_sym_and] = ACTIONS(300), - [anon_sym_EQ_EQ] = ACTIONS(295), - [anon_sym_BANG_EQ] = ACTIONS(295), - [anon_sym_LT] = ACTIONS(300), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT] = ACTIONS(300), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_PLUS] = ACTIONS(300), - [anon_sym_SLASH] = ACTIONS(300), - [anon_sym_DOT] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(295), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(689)] = { - [sym_type] = STATE(441), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(1605), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_RPAREN] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(267), - [anon_sym_COMMA] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(271), - [anon_sym_QMARK] = ACTIONS(325), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(328), - [anon_sym_mut] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(267), - [anon_sym_RBRACK] = ACTIONS(267), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_PLUS_EQ] = ACTIONS(267), - [anon_sym_DASH_EQ] = ACTIONS(267), - [anon_sym_STAR_EQ] = ACTIONS(267), - [anon_sym_SLASH_EQ] = ACTIONS(267), - [anon_sym_else] = ACTIONS(271), - [anon_sym_DOT_DOT] = ACTIONS(271), - [anon_sym_DOT_DOT_EQ] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(267), - [anon_sym_BANG_EQ] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(267), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(267), - [anon_sym_PLUS] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_CARET] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(267), - }, - [STATE(690)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1420), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(1252), - [sym_identifier] = ACTIONS(1585), + [STATE(685)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1426), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_SEMI] = ACTIONS(1613), [anon_sym_RBRACK] = ACTIONS(1615), [anon_sym_void] = ACTIONS(37), @@ -79719,9 +79820,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), [anon_sym_DOT_DOT] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(1601), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -79735,39 +79836,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1621), }, - [STATE(691)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1420), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(1252), - [sym_identifier] = ACTIONS(1585), + [STATE(686)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(688), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_SEMI] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1595), [anon_sym_RBRACK] = ACTIONS(1623), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -79801,10 +79903,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(1603), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1625), + }, + [STATE(687)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1426), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1613), + [anon_sym_RBRACK] = ACTIONS(1627), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), [anon_sym_DOT_DOT] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(1601), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -79818,40 +80004,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1621), }, + [STATE(688)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1426), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1613), + [anon_sym_RBRACK] = ACTIONS(1629), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_DOT_DOT] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(1619), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1621), + }, + [STATE(689)] = { + [sym_type] = STATE(420), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(1631), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_RPAREN] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_COMMA] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_RBRACK] = ACTIONS(610), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(610), + [anon_sym_DASH_EQ] = ACTIONS(610), + [anon_sym_STAR_EQ] = ACTIONS(610), + [anon_sym_SLASH_EQ] = ACTIONS(610), + [anon_sym_else] = ACTIONS(615), + [anon_sym_DOT_DOT] = ACTIONS(615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(610), + [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(610), + [anon_sym_BANG_EQ] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(610), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(610), + }, + [STATE(690)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(692), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_RBRACK] = ACTIONS(1597), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(1603), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1633), + }, + [STATE(691)] = { + [sym_type] = STATE(431), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(1631), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_EQ] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_COMMA] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_QMARK] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(647), + [anon_sym_mut] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_RBRACK] = ACTIONS(345), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(345), + [anon_sym_DASH_EQ] = ACTIONS(345), + [anon_sym_STAR_EQ] = ACTIONS(345), + [anon_sym_SLASH_EQ] = ACTIONS(345), + [anon_sym_else] = ACTIONS(349), + [anon_sym_DOT_DOT] = ACTIONS(349), + [anon_sym_DOT_DOT_EQ] = ACTIONS(345), + [anon_sym_orelse] = ACTIONS(349), + [anon_sym_catch] = ACTIONS(349), + [anon_sym_or] = ACTIONS(349), + [anon_sym_and] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(345), + [anon_sym_BANG_EQ] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(345), + [anon_sym_GT] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_CARET] = ACTIONS(345), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(345), + }, [STATE(692)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1420), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(1252), - [sym_identifier] = ACTIONS(1585), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1424), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(1254), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_RBRACK] = ACTIONS(1625), + [anon_sym_RBRACK] = ACTIONS(1615), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -79884,10 +80404,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_DOT_DOT] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -79899,35 +80418,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1621), + [sym__newline] = ACTIONS(1635), }, [STATE(693)] = { - [sym_type] = STATE(437), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(1605), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_RPAREN] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(267), - [anon_sym_COMMA] = ACTIONS(267), - [anon_sym_RBRACE] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(271), - [anon_sym_QMARK] = ACTIONS(325), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(328), - [anon_sym_mut] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(267), - [anon_sym_RBRACK] = ACTIONS(267), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1415), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(708), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_RBRACK] = ACTIONS(1607), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -79960,64 +80487,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_PLUS_EQ] = ACTIONS(267), - [anon_sym_DASH_EQ] = ACTIONS(267), - [anon_sym_STAR_EQ] = ACTIONS(267), - [anon_sym_SLASH_EQ] = ACTIONS(267), - [anon_sym_else] = ACTIONS(271), - [anon_sym_DOT_DOT] = ACTIONS(271), - [anon_sym_DOT_DOT_EQ] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(267), - [anon_sym_BANG_EQ] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(267), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(267), - [anon_sym_PLUS] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_CARET] = ACTIONS(267), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(1603), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(267), + [sym__newline] = ACTIONS(1637), }, [STATE(694)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1416), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(719), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_RBRACK] = ACTIONS(1601), + [sym_type] = STATE(456), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(1631), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_EQ] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_RPAREN] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_DASH] = ACTIONS(314), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(326), + [anon_sym_mut] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(331), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_RBRACK] = ACTIONS(309), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -80050,137 +80562,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(1597), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [anon_sym_PLUS_EQ] = ACTIONS(309), + [anon_sym_DASH_EQ] = ACTIONS(309), + [anon_sym_STAR_EQ] = ACTIONS(309), + [anon_sym_SLASH_EQ] = ACTIONS(309), + [anon_sym_else] = ACTIONS(314), + [anon_sym_DOT_DOT] = ACTIONS(314), + [anon_sym_DOT_DOT_EQ] = ACTIONS(309), + [anon_sym_orelse] = ACTIONS(314), + [anon_sym_catch] = ACTIONS(314), + [anon_sym_or] = ACTIONS(314), + [anon_sym_and] = ACTIONS(314), + [anon_sym_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(314), + [anon_sym_LT_EQ] = ACTIONS(309), + [anon_sym_GT] = ACTIONS(314), + [anon_sym_GT_EQ] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(314), + [anon_sym_SLASH] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(314), + [anon_sym_CARET] = ACTIONS(309), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1627), + [sym__newline] = ACTIONS(309), }, [STATE(695)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = 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(923), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(1432), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(1434), - [anon_sym_anyopaque] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_int] = 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_else] = 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(1633), - [anon_sym_BANG_EQ] = ACTIONS(1633), - [anon_sym_LT] = ACTIONS(1635), - [anon_sym_LT_EQ] = ACTIONS(1633), - [anon_sym_GT] = ACTIONS(1635), - [anon_sym_GT_EQ] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_try] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [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(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(698), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_RBRACK] = ACTIONS(1643), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(1645), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1432), + [sym__newline] = ACTIONS(1647), }, [STATE(696)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_match_arm] = STATE(713), - [sym_expression] = STATE(1412), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_match_statement_repeat1] = STATE(713), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [sym_type] = STATE(408), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(1631), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_RPAREN] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_RBRACE] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(589), + [anon_sym_mut] = ACTIONS(608), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_RBRACK] = ACTIONS(576), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -80213,56 +80728,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_else] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_orelse] = ACTIONS(581), + [anon_sym_catch] = ACTIONS(581), + [anon_sym_or] = ACTIONS(581), + [anon_sym_and] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(576), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1649), + [sym__newline] = ACTIONS(576), }, [STATE(697)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_match_arm] = STATE(711), - [sym_expression] = STATE(1412), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_match_statement_repeat1] = STATE(711), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [sym_type] = STATE(407), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(1631), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_RPAREN] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_RBRACE] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(589), + [anon_sym_mut] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_RBRACK] = ACTIONS(576), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -80295,56 +80811,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_else] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_orelse] = ACTIONS(581), + [anon_sym_catch] = ACTIONS(581), + [anon_sym_or] = ACTIONS(581), + [anon_sym_and] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(576), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1651), + [sym__newline] = ACTIONS(576), }, [STATE(698)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_match_arm] = STATE(710), - [sym_expression] = STATE(1412), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_match_statement_repeat1] = STATE(710), - [sym_identifier] = ACTIONS(1585), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1419), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(1255), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_RBRACK] = ACTIONS(1653), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -80377,138 +80902,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), + [sym_sink] = ACTIONS(1655), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1655), + [sym__newline] = ACTIONS(1657), }, [STATE(699)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = ACTIONS(943), - [anon_sym_func] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(943), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(943), - [anon_sym_anyopaque] = ACTIONS(943), - [anon_sym_bool] = ACTIONS(943), - [anon_sym_int] = ACTIONS(943), - [anon_sym_float] = ACTIONS(943), - [anon_sym_range] = ACTIONS(943), - [anon_sym_i8] = ACTIONS(943), - [anon_sym_i16] = ACTIONS(943), - [anon_sym_i32] = ACTIONS(943), - [anon_sym_i64] = ACTIONS(943), - [anon_sym_u8] = ACTIONS(943), - [anon_sym_u16] = ACTIONS(943), - [anon_sym_u32] = ACTIONS(943), - [anon_sym_u64] = ACTIONS(943), - [anon_sym_isize] = ACTIONS(943), - [anon_sym_usize] = ACTIONS(943), - [anon_sym_f32] = ACTIONS(943), - [anon_sym_f64] = ACTIONS(943), - [anon_sym_c_char] = ACTIONS(943), - [anon_sym_c_schar] = ACTIONS(943), - [anon_sym_c_uchar] = ACTIONS(943), - [anon_sym_c_short] = ACTIONS(943), - [anon_sym_c_ushort] = ACTIONS(943), - [anon_sym_c_int] = ACTIONS(943), - [anon_sym_c_uint] = ACTIONS(943), - [anon_sym_c_long] = ACTIONS(943), - [anon_sym_c_ulong] = ACTIONS(943), - [anon_sym_c_longlong] = ACTIONS(943), - [anon_sym_c_ulonglong] = ACTIONS(943), - [anon_sym_c_float] = ACTIONS(943), - [anon_sym_c_double] = ACTIONS(943), - [anon_sym_c_longdouble] = ACTIONS(943), - [anon_sym_PLUS_EQ] = ACTIONS(941), - [anon_sym_DASH_EQ] = ACTIONS(941), - [anon_sym_STAR_EQ] = ACTIONS(941), - [anon_sym_SLASH_EQ] = ACTIONS(941), - [anon_sym_else] = ACTIONS(943), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(941), - [anon_sym_orelse] = ACTIONS(943), - [anon_sym_catch] = ACTIONS(943), - [anon_sym_or] = ACTIONS(943), - [anon_sym_and] = ACTIONS(943), - [anon_sym_EQ_EQ] = ACTIONS(941), - [anon_sym_BANG_EQ] = ACTIONS(941), - [anon_sym_LT] = ACTIONS(943), - [anon_sym_LT_EQ] = ACTIONS(941), - [anon_sym_GT] = ACTIONS(943), - [anon_sym_GT_EQ] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_try] = ACTIONS(943), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [sym_none] = ACTIONS(943), - [sym_undefined] = ACTIONS(943), - [sym_sink] = ACTIONS(943), - [sym_integer] = ACTIONS(943), - [sym_float] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_multiline_string] = ACTIONS(941), - [sym_character] = ACTIONS(941), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_match_arm] = STATE(703), + [sym_expression] = STATE(1413), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_match_statement_repeat1] = STATE(703), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(941), + [sym__newline] = ACTIONS(1671), }, [STATE(700)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_match_arm] = STATE(713), - [sym_expression] = STATE(1412), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_match_statement_repeat1] = STATE(713), - [sym_identifier] = ACTIONS(1585), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1417), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(701), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_RBRACK] = ACTIONS(1623), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -80541,57 +81068,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), + [sym_sink] = ACTIONS(1603), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1649), + [sym__newline] = ACTIONS(1673), }, [STATE(701)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1439), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(724), - [sym_identifier] = ACTIONS(1585), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1420), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(1254), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_RBRACK] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1613), + [anon_sym_RBRACK] = ACTIONS(1629), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -80624,548 +81151,555 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(1665), + [sym_sink] = ACTIONS(1619), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1667), + [sym__newline] = ACTIONS(1635), }, [STATE(702)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = 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(923), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(927), - [anon_sym_anyopaque] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_int] = 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_else] = 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_PLUS] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_try] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [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_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1461), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(713), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_RBRACK] = ACTIONS(1675), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(1645), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(925), + [sym__newline] = ACTIONS(1677), }, [STATE(703)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = 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(923), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(927), - [anon_sym_anyopaque] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_int] = 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_else] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(925), - [anon_sym_orelse] = ACTIONS(1669), - [anon_sym_catch] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1673), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1633), - [anon_sym_BANG_EQ] = ACTIONS(1633), - [anon_sym_LT] = ACTIONS(1635), - [anon_sym_LT_EQ] = ACTIONS(1633), - [anon_sym_GT] = ACTIONS(1635), - [anon_sym_GT_EQ] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_try] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [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_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_match_arm] = STATE(703), + [sym_expression] = STATE(1413), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_match_statement_repeat1] = STATE(703), + [sym_identifier] = ACTIONS(1679), + [anon_sym_func] = ACTIONS(1682), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_struct] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_RBRACE] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(1699), + [anon_sym_void] = ACTIONS(1702), + [anon_sym_anyopaque] = ACTIONS(1702), + [anon_sym_bool] = ACTIONS(1702), + [anon_sym_int] = ACTIONS(1702), + [anon_sym_float] = ACTIONS(1702), + [anon_sym_range] = ACTIONS(1702), + [anon_sym_i8] = ACTIONS(1702), + [anon_sym_i16] = ACTIONS(1702), + [anon_sym_i32] = ACTIONS(1702), + [anon_sym_i64] = ACTIONS(1702), + [anon_sym_u8] = ACTIONS(1702), + [anon_sym_u16] = ACTIONS(1702), + [anon_sym_u32] = ACTIONS(1702), + [anon_sym_u64] = ACTIONS(1702), + [anon_sym_isize] = ACTIONS(1702), + [anon_sym_usize] = ACTIONS(1702), + [anon_sym_f32] = ACTIONS(1702), + [anon_sym_f64] = ACTIONS(1702), + [anon_sym_c_char] = ACTIONS(1702), + [anon_sym_c_schar] = ACTIONS(1702), + [anon_sym_c_uchar] = ACTIONS(1702), + [anon_sym_c_short] = ACTIONS(1702), + [anon_sym_c_ushort] = ACTIONS(1702), + [anon_sym_c_int] = ACTIONS(1702), + [anon_sym_c_uint] = ACTIONS(1702), + [anon_sym_c_long] = ACTIONS(1702), + [anon_sym_c_ulong] = ACTIONS(1702), + [anon_sym_c_longlong] = ACTIONS(1702), + [anon_sym_c_ulonglong] = ACTIONS(1702), + [anon_sym_c_float] = ACTIONS(1702), + [anon_sym_c_double] = ACTIONS(1702), + [anon_sym_c_longdouble] = ACTIONS(1702), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_try] = ACTIONS(1708), + [anon_sym_DOT] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1714), + [anon_sym_false] = ACTIONS(1714), + [sym_none] = ACTIONS(1717), + [sym_undefined] = ACTIONS(1717), + [sym_sink] = ACTIONS(1717), + [sym_integer] = ACTIONS(1717), + [sym_float] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym_multiline_string] = ACTIONS(1720), + [sym_character] = ACTIONS(1720), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(925), + [sym__newline] = ACTIONS(1726), }, [STATE(704)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = 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(923), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(927), - [anon_sym_anyopaque] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_int] = 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_else] = 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(1673), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1633), - [anon_sym_BANG_EQ] = ACTIONS(1633), - [anon_sym_LT] = ACTIONS(1635), - [anon_sym_LT_EQ] = ACTIONS(1633), - [anon_sym_GT] = ACTIONS(1635), - [anon_sym_GT_EQ] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_try] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [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_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_match_arm] = STATE(710), + [sym_expression] = STATE(1413), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_match_statement_repeat1] = STATE(710), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(925), + [sym__newline] = ACTIONS(1729), }, [STATE(705)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = 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(923), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(1430), - [anon_sym_anyopaque] = ACTIONS(1430), - [anon_sym_bool] = ACTIONS(1430), - [anon_sym_int] = 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_else] = 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(1675), - [anon_sym_EQ_EQ] = ACTIONS(1633), - [anon_sym_BANG_EQ] = ACTIONS(1633), - [anon_sym_LT] = ACTIONS(1635), - [anon_sym_LT_EQ] = ACTIONS(1633), - [anon_sym_GT] = ACTIONS(1635), - [anon_sym_GT_EQ] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [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(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_match_arm] = STATE(703), + [sym_expression] = STATE(1413), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_match_statement_repeat1] = STATE(703), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_RBRACE] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1428), + [sym__newline] = ACTIONS(1671), }, [STATE(706)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = 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(923), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(1430), - [anon_sym_anyopaque] = ACTIONS(1430), - [anon_sym_bool] = ACTIONS(1430), - [anon_sym_int] = 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_else] = 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(1633), - [anon_sym_BANG_EQ] = ACTIONS(1633), - [anon_sym_LT] = ACTIONS(1635), - [anon_sym_LT_EQ] = ACTIONS(1633), - [anon_sym_GT] = ACTIONS(1635), - [anon_sym_GT_EQ] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [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(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_match_arm] = STATE(711), + [sym_expression] = STATE(1413), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_match_statement_repeat1] = STATE(711), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1428), + [sym__newline] = ACTIONS(1735), }, [STATE(707)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = 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(923), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(927), - [anon_sym_anyopaque] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_int] = 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_else] = 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_PLUS] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_try] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [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_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_match_arm] = STATE(699), + [sym_expression] = STATE(1413), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_match_statement_repeat1] = STATE(699), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(925), + [sym__newline] = ACTIONS(1739), }, [STATE(708)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1418), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(709), - [sym_identifier] = ACTIONS(1585), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1423), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(1254), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_RBRACK] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1613), + [anon_sym_RBRACK] = ACTIONS(1627), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -81198,56 +81732,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(1665), + [sym_sink] = ACTIONS(1619), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1679), + [sym__newline] = ACTIONS(1635), }, [STATE(709)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1422), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(1254), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_RBRACK] = ACTIONS(1685), + [sym_type] = STATE(418), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(1631), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_RPAREN] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_COMMA] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_RBRACK] = ACTIONS(610), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -81280,55 +81807,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(1687), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [anon_sym_PLUS_EQ] = ACTIONS(610), + [anon_sym_DASH_EQ] = ACTIONS(610), + [anon_sym_STAR_EQ] = ACTIONS(610), + [anon_sym_SLASH_EQ] = ACTIONS(610), + [anon_sym_else] = ACTIONS(615), + [anon_sym_DOT_DOT] = ACTIONS(615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(610), + [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(610), + [anon_sym_BANG_EQ] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(610), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1689), + [sym__newline] = ACTIONS(610), }, [STATE(710)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_match_arm] = STATE(713), - [sym_expression] = STATE(1412), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_match_statement_repeat1] = STATE(713), - [sym_identifier] = ACTIONS(1585), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_match_arm] = STATE(703), + [sym_expression] = STATE(1413), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_match_statement_repeat1] = STATE(703), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1659), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -81361,10 +81897,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -81376,41 +81912,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1649), + [sym__newline] = ACTIONS(1671), }, [STATE(711)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_match_arm] = STATE(713), - [sym_expression] = STATE(1412), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_match_statement_repeat1] = STATE(713), - [sym_identifier] = ACTIONS(1585), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_match_arm] = STATE(703), + [sym_expression] = STATE(1413), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_match_statement_repeat1] = STATE(703), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1659), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -81443,10 +81980,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -81458,42 +81995,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1649), + [sym__newline] = ACTIONS(1671), }, [STATE(712)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1427), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(726), - [sym_identifier] = ACTIONS(1585), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_match_arm] = STATE(705), + [sym_expression] = STATE(1413), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_match_statement_repeat1] = STATE(705), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(1659), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_RBRACK] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -81526,137 +82063,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(1597), + [sym_sink] = ACTIONS(83), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1695), + [sym__newline] = ACTIONS(1745), }, [STATE(713)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_match_arm] = STATE(713), - [sym_expression] = STATE(1412), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_match_statement_repeat1] = STATE(713), - [sym_identifier] = ACTIONS(1697), - [anon_sym_func] = ACTIONS(1700), - [anon_sym_BANG] = ACTIONS(1703), - [anon_sym_struct] = ACTIONS(1706), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1712), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1714), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_void] = ACTIONS(1720), - [anon_sym_anyopaque] = ACTIONS(1720), - [anon_sym_bool] = ACTIONS(1720), - [anon_sym_int] = ACTIONS(1720), - [anon_sym_float] = ACTIONS(1720), - [anon_sym_range] = ACTIONS(1720), - [anon_sym_i8] = ACTIONS(1720), - [anon_sym_i16] = ACTIONS(1720), - [anon_sym_i32] = ACTIONS(1720), - [anon_sym_i64] = ACTIONS(1720), - [anon_sym_u8] = ACTIONS(1720), - [anon_sym_u16] = ACTIONS(1720), - [anon_sym_u32] = ACTIONS(1720), - [anon_sym_u64] = ACTIONS(1720), - [anon_sym_isize] = ACTIONS(1720), - [anon_sym_usize] = ACTIONS(1720), - [anon_sym_f32] = ACTIONS(1720), - [anon_sym_f64] = ACTIONS(1720), - [anon_sym_c_char] = ACTIONS(1720), - [anon_sym_c_schar] = ACTIONS(1720), - [anon_sym_c_uchar] = ACTIONS(1720), - [anon_sym_c_short] = ACTIONS(1720), - [anon_sym_c_ushort] = ACTIONS(1720), - [anon_sym_c_int] = ACTIONS(1720), - [anon_sym_c_uint] = ACTIONS(1720), - [anon_sym_c_long] = ACTIONS(1720), - [anon_sym_c_ulong] = ACTIONS(1720), - [anon_sym_c_longlong] = ACTIONS(1720), - [anon_sym_c_ulonglong] = ACTIONS(1720), - [anon_sym_c_float] = ACTIONS(1720), - [anon_sym_c_double] = ACTIONS(1720), - [anon_sym_c_longdouble] = ACTIONS(1720), - [anon_sym_else] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_try] = ACTIONS(1726), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [sym_none] = ACTIONS(1735), - [sym_undefined] = ACTIONS(1735), - [sym_sink] = ACTIONS(1735), - [sym_integer] = ACTIONS(1735), - [sym_float] = ACTIONS(1738), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym_multiline_string] = ACTIONS(1738), - [sym_character] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1744), - }, - [STATE(714)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1425), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(717), - [sym_identifier] = ACTIONS(1585), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1454), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(1255), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1651), [anon_sym_RBRACK] = ACTIONS(1747), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -81690,55 +82147,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(1665), + [sym_sink] = ACTIONS(1655), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1749), + [sym__newline] = ACTIONS(1657), }, - [STATE(715)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_match_arm] = STATE(700), - [sym_expression] = STATE(1412), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_match_statement_repeat1] = STATE(700), - [sym_identifier] = ACTIONS(1585), + [STATE(714)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1428), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(715), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_RBRACK] = ACTIONS(1749), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -81771,15 +82230,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), + [sym_sink] = ACTIONS(1645), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), @@ -81788,40 +82246,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1751), }, - [STATE(716)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1415), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(727), - [sym_identifier] = ACTIONS(1585), + [STATE(715)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1416), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(1255), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_RBRACK] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_RBRACK] = ACTIONS(1753), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -81854,56 +82313,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(1597), + [sym_sink] = ACTIONS(1655), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1753), + [sym__newline] = ACTIONS(1657), + }, + [STATE(716)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(500), + [sym_expression] = STATE(425), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(727), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1763), }, [STATE(717)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1426), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(1254), - [sym_identifier] = ACTIONS(1585), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_assignment_statement] = STATE(1924), + [sym_expression_statement] = STATE(1924), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_RBRACK] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -81936,1758 +82477,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(1687), + [sym_sink] = ACTIONS(83), [sym_integer] = ACTIONS(83), [sym_float] = ACTIONS(87), [anon_sym_DQUOTE] = ACTIONS(89), [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1689), + [sym__newline] = ACTIONS(227), }, [STATE(718)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = ACTIONS(1454), - [anon_sym_func] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_EQ] = ACTIONS(1757), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(1454), - [anon_sym_anyopaque] = ACTIONS(1454), - [anon_sym_bool] = ACTIONS(1454), - [anon_sym_int] = 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(1759), - [anon_sym_DASH_EQ] = ACTIONS(1759), - [anon_sym_STAR_EQ] = ACTIONS(1759), - [anon_sym_SLASH_EQ] = ACTIONS(1759), - [anon_sym_else] = ACTIONS(1454), - [anon_sym_DOT_DOT] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), - [anon_sym_orelse] = ACTIONS(1669), - [anon_sym_catch] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1673), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1633), - [anon_sym_BANG_EQ] = ACTIONS(1633), - [anon_sym_LT] = ACTIONS(1635), - [anon_sym_LT_EQ] = ACTIONS(1633), - [anon_sym_GT] = ACTIONS(1635), - [anon_sym_GT_EQ] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_try] = ACTIONS(1454), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [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(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_multiline_string] = ACTIONS(1458), - [sym_character] = ACTIONS(1458), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_assignment_statement] = STATE(1928), + [sym_expression_statement] = STATE(1928), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1458), + [sym__newline] = ACTIONS(227), }, [STATE(719)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1421), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_RBRACK] = ACTIONS(1623), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(1619), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1765), - }, - [STATE(720)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = ACTIONS(943), - [anon_sym_func] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(943), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(943), - [anon_sym_anyopaque] = ACTIONS(943), - [anon_sym_bool] = ACTIONS(943), - [anon_sym_int] = ACTIONS(943), - [anon_sym_float] = ACTIONS(943), - [anon_sym_range] = ACTIONS(943), - [anon_sym_i8] = ACTIONS(943), - [anon_sym_i16] = ACTIONS(943), - [anon_sym_i32] = ACTIONS(943), - [anon_sym_i64] = ACTIONS(943), - [anon_sym_u8] = ACTIONS(943), - [anon_sym_u16] = ACTIONS(943), - [anon_sym_u32] = ACTIONS(943), - [anon_sym_u64] = ACTIONS(943), - [anon_sym_isize] = ACTIONS(943), - [anon_sym_usize] = ACTIONS(943), - [anon_sym_f32] = ACTIONS(943), - [anon_sym_f64] = ACTIONS(943), - [anon_sym_c_char] = ACTIONS(943), - [anon_sym_c_schar] = ACTIONS(943), - [anon_sym_c_uchar] = ACTIONS(943), - [anon_sym_c_short] = ACTIONS(943), - [anon_sym_c_ushort] = ACTIONS(943), - [anon_sym_c_int] = ACTIONS(943), - [anon_sym_c_uint] = ACTIONS(943), - [anon_sym_c_long] = ACTIONS(943), - [anon_sym_c_ulong] = ACTIONS(943), - [anon_sym_c_longlong] = ACTIONS(943), - [anon_sym_c_ulonglong] = ACTIONS(943), - [anon_sym_c_float] = ACTIONS(943), - [anon_sym_c_double] = ACTIONS(943), - [anon_sym_c_longdouble] = ACTIONS(943), - [anon_sym_PLUS_EQ] = ACTIONS(941), - [anon_sym_DASH_EQ] = ACTIONS(941), - [anon_sym_STAR_EQ] = ACTIONS(941), - [anon_sym_SLASH_EQ] = ACTIONS(941), - [anon_sym_else] = ACTIONS(943), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(941), - [anon_sym_orelse] = ACTIONS(943), - [anon_sym_catch] = ACTIONS(943), - [anon_sym_or] = ACTIONS(943), - [anon_sym_and] = ACTIONS(943), - [anon_sym_EQ_EQ] = ACTIONS(941), - [anon_sym_BANG_EQ] = ACTIONS(941), - [anon_sym_LT] = ACTIONS(943), - [anon_sym_LT_EQ] = ACTIONS(941), - [anon_sym_GT] = ACTIONS(943), - [anon_sym_GT_EQ] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_try] = ACTIONS(943), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [sym_none] = ACTIONS(943), - [sym_undefined] = ACTIONS(943), - [sym_sink] = ACTIONS(943), - [sym_integer] = ACTIONS(943), - [sym_float] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_multiline_string] = ACTIONS(941), - [sym_character] = ACTIONS(941), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(941), - }, - [STATE(721)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = ACTIONS(943), - [anon_sym_func] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(943), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(943), - [anon_sym_anyopaque] = ACTIONS(943), - [anon_sym_bool] = ACTIONS(943), - [anon_sym_int] = ACTIONS(943), - [anon_sym_float] = ACTIONS(943), - [anon_sym_range] = ACTIONS(943), - [anon_sym_i8] = ACTIONS(943), - [anon_sym_i16] = ACTIONS(943), - [anon_sym_i32] = ACTIONS(943), - [anon_sym_i64] = ACTIONS(943), - [anon_sym_u8] = ACTIONS(943), - [anon_sym_u16] = ACTIONS(943), - [anon_sym_u32] = ACTIONS(943), - [anon_sym_u64] = ACTIONS(943), - [anon_sym_isize] = ACTIONS(943), - [anon_sym_usize] = ACTIONS(943), - [anon_sym_f32] = ACTIONS(943), - [anon_sym_f64] = ACTIONS(943), - [anon_sym_c_char] = ACTIONS(943), - [anon_sym_c_schar] = ACTIONS(943), - [anon_sym_c_uchar] = ACTIONS(943), - [anon_sym_c_short] = ACTIONS(943), - [anon_sym_c_ushort] = ACTIONS(943), - [anon_sym_c_int] = ACTIONS(943), - [anon_sym_c_uint] = ACTIONS(943), - [anon_sym_c_long] = ACTIONS(943), - [anon_sym_c_ulong] = ACTIONS(943), - [anon_sym_c_longlong] = ACTIONS(943), - [anon_sym_c_ulonglong] = ACTIONS(943), - [anon_sym_c_float] = ACTIONS(943), - [anon_sym_c_double] = ACTIONS(943), - [anon_sym_c_longdouble] = ACTIONS(943), - [anon_sym_PLUS_EQ] = ACTIONS(941), - [anon_sym_DASH_EQ] = ACTIONS(941), - [anon_sym_STAR_EQ] = ACTIONS(941), - [anon_sym_SLASH_EQ] = ACTIONS(941), - [anon_sym_else] = ACTIONS(943), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(941), - [anon_sym_orelse] = ACTIONS(1669), - [anon_sym_catch] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1673), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1633), - [anon_sym_BANG_EQ] = ACTIONS(1633), - [anon_sym_LT] = ACTIONS(1635), - [anon_sym_LT_EQ] = ACTIONS(1633), - [anon_sym_GT] = ACTIONS(1635), - [anon_sym_GT_EQ] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_try] = ACTIONS(943), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [sym_none] = ACTIONS(943), - [sym_undefined] = ACTIONS(943), - [sym_sink] = ACTIONS(943), - [sym_integer] = ACTIONS(943), - [sym_float] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_multiline_string] = ACTIONS(941), - [sym_character] = ACTIONS(941), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(941), - }, - [STATE(722)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = ACTIONS(943), - [anon_sym_func] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(943), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(943), - [anon_sym_anyopaque] = ACTIONS(943), - [anon_sym_bool] = ACTIONS(943), - [anon_sym_int] = ACTIONS(943), - [anon_sym_float] = ACTIONS(943), - [anon_sym_range] = ACTIONS(943), - [anon_sym_i8] = ACTIONS(943), - [anon_sym_i16] = ACTIONS(943), - [anon_sym_i32] = ACTIONS(943), - [anon_sym_i64] = ACTIONS(943), - [anon_sym_u8] = ACTIONS(943), - [anon_sym_u16] = ACTIONS(943), - [anon_sym_u32] = ACTIONS(943), - [anon_sym_u64] = ACTIONS(943), - [anon_sym_isize] = ACTIONS(943), - [anon_sym_usize] = ACTIONS(943), - [anon_sym_f32] = ACTIONS(943), - [anon_sym_f64] = ACTIONS(943), - [anon_sym_c_char] = ACTIONS(943), - [anon_sym_c_schar] = ACTIONS(943), - [anon_sym_c_uchar] = ACTIONS(943), - [anon_sym_c_short] = ACTIONS(943), - [anon_sym_c_ushort] = ACTIONS(943), - [anon_sym_c_int] = ACTIONS(943), - [anon_sym_c_uint] = ACTIONS(943), - [anon_sym_c_long] = ACTIONS(943), - [anon_sym_c_ulong] = ACTIONS(943), - [anon_sym_c_longlong] = ACTIONS(943), - [anon_sym_c_ulonglong] = ACTIONS(943), - [anon_sym_c_float] = ACTIONS(943), - [anon_sym_c_double] = ACTIONS(943), - [anon_sym_c_longdouble] = ACTIONS(943), - [anon_sym_PLUS_EQ] = ACTIONS(941), - [anon_sym_DASH_EQ] = ACTIONS(941), - [anon_sym_STAR_EQ] = ACTIONS(941), - [anon_sym_SLASH_EQ] = ACTIONS(941), - [anon_sym_else] = ACTIONS(943), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(941), - [anon_sym_orelse] = ACTIONS(943), - [anon_sym_catch] = ACTIONS(943), - [anon_sym_or] = ACTIONS(1673), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1633), - [anon_sym_BANG_EQ] = ACTIONS(1633), - [anon_sym_LT] = ACTIONS(1635), - [anon_sym_LT_EQ] = ACTIONS(1633), - [anon_sym_GT] = ACTIONS(1635), - [anon_sym_GT_EQ] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_try] = ACTIONS(943), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [sym_none] = ACTIONS(943), - [sym_undefined] = ACTIONS(943), - [sym_sink] = ACTIONS(943), - [sym_integer] = ACTIONS(943), - [sym_float] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_multiline_string] = ACTIONS(941), - [sym_character] = ACTIONS(941), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(941), - }, - [STATE(723)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_match_arm] = STATE(696), - [sym_expression] = STATE(1412), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_match_statement_repeat1] = STATE(696), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1769), - }, - [STATE(724)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1435), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(1254), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_RBRACK] = ACTIONS(1771), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(1687), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1689), - }, - [STATE(725)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = 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(923), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(1432), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(1434), - [anon_sym_anyopaque] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_int] = 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_else] = 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(1675), - [anon_sym_EQ_EQ] = ACTIONS(1633), - [anon_sym_BANG_EQ] = ACTIONS(1633), - [anon_sym_LT] = ACTIONS(1635), - [anon_sym_LT_EQ] = ACTIONS(1633), - [anon_sym_GT] = ACTIONS(1635), - [anon_sym_GT_EQ] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_try] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [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_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1432), - }, - [STATE(726)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1424), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_RBRACK] = ACTIONS(1625), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(1619), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1765), - }, - [STATE(727)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1414), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_RBRACK] = ACTIONS(1615), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(1619), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1765), - }, - [STATE(728)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(524), - [sym_expression] = STATE(457), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(744), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1775), - }, - [STATE(729)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(484), - [sym_expression] = STATE(415), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(730)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(524), - [sym_expression] = STATE(457), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(763), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1777), - }, - [STATE(731)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_assignment_statement] = STATE(2026), - [sym_expression_statement] = STATE(2026), - [sym_expression] = STATE(1411), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(732)] = { - [sym_type] = STATE(426), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(285), - [sym_identifier] = ACTIONS(347), - [anon_sym_import] = ACTIONS(289), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_LPAREN] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_QMARK] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(356), - [anon_sym_mut] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_PLUS_EQ] = ACTIONS(285), - [anon_sym_DASH_EQ] = ACTIONS(285), - [anon_sym_STAR_EQ] = ACTIONS(285), - [anon_sym_SLASH_EQ] = ACTIONS(285), - [anon_sym_COLON] = ACTIONS(285), - [anon_sym_else] = ACTIONS(289), - [anon_sym_DOT_DOT] = ACTIONS(289), - [anon_sym_DOT_DOT_EQ] = ACTIONS(285), - [anon_sym_orelse] = ACTIONS(289), - [anon_sym_catch] = ACTIONS(289), - [anon_sym_or] = ACTIONS(289), - [anon_sym_and] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(289), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(289), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(285), - }, - [STATE(733)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(484), - [sym_expression] = STATE(415), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(734)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_assignment_statement] = STATE(2031), - [sym_expression_statement] = STATE(2031), - [sym_expression] = STATE(1411), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(735)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_assignment_statement] = STATE(2033), - [sym_expression_statement] = STATE(2033), - [sym_expression] = STATE(1408), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(756), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1779), - }, - [STATE(736)] = { - [sym_type] = STATE(437), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(267), - [sym_identifier] = ACTIONS(319), - [anon_sym_import] = ACTIONS(271), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(271), - [anon_sym_QMARK] = ACTIONS(325), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(328), - [anon_sym_mut] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(333), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_PLUS_EQ] = ACTIONS(267), - [anon_sym_DASH_EQ] = ACTIONS(267), - [anon_sym_STAR_EQ] = ACTIONS(267), - [anon_sym_SLASH_EQ] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(267), - [anon_sym_else] = ACTIONS(271), - [anon_sym_DOT_DOT] = ACTIONS(271), - [anon_sym_DOT_DOT_EQ] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(267), - [anon_sym_BANG_EQ] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(267), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(267), - [anon_sym_PLUS] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_CARET] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(267), - }, - [STATE(737)] = { - [sym_type] = STATE(430), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(369), - [sym_identifier] = ACTIONS(371), - [anon_sym_import] = ACTIONS(374), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_LPAREN] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(369), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_QMARK] = ACTIONS(379), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_mut] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_PLUS_EQ] = ACTIONS(369), - [anon_sym_DASH_EQ] = ACTIONS(369), - [anon_sym_STAR_EQ] = ACTIONS(369), - [anon_sym_SLASH_EQ] = ACTIONS(369), - [anon_sym_COLON] = ACTIONS(369), - [anon_sym_else] = ACTIONS(374), - [anon_sym_DOT_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_orelse] = ACTIONS(374), - [anon_sym_catch] = ACTIONS(374), - [anon_sym_or] = ACTIONS(374), - [anon_sym_and] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(369), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(369), - }, - [STATE(738)] = { - [sym_type] = STATE(428), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(285), - [sym_identifier] = ACTIONS(347), - [anon_sym_import] = ACTIONS(289), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_LPAREN] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_QMARK] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(356), - [anon_sym_mut] = ACTIONS(345), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_PLUS_EQ] = ACTIONS(285), - [anon_sym_DASH_EQ] = ACTIONS(285), - [anon_sym_STAR_EQ] = ACTIONS(285), - [anon_sym_SLASH_EQ] = ACTIONS(285), - [anon_sym_COLON] = ACTIONS(285), - [anon_sym_else] = ACTIONS(289), - [anon_sym_DOT_DOT] = ACTIONS(289), - [anon_sym_DOT_DOT_EQ] = ACTIONS(285), - [anon_sym_orelse] = ACTIONS(289), - [anon_sym_catch] = ACTIONS(289), - [anon_sym_or] = ACTIONS(289), - [anon_sym_and] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(289), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(289), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(285), - }, - [STATE(739)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(484), - [sym_expression] = STATE(415), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(500), + [sym_expression] = STATE(425), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(743), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), @@ -83695,7 +82608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(167), [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -83730,7 +82643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_longdouble] = ACTIONS(37), [anon_sym_AMP] = ACTIONS(167), [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -83742,41 +82655,370 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(1765), }, - [STATE(740)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_assignment_statement] = STATE(1937), - [sym_expression_statement] = STATE(1937), + [STATE(720)] = { + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(1440), + [anon_sym_func] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_EQ] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_anyopaque] = ACTIONS(1440), + [anon_sym_bool] = ACTIONS(1440), + [anon_sym_int] = ACTIONS(1440), + [anon_sym_float] = ACTIONS(1440), + [anon_sym_range] = ACTIONS(1440), + [anon_sym_i8] = ACTIONS(1440), + [anon_sym_i16] = ACTIONS(1440), + [anon_sym_i32] = ACTIONS(1440), + [anon_sym_i64] = ACTIONS(1440), + [anon_sym_u8] = ACTIONS(1440), + [anon_sym_u16] = ACTIONS(1440), + [anon_sym_u32] = ACTIONS(1440), + [anon_sym_u64] = ACTIONS(1440), + [anon_sym_isize] = ACTIONS(1440), + [anon_sym_usize] = ACTIONS(1440), + [anon_sym_f32] = ACTIONS(1440), + [anon_sym_f64] = ACTIONS(1440), + [anon_sym_c_char] = ACTIONS(1440), + [anon_sym_c_schar] = ACTIONS(1440), + [anon_sym_c_uchar] = ACTIONS(1440), + [anon_sym_c_short] = ACTIONS(1440), + [anon_sym_c_ushort] = ACTIONS(1440), + [anon_sym_c_int] = ACTIONS(1440), + [anon_sym_c_uint] = ACTIONS(1440), + [anon_sym_c_long] = ACTIONS(1440), + [anon_sym_c_ulong] = ACTIONS(1440), + [anon_sym_c_longlong] = ACTIONS(1440), + [anon_sym_c_ulonglong] = ACTIONS(1440), + [anon_sym_c_float] = ACTIONS(1440), + [anon_sym_c_double] = ACTIONS(1440), + [anon_sym_c_longdouble] = ACTIONS(1440), + [anon_sym_PLUS_EQ] = ACTIONS(1438), + [anon_sym_DASH_EQ] = ACTIONS(1438), + [anon_sym_STAR_EQ] = ACTIONS(1438), + [anon_sym_SLASH_EQ] = ACTIONS(1438), + [anon_sym_else] = ACTIONS(1440), + [anon_sym_DOT_DOT] = ACTIONS(1440), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1438), + [anon_sym_orelse] = ACTIONS(1440), + [anon_sym_catch] = ACTIONS(1440), + [anon_sym_or] = ACTIONS(1440), + [anon_sym_and] = ACTIONS(1771), + [anon_sym_EQ_EQ] = ACTIONS(1773), + [anon_sym_BANG_EQ] = ACTIONS(1773), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_LT_EQ] = ACTIONS(1773), + [anon_sym_GT] = ACTIONS(1775), + [anon_sym_GT_EQ] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_try] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(1440), + [anon_sym_false] = ACTIONS(1440), + [sym_none] = ACTIONS(1440), + [sym_undefined] = ACTIONS(1440), + [sym_sink] = ACTIONS(1440), + [sym_integer] = ACTIONS(1440), + [sym_float] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_multiline_string] = ACTIONS(1438), + [sym_character] = ACTIONS(1438), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1438), + }, + [STATE(721)] = { + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(1448), + [anon_sym_func] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_EQ] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1452), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(1448), + [anon_sym_anyopaque] = ACTIONS(1448), + [anon_sym_bool] = ACTIONS(1448), + [anon_sym_int] = ACTIONS(1448), + [anon_sym_float] = ACTIONS(1448), + [anon_sym_range] = ACTIONS(1448), + [anon_sym_i8] = ACTIONS(1448), + [anon_sym_i16] = ACTIONS(1448), + [anon_sym_i32] = ACTIONS(1448), + [anon_sym_i64] = ACTIONS(1448), + [anon_sym_u8] = ACTIONS(1448), + [anon_sym_u16] = ACTIONS(1448), + [anon_sym_u32] = ACTIONS(1448), + [anon_sym_u64] = ACTIONS(1448), + [anon_sym_isize] = ACTIONS(1448), + [anon_sym_usize] = ACTIONS(1448), + [anon_sym_f32] = ACTIONS(1448), + [anon_sym_f64] = ACTIONS(1448), + [anon_sym_c_char] = ACTIONS(1448), + [anon_sym_c_schar] = ACTIONS(1448), + [anon_sym_c_uchar] = ACTIONS(1448), + [anon_sym_c_short] = ACTIONS(1448), + [anon_sym_c_ushort] = ACTIONS(1448), + [anon_sym_c_int] = ACTIONS(1448), + [anon_sym_c_uint] = ACTIONS(1448), + [anon_sym_c_long] = ACTIONS(1448), + [anon_sym_c_ulong] = ACTIONS(1448), + [anon_sym_c_longlong] = ACTIONS(1448), + [anon_sym_c_ulonglong] = ACTIONS(1448), + [anon_sym_c_float] = ACTIONS(1448), + [anon_sym_c_double] = ACTIONS(1448), + [anon_sym_c_longdouble] = ACTIONS(1448), + [anon_sym_PLUS_EQ] = ACTIONS(1779), + [anon_sym_DASH_EQ] = ACTIONS(1779), + [anon_sym_STAR_EQ] = ACTIONS(1779), + [anon_sym_SLASH_EQ] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1448), + [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), + [anon_sym_orelse] = ACTIONS(1785), + [anon_sym_catch] = ACTIONS(1787), + [anon_sym_or] = ACTIONS(1789), + [anon_sym_and] = ACTIONS(1771), + [anon_sym_EQ_EQ] = ACTIONS(1773), + [anon_sym_BANG_EQ] = ACTIONS(1773), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_LT_EQ] = ACTIONS(1773), + [anon_sym_GT] = ACTIONS(1775), + [anon_sym_GT_EQ] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_try] = ACTIONS(1448), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(1448), + [anon_sym_false] = ACTIONS(1448), + [sym_none] = ACTIONS(1448), + [sym_undefined] = ACTIONS(1448), + [sym_sink] = ACTIONS(1448), + [sym_integer] = ACTIONS(1448), + [sym_float] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_multiline_string] = ACTIONS(1452), + [sym_character] = ACTIONS(1452), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1452), + }, + [STATE(722)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(496), + [sym_expression] = STATE(429), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(723)] = { + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(993), + [anon_sym_func] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(993), + [anon_sym_anyopaque] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_int] = ACTIONS(993), + [anon_sym_float] = ACTIONS(993), + [anon_sym_range] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_c_char] = ACTIONS(993), + [anon_sym_c_schar] = ACTIONS(993), + [anon_sym_c_uchar] = ACTIONS(993), + [anon_sym_c_short] = ACTIONS(993), + [anon_sym_c_ushort] = ACTIONS(993), + [anon_sym_c_int] = ACTIONS(993), + [anon_sym_c_uint] = ACTIONS(993), + [anon_sym_c_long] = ACTIONS(993), + [anon_sym_c_ulong] = ACTIONS(993), + [anon_sym_c_longlong] = ACTIONS(993), + [anon_sym_c_ulonglong] = ACTIONS(993), + [anon_sym_c_float] = ACTIONS(993), + [anon_sym_c_double] = ACTIONS(993), + [anon_sym_c_longdouble] = ACTIONS(993), + [anon_sym_PLUS_EQ] = ACTIONS(991), + [anon_sym_DASH_EQ] = ACTIONS(991), + [anon_sym_STAR_EQ] = ACTIONS(991), + [anon_sym_SLASH_EQ] = ACTIONS(991), + [anon_sym_else] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(991), + [anon_sym_orelse] = ACTIONS(1785), + [anon_sym_catch] = ACTIONS(1787), + [anon_sym_or] = ACTIONS(1789), + [anon_sym_and] = ACTIONS(1771), + [anon_sym_EQ_EQ] = ACTIONS(1773), + [anon_sym_BANG_EQ] = ACTIONS(1773), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_LT_EQ] = ACTIONS(1773), + [anon_sym_GT] = ACTIONS(1775), + [anon_sym_GT_EQ] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_try] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [sym_none] = ACTIONS(993), + [sym_undefined] = ACTIONS(993), + [sym_sink] = ACTIONS(993), + [sym_integer] = ACTIONS(993), + [sym_float] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [sym_multiline_string] = ACTIONS(991), + [sym_character] = ACTIONS(991), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(991), + }, + [STATE(724)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_assignment_statement] = STATE(1930), + [sym_expression_statement] = STATE(1930), [sym_expression] = STATE(1411), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(740), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -83809,576 +83051,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(741)] = { - [sym_type] = STATE(441), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(267), - [sym_identifier] = ACTIONS(319), - [anon_sym_import] = ACTIONS(271), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(271), - [anon_sym_QMARK] = ACTIONS(325), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(328), - [anon_sym_mut] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(333), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_PLUS_EQ] = ACTIONS(267), - [anon_sym_DASH_EQ] = ACTIONS(267), - [anon_sym_STAR_EQ] = ACTIONS(267), - [anon_sym_SLASH_EQ] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(267), - [anon_sym_else] = ACTIONS(271), - [anon_sym_DOT_DOT] = ACTIONS(271), - [anon_sym_DOT_DOT_EQ] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(267), - [anon_sym_BANG_EQ] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(267), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(267), - [anon_sym_PLUS] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_CARET] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(267), - }, - [STATE(742)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_assignment_statement] = STATE(1941), - [sym_expression_statement] = STATE(1941), - [sym_expression] = STATE(1408), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(731), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1781), - }, - [STATE(743)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_assignment_statement] = STATE(1945), - [sym_expression_statement] = STATE(1945), - [sym_expression] = STATE(1408), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(734), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1783), - }, - [STATE(744)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(484), - [sym_expression] = STATE(415), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(745)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(524), - [sym_expression] = STATE(457), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(752), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1785), - }, - [STATE(746)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_assignment_statement] = STATE(1569), - [sym_expression_statement] = STATE(1569), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(749), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1789), - }, - [STATE(747)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(524), - [sym_expression] = STATE(457), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(729), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -84392,39 +83067,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1791), }, - [STATE(748)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_assignment_statement] = STATE(1990), - [sym_expression_statement] = STATE(1990), - [sym_expression] = STATE(1408), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(740), - [sym_identifier] = ACTIONS(1585), + [STATE(725)] = { + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(993), + [anon_sym_func] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(993), + [anon_sym_anyopaque] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_int] = ACTIONS(993), + [anon_sym_float] = ACTIONS(993), + [anon_sym_range] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_c_char] = ACTIONS(993), + [anon_sym_c_schar] = ACTIONS(993), + [anon_sym_c_uchar] = ACTIONS(993), + [anon_sym_c_short] = ACTIONS(993), + [anon_sym_c_ushort] = ACTIONS(993), + [anon_sym_c_int] = ACTIONS(993), + [anon_sym_c_uint] = ACTIONS(993), + [anon_sym_c_long] = ACTIONS(993), + [anon_sym_c_ulong] = ACTIONS(993), + [anon_sym_c_longlong] = ACTIONS(993), + [anon_sym_c_ulonglong] = ACTIONS(993), + [anon_sym_c_float] = ACTIONS(993), + [anon_sym_c_double] = ACTIONS(993), + [anon_sym_c_longdouble] = ACTIONS(993), + [anon_sym_PLUS_EQ] = ACTIONS(991), + [anon_sym_DASH_EQ] = ACTIONS(991), + [anon_sym_STAR_EQ] = ACTIONS(991), + [anon_sym_SLASH_EQ] = ACTIONS(991), + [anon_sym_else] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(991), + [anon_sym_orelse] = ACTIONS(993), + [anon_sym_catch] = ACTIONS(993), + [anon_sym_or] = ACTIONS(1789), + [anon_sym_and] = ACTIONS(1771), + [anon_sym_EQ_EQ] = ACTIONS(1773), + [anon_sym_BANG_EQ] = ACTIONS(1773), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_LT_EQ] = ACTIONS(1773), + [anon_sym_GT] = ACTIONS(1775), + [anon_sym_GT_EQ] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_try] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [sym_none] = ACTIONS(993), + [sym_undefined] = ACTIONS(993), + [sym_sink] = ACTIONS(993), + [sym_integer] = ACTIONS(993), + [sym_float] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [sym_multiline_string] = ACTIONS(991), + [sym_character] = ACTIONS(991), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(991), + }, + [STATE(726)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(500), + [sym_expression] = STATE(425), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(722), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(1659), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -84457,9 +83215,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -84473,39 +83231,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1793), }, - [STATE(749)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_assignment_statement] = STATE(1642), - [sym_expression_statement] = STATE(1642), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(727)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(496), + [sym_expression] = STATE(429), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(1757), [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -84538,8 +83297,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1761), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -84552,41 +83311,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(750)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_assignment_statement] = STATE(1645), - [sym_expression_statement] = STATE(1645), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(765), - [sym_identifier] = ACTIONS(1773), + [STATE(728)] = { + [sym_type] = STATE(2075), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(857), + [sym_identifier] = ACTIONS(842), + [anon_sym_COLON_COLON] = ACTIONS(1795), + [anon_sym_import] = ACTIONS(852), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(857), + [anon_sym_DASH_EQ] = ACTIONS(857), + [anon_sym_STAR_EQ] = ACTIONS(857), + [anon_sym_SLASH_EQ] = ACTIONS(857), + [anon_sym_COLON] = ACTIONS(871), + [anon_sym_else] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(857), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(857), + }, + [STATE(729)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(500), + [sym_expression] = STATE(425), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(754), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1797), + }, + [STATE(730)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(496), + [sym_expression] = STATE(429), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -84620,7 +83544,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -84633,41 +83557,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(731)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_assignment_statement] = STATE(1922), + [sym_expression_statement] = STATE(1922), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(732)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_assignment_statement] = STATE(1936), + [sym_expression_statement] = STATE(1936), + [sym_expression] = STATE(1411), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(717), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1799), }, - [STATE(751)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1470), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_keyed_field_initializer] = STATE(1583), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(755), - [sym_identifier] = ACTIONS(1801), + [STATE(733)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_assignment_statement] = STATE(1566), + [sym_expression_statement] = STATE(1566), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -84700,251 +83789,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1805), - }, - [STATE(752)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(484), - [sym_expression] = STATE(415), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(753)] = { - [sym_type] = STATE(2073), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(855), - [sym_identifier] = ACTIONS(842), - [anon_sym_COLON_COLON] = ACTIONS(1807), - [anon_sym_import] = ACTIONS(850), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_PLUS_EQ] = ACTIONS(855), - [anon_sym_DASH_EQ] = ACTIONS(855), - [anon_sym_STAR_EQ] = ACTIONS(855), - [anon_sym_SLASH_EQ] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_else] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(871), - [anon_sym_CARET] = ACTIONS(855), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), - }, - [STATE(754)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(484), - [sym_expression] = STATE(415), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -84957,41 +83803,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(755)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1465), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_keyed_field_initializer] = STATE(1614), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1801), + [STATE(734)] = { + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(1440), + [anon_sym_func] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_EQ] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_anyopaque] = ACTIONS(1440), + [anon_sym_bool] = ACTIONS(1440), + [anon_sym_int] = ACTIONS(1440), + [anon_sym_float] = ACTIONS(1440), + [anon_sym_range] = ACTIONS(1440), + [anon_sym_i8] = ACTIONS(1440), + [anon_sym_i16] = ACTIONS(1440), + [anon_sym_i32] = ACTIONS(1440), + [anon_sym_i64] = ACTIONS(1440), + [anon_sym_u8] = ACTIONS(1440), + [anon_sym_u16] = ACTIONS(1440), + [anon_sym_u32] = ACTIONS(1440), + [anon_sym_u64] = ACTIONS(1440), + [anon_sym_isize] = ACTIONS(1440), + [anon_sym_usize] = ACTIONS(1440), + [anon_sym_f32] = ACTIONS(1440), + [anon_sym_f64] = ACTIONS(1440), + [anon_sym_c_char] = ACTIONS(1440), + [anon_sym_c_schar] = ACTIONS(1440), + [anon_sym_c_uchar] = ACTIONS(1440), + [anon_sym_c_short] = ACTIONS(1440), + [anon_sym_c_ushort] = ACTIONS(1440), + [anon_sym_c_int] = ACTIONS(1440), + [anon_sym_c_uint] = ACTIONS(1440), + [anon_sym_c_long] = ACTIONS(1440), + [anon_sym_c_ulong] = ACTIONS(1440), + [anon_sym_c_longlong] = ACTIONS(1440), + [anon_sym_c_ulonglong] = ACTIONS(1440), + [anon_sym_c_float] = ACTIONS(1440), + [anon_sym_c_double] = ACTIONS(1440), + [anon_sym_c_longdouble] = ACTIONS(1440), + [anon_sym_PLUS_EQ] = ACTIONS(1438), + [anon_sym_DASH_EQ] = ACTIONS(1438), + [anon_sym_STAR_EQ] = ACTIONS(1438), + [anon_sym_SLASH_EQ] = ACTIONS(1438), + [anon_sym_else] = ACTIONS(1440), + [anon_sym_DOT_DOT] = ACTIONS(1440), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1438), + [anon_sym_orelse] = ACTIONS(1440), + [anon_sym_catch] = ACTIONS(1440), + [anon_sym_or] = ACTIONS(1440), + [anon_sym_and] = ACTIONS(1440), + [anon_sym_EQ_EQ] = ACTIONS(1773), + [anon_sym_BANG_EQ] = ACTIONS(1773), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_LT_EQ] = ACTIONS(1773), + [anon_sym_GT] = ACTIONS(1775), + [anon_sym_GT_EQ] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_try] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(1440), + [anon_sym_false] = ACTIONS(1440), + [sym_none] = ACTIONS(1440), + [sym_undefined] = ACTIONS(1440), + [sym_sink] = ACTIONS(1440), + [sym_integer] = ACTIONS(1440), + [sym_float] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_multiline_string] = ACTIONS(1438), + [sym_character] = ACTIONS(1438), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1438), + }, + [STATE(735)] = { + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(1436), + [anon_sym_func] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_EQ] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(1436), + [anon_sym_anyopaque] = ACTIONS(1436), + [anon_sym_bool] = ACTIONS(1436), + [anon_sym_int] = ACTIONS(1436), + [anon_sym_float] = ACTIONS(1436), + [anon_sym_range] = ACTIONS(1436), + [anon_sym_i8] = ACTIONS(1436), + [anon_sym_i16] = ACTIONS(1436), + [anon_sym_i32] = ACTIONS(1436), + [anon_sym_i64] = ACTIONS(1436), + [anon_sym_u8] = ACTIONS(1436), + [anon_sym_u16] = ACTIONS(1436), + [anon_sym_u32] = ACTIONS(1436), + [anon_sym_u64] = ACTIONS(1436), + [anon_sym_isize] = ACTIONS(1436), + [anon_sym_usize] = ACTIONS(1436), + [anon_sym_f32] = ACTIONS(1436), + [anon_sym_f64] = ACTIONS(1436), + [anon_sym_c_char] = ACTIONS(1436), + [anon_sym_c_schar] = ACTIONS(1436), + [anon_sym_c_uchar] = ACTIONS(1436), + [anon_sym_c_short] = ACTIONS(1436), + [anon_sym_c_ushort] = ACTIONS(1436), + [anon_sym_c_int] = ACTIONS(1436), + [anon_sym_c_uint] = ACTIONS(1436), + [anon_sym_c_long] = ACTIONS(1436), + [anon_sym_c_ulong] = ACTIONS(1436), + [anon_sym_c_longlong] = ACTIONS(1436), + [anon_sym_c_ulonglong] = ACTIONS(1436), + [anon_sym_c_float] = ACTIONS(1436), + [anon_sym_c_double] = ACTIONS(1436), + [anon_sym_c_longdouble] = ACTIONS(1436), + [anon_sym_PLUS_EQ] = ACTIONS(1434), + [anon_sym_DASH_EQ] = ACTIONS(1434), + [anon_sym_STAR_EQ] = ACTIONS(1434), + [anon_sym_SLASH_EQ] = ACTIONS(1434), + [anon_sym_else] = ACTIONS(1436), + [anon_sym_DOT_DOT] = ACTIONS(1436), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1434), + [anon_sym_orelse] = ACTIONS(1436), + [anon_sym_catch] = ACTIONS(1436), + [anon_sym_or] = ACTIONS(1436), + [anon_sym_and] = ACTIONS(1771), + [anon_sym_EQ_EQ] = ACTIONS(1773), + [anon_sym_BANG_EQ] = ACTIONS(1773), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_LT_EQ] = ACTIONS(1773), + [anon_sym_GT] = ACTIONS(1775), + [anon_sym_GT_EQ] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_try] = ACTIONS(1436), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [sym_none] = ACTIONS(1436), + [sym_undefined] = ACTIONS(1436), + [sym_sink] = ACTIONS(1436), + [sym_integer] = ACTIONS(1436), + [sym_float] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_multiline_string] = ACTIONS(1434), + [sym_character] = ACTIONS(1434), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1434), + }, + [STATE(736)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1474), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_keyed_field_initializer] = STATE(1552), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(756), + [sym_identifier] = ACTIONS(1803), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -85024,9 +84035,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -85038,122 +84049,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(1807), }, - [STATE(756)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_assignment_statement] = STATE(1935), - [sym_expression_statement] = STATE(1935), - [sym_expression] = STATE(1411), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [STATE(737)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(496), + [sym_expression] = STATE(429), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(757)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(524), - [sym_expression] = STATE(457), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(754), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -85186,8 +84117,500 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(738)] = { + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(993), + [anon_sym_func] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(993), + [anon_sym_anyopaque] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_int] = ACTIONS(993), + [anon_sym_float] = ACTIONS(993), + [anon_sym_range] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_c_char] = ACTIONS(993), + [anon_sym_c_schar] = ACTIONS(993), + [anon_sym_c_uchar] = ACTIONS(993), + [anon_sym_c_short] = ACTIONS(993), + [anon_sym_c_ushort] = ACTIONS(993), + [anon_sym_c_int] = ACTIONS(993), + [anon_sym_c_uint] = ACTIONS(993), + [anon_sym_c_long] = ACTIONS(993), + [anon_sym_c_ulong] = ACTIONS(993), + [anon_sym_c_longlong] = ACTIONS(993), + [anon_sym_c_ulonglong] = ACTIONS(993), + [anon_sym_c_float] = ACTIONS(993), + [anon_sym_c_double] = ACTIONS(993), + [anon_sym_c_longdouble] = ACTIONS(993), + [anon_sym_PLUS_EQ] = ACTIONS(991), + [anon_sym_DASH_EQ] = ACTIONS(991), + [anon_sym_STAR_EQ] = ACTIONS(991), + [anon_sym_SLASH_EQ] = ACTIONS(991), + [anon_sym_else] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(991), + [anon_sym_orelse] = ACTIONS(993), + [anon_sym_catch] = ACTIONS(993), + [anon_sym_or] = ACTIONS(993), + [anon_sym_and] = ACTIONS(993), + [anon_sym_EQ_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_LT_EQ] = ACTIONS(991), + [anon_sym_GT] = ACTIONS(993), + [anon_sym_GT_EQ] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_try] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [sym_none] = ACTIONS(993), + [sym_undefined] = ACTIONS(993), + [sym_sink] = ACTIONS(993), + [sym_integer] = ACTIONS(993), + [sym_float] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [sym_multiline_string] = ACTIONS(991), + [sym_character] = ACTIONS(991), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(991), + }, + [STATE(739)] = { + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(929), + [anon_sym_func] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_struct] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(929), + [anon_sym_anyopaque] = ACTIONS(929), + [anon_sym_bool] = ACTIONS(929), + [anon_sym_int] = ACTIONS(929), + [anon_sym_float] = ACTIONS(929), + [anon_sym_range] = ACTIONS(929), + [anon_sym_i8] = ACTIONS(929), + [anon_sym_i16] = ACTIONS(929), + [anon_sym_i32] = ACTIONS(929), + [anon_sym_i64] = ACTIONS(929), + [anon_sym_u8] = ACTIONS(929), + [anon_sym_u16] = ACTIONS(929), + [anon_sym_u32] = ACTIONS(929), + [anon_sym_u64] = ACTIONS(929), + [anon_sym_isize] = ACTIONS(929), + [anon_sym_usize] = ACTIONS(929), + [anon_sym_f32] = ACTIONS(929), + [anon_sym_f64] = ACTIONS(929), + [anon_sym_c_char] = ACTIONS(929), + [anon_sym_c_schar] = ACTIONS(929), + [anon_sym_c_uchar] = ACTIONS(929), + [anon_sym_c_short] = ACTIONS(929), + [anon_sym_c_ushort] = ACTIONS(929), + [anon_sym_c_int] = ACTIONS(929), + [anon_sym_c_uint] = ACTIONS(929), + [anon_sym_c_long] = ACTIONS(929), + [anon_sym_c_ulong] = ACTIONS(929), + [anon_sym_c_longlong] = ACTIONS(929), + [anon_sym_c_ulonglong] = ACTIONS(929), + [anon_sym_c_float] = ACTIONS(929), + [anon_sym_c_double] = ACTIONS(929), + [anon_sym_c_longdouble] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(927), + [anon_sym_DASH_EQ] = ACTIONS(927), + [anon_sym_STAR_EQ] = ACTIONS(927), + [anon_sym_SLASH_EQ] = ACTIONS(927), + [anon_sym_else] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(927), + [anon_sym_orelse] = ACTIONS(929), + [anon_sym_catch] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [sym_none] = ACTIONS(929), + [sym_undefined] = ACTIONS(929), + [sym_sink] = ACTIONS(929), + [sym_integer] = ACTIONS(929), + [sym_float] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym_multiline_string] = ACTIONS(927), + [sym_character] = ACTIONS(927), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(927), + }, + [STATE(740)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_assignment_statement] = STATE(1976), + [sym_expression_statement] = STATE(1976), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(741)] = { + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(993), + [anon_sym_func] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(993), + [anon_sym_anyopaque] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_int] = ACTIONS(993), + [anon_sym_float] = ACTIONS(993), + [anon_sym_range] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_c_char] = ACTIONS(993), + [anon_sym_c_schar] = ACTIONS(993), + [anon_sym_c_uchar] = ACTIONS(993), + [anon_sym_c_short] = ACTIONS(993), + [anon_sym_c_ushort] = ACTIONS(993), + [anon_sym_c_int] = ACTIONS(993), + [anon_sym_c_uint] = ACTIONS(993), + [anon_sym_c_long] = ACTIONS(993), + [anon_sym_c_ulong] = ACTIONS(993), + [anon_sym_c_longlong] = ACTIONS(993), + [anon_sym_c_ulonglong] = ACTIONS(993), + [anon_sym_c_float] = ACTIONS(993), + [anon_sym_c_double] = ACTIONS(993), + [anon_sym_c_longdouble] = ACTIONS(993), + [anon_sym_PLUS_EQ] = ACTIONS(991), + [anon_sym_DASH_EQ] = ACTIONS(991), + [anon_sym_STAR_EQ] = ACTIONS(991), + [anon_sym_SLASH_EQ] = ACTIONS(991), + [anon_sym_else] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(991), + [anon_sym_orelse] = ACTIONS(993), + [anon_sym_catch] = ACTIONS(993), + [anon_sym_or] = ACTIONS(993), + [anon_sym_and] = ACTIONS(993), + [anon_sym_EQ_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_LT_EQ] = ACTIONS(991), + [anon_sym_GT] = ACTIONS(993), + [anon_sym_GT_EQ] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_try] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [sym_none] = ACTIONS(993), + [sym_undefined] = ACTIONS(993), + [sym_sink] = ACTIONS(993), + [sym_integer] = ACTIONS(993), + [sym_float] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [sym_multiline_string] = ACTIONS(991), + [sym_character] = ACTIONS(991), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(991), + }, + [STATE(742)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(500), + [sym_expression] = STATE(425), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(737), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1809), + }, + [STATE(743)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(496), + [sym_expression] = STATE(429), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -85200,41 +84623,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1819), + [sym__newline] = ACTIONS(227), }, - [STATE(758)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(524), - [sym_expression] = STATE(457), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(733), - [sym_identifier] = ACTIONS(1585), + [STATE(744)] = { + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(929), + [anon_sym_func] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_struct] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(929), + [anon_sym_anyopaque] = ACTIONS(929), + [anon_sym_bool] = ACTIONS(929), + [anon_sym_int] = ACTIONS(929), + [anon_sym_float] = ACTIONS(929), + [anon_sym_range] = ACTIONS(929), + [anon_sym_i8] = ACTIONS(929), + [anon_sym_i16] = ACTIONS(929), + [anon_sym_i32] = ACTIONS(929), + [anon_sym_i64] = ACTIONS(929), + [anon_sym_u8] = ACTIONS(929), + [anon_sym_u16] = ACTIONS(929), + [anon_sym_u32] = ACTIONS(929), + [anon_sym_u64] = ACTIONS(929), + [anon_sym_isize] = ACTIONS(929), + [anon_sym_usize] = ACTIONS(929), + [anon_sym_f32] = ACTIONS(929), + [anon_sym_f64] = ACTIONS(929), + [anon_sym_c_char] = ACTIONS(929), + [anon_sym_c_schar] = ACTIONS(929), + [anon_sym_c_uchar] = ACTIONS(929), + [anon_sym_c_short] = ACTIONS(929), + [anon_sym_c_ushort] = ACTIONS(929), + [anon_sym_c_int] = ACTIONS(929), + [anon_sym_c_uint] = ACTIONS(929), + [anon_sym_c_long] = ACTIONS(929), + [anon_sym_c_ulong] = ACTIONS(929), + [anon_sym_c_longlong] = ACTIONS(929), + [anon_sym_c_ulonglong] = ACTIONS(929), + [anon_sym_c_float] = ACTIONS(929), + [anon_sym_c_double] = ACTIONS(929), + [anon_sym_c_longdouble] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(927), + [anon_sym_DASH_EQ] = ACTIONS(927), + [anon_sym_STAR_EQ] = ACTIONS(927), + [anon_sym_SLASH_EQ] = ACTIONS(927), + [anon_sym_else] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(927), + [anon_sym_orelse] = ACTIONS(1785), + [anon_sym_catch] = ACTIONS(1787), + [anon_sym_or] = ACTIONS(1789), + [anon_sym_and] = ACTIONS(1771), + [anon_sym_EQ_EQ] = ACTIONS(1773), + [anon_sym_BANG_EQ] = ACTIONS(1773), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_LT_EQ] = ACTIONS(1773), + [anon_sym_GT] = ACTIONS(1775), + [anon_sym_GT_EQ] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [sym_none] = ACTIONS(929), + [sym_undefined] = ACTIONS(929), + [sym_sink] = ACTIONS(929), + [sym_integer] = ACTIONS(929), + [sym_float] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym_multiline_string] = ACTIONS(927), + [sym_character] = ACTIONS(927), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(927), + }, + [STATE(745)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(496), + [sym_expression] = STATE(429), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -85267,9 +84773,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(746)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(496), + [sym_expression] = STATE(429), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(747)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_assignment_statement] = STATE(1548), + [sym_expression_statement] = STATE(1548), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(751), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(1819), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -85283,39 +84953,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1821), }, - [STATE(759)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(484), - [sym_expression] = STATE(415), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(748)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_assignment_statement] = STATE(1971), + [sym_expression_statement] = STATE(1971), + [sym_expression] = STATE(1411), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(718), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -85348,9 +85019,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -85362,41 +85033,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(1823), }, - [STATE(760)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(524), - [sym_expression] = STATE(457), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1773), + [STATE(749)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(500), + [sym_expression] = STATE(425), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(746), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -85429,8 +85101,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -85443,41 +85115,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1829), + [sym__newline] = ACTIONS(1825), }, - [STATE(761)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(524), - [sym_expression] = STATE(457), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(739), - [sym_identifier] = ACTIONS(1585), + [STATE(750)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_assignment_statement] = STATE(1944), + [sym_expression_statement] = STATE(1944), + [sym_expression] = STATE(1411), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(731), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1827), + }, + [STATE(751)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_assignment_statement] = STATE(1623), + [sym_expression_statement] = STATE(1623), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(1829), [anon_sym_DASH] = ACTIONS(167), [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -85512,330 +85267,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_longdouble] = ACTIONS(37), [anon_sym_AMP] = ACTIONS(167), [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1831), - }, - [STATE(762)] = { - [ts_builtin_sym_end] = ACTIONS(855), - [sym_identifier] = ACTIONS(850), - [anon_sym_import] = ACTIONS(850), - [anon_sym_func] = ACTIONS(850), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_QMARK] = ACTIONS(855), - [anon_sym_STAR] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(855), - [anon_sym_void] = ACTIONS(850), - [anon_sym_anyopaque] = ACTIONS(850), - [anon_sym_bool] = ACTIONS(850), - [anon_sym_int] = ACTIONS(850), - [anon_sym_float] = ACTIONS(850), - [anon_sym_range] = ACTIONS(850), - [anon_sym_i8] = ACTIONS(850), - [anon_sym_i16] = ACTIONS(850), - [anon_sym_i32] = ACTIONS(850), - [anon_sym_i64] = ACTIONS(850), - [anon_sym_u8] = ACTIONS(850), - [anon_sym_u16] = ACTIONS(850), - [anon_sym_u32] = ACTIONS(850), - [anon_sym_u64] = ACTIONS(850), - [anon_sym_isize] = ACTIONS(850), - [anon_sym_usize] = ACTIONS(850), - [anon_sym_f32] = ACTIONS(850), - [anon_sym_f64] = ACTIONS(850), - [anon_sym_c_char] = ACTIONS(850), - [anon_sym_c_schar] = ACTIONS(850), - [anon_sym_c_uchar] = ACTIONS(850), - [anon_sym_c_short] = ACTIONS(850), - [anon_sym_c_ushort] = ACTIONS(850), - [anon_sym_c_int] = ACTIONS(850), - [anon_sym_c_uint] = ACTIONS(850), - [anon_sym_c_long] = ACTIONS(850), - [anon_sym_c_ulong] = ACTIONS(850), - [anon_sym_c_longlong] = ACTIONS(850), - [anon_sym_c_ulonglong] = ACTIONS(850), - [anon_sym_c_float] = ACTIONS(850), - [anon_sym_c_double] = ACTIONS(850), - [anon_sym_c_longdouble] = ACTIONS(850), - [anon_sym_COLON] = ACTIONS(1568), - [anon_sym_else] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(855), - [anon_sym_AMP] = ACTIONS(855), - [anon_sym_try] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(871), - [anon_sym_CARET] = ACTIONS(855), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [sym_none] = ACTIONS(850), - [sym_undefined] = ACTIONS(850), - [sym_sink] = ACTIONS(850), - [sym_integer] = ACTIONS(850), - [sym_float] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [sym_multiline_string] = ACTIONS(855), - [sym_character] = ACTIONS(855), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), - }, - [STATE(763)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_block] = STATE(484), - [sym_expression] = STATE(415), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(764)] = { - [sym_type] = STATE(453), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(295), - [sym_identifier] = ACTIONS(297), - [anon_sym_import] = ACTIONS(300), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(300), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_DASH] = ACTIONS(300), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_mut] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_PLUS_EQ] = ACTIONS(295), - [anon_sym_DASH_EQ] = ACTIONS(295), - [anon_sym_STAR_EQ] = ACTIONS(295), - [anon_sym_SLASH_EQ] = ACTIONS(295), - [anon_sym_COLON] = ACTIONS(295), - [anon_sym_else] = ACTIONS(300), - [anon_sym_DOT_DOT] = ACTIONS(300), - [anon_sym_DOT_DOT_EQ] = ACTIONS(295), - [anon_sym_orelse] = ACTIONS(300), - [anon_sym_catch] = ACTIONS(300), - [anon_sym_or] = ACTIONS(300), - [anon_sym_and] = ACTIONS(300), - [anon_sym_EQ_EQ] = ACTIONS(295), - [anon_sym_BANG_EQ] = ACTIONS(295), - [anon_sym_LT] = ACTIONS(300), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT] = ACTIONS(300), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_PLUS] = ACTIONS(300), - [anon_sym_SLASH] = ACTIONS(300), - [anon_sym_DOT] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(295), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(765)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_assignment_statement] = STATE(1585), - [sym_expression_statement] = STATE(1585), - [sym_expression] = STATE(1409), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -85848,39 +85279,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(766)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1479), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(787), - [sym_identifier] = ACTIONS(1585), + [STATE(752)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_assignment_statement] = STATE(1625), + [sym_expression_statement] = STATE(1625), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(733), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -85913,10 +85347,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1833), + }, + [STATE(753)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(500), + [sym_expression] = STATE(425), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(745), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -85930,38 +85445,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1835), }, - [STATE(767)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1443), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(860), - [sym_identifier] = ACTIONS(1585), + [STATE(754)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(496), + [sym_expression] = STATE(429), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -85994,9 +85511,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(755)] = { + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(929), + [anon_sym_func] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_struct] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(929), + [anon_sym_anyopaque] = ACTIONS(929), + [anon_sym_bool] = ACTIONS(929), + [anon_sym_int] = ACTIONS(929), + [anon_sym_float] = ACTIONS(929), + [anon_sym_range] = ACTIONS(929), + [anon_sym_i8] = ACTIONS(929), + [anon_sym_i16] = ACTIONS(929), + [anon_sym_i32] = ACTIONS(929), + [anon_sym_i64] = ACTIONS(929), + [anon_sym_u8] = ACTIONS(929), + [anon_sym_u16] = ACTIONS(929), + [anon_sym_u32] = ACTIONS(929), + [anon_sym_u64] = ACTIONS(929), + [anon_sym_isize] = ACTIONS(929), + [anon_sym_usize] = ACTIONS(929), + [anon_sym_f32] = ACTIONS(929), + [anon_sym_f64] = ACTIONS(929), + [anon_sym_c_char] = ACTIONS(929), + [anon_sym_c_schar] = ACTIONS(929), + [anon_sym_c_uchar] = ACTIONS(929), + [anon_sym_c_short] = ACTIONS(929), + [anon_sym_c_ushort] = ACTIONS(929), + [anon_sym_c_int] = ACTIONS(929), + [anon_sym_c_uint] = ACTIONS(929), + [anon_sym_c_long] = ACTIONS(929), + [anon_sym_c_ulong] = ACTIONS(929), + [anon_sym_c_longlong] = ACTIONS(929), + [anon_sym_c_ulonglong] = ACTIONS(929), + [anon_sym_c_float] = ACTIONS(929), + [anon_sym_c_double] = ACTIONS(929), + [anon_sym_c_longdouble] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(927), + [anon_sym_DASH_EQ] = ACTIONS(927), + [anon_sym_STAR_EQ] = ACTIONS(927), + [anon_sym_SLASH_EQ] = ACTIONS(927), + [anon_sym_else] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(927), + [anon_sym_orelse] = ACTIONS(929), + [anon_sym_catch] = ACTIONS(929), + [anon_sym_or] = ACTIONS(1789), + [anon_sym_and] = ACTIONS(1771), + [anon_sym_EQ_EQ] = ACTIONS(1773), + [anon_sym_BANG_EQ] = ACTIONS(1773), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_LT_EQ] = ACTIONS(1773), + [anon_sym_GT] = ACTIONS(1775), + [anon_sym_GT_EQ] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [sym_none] = ACTIONS(929), + [sym_undefined] = ACTIONS(929), + [sym_sink] = ACTIONS(929), + [sym_integer] = ACTIONS(929), + [sym_float] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym_multiline_string] = ACTIONS(927), + [sym_character] = ACTIONS(927), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(927), + }, + [STATE(756)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1469), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_keyed_field_initializer] = STATE(1654), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1803), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(757)] = { + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(929), + [anon_sym_func] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_struct] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(929), + [anon_sym_anyopaque] = ACTIONS(929), + [anon_sym_bool] = ACTIONS(929), + [anon_sym_int] = ACTIONS(929), + [anon_sym_float] = ACTIONS(929), + [anon_sym_range] = ACTIONS(929), + [anon_sym_i8] = ACTIONS(929), + [anon_sym_i16] = ACTIONS(929), + [anon_sym_i32] = ACTIONS(929), + [anon_sym_i64] = ACTIONS(929), + [anon_sym_u8] = ACTIONS(929), + [anon_sym_u16] = ACTIONS(929), + [anon_sym_u32] = ACTIONS(929), + [anon_sym_u64] = ACTIONS(929), + [anon_sym_isize] = ACTIONS(929), + [anon_sym_usize] = ACTIONS(929), + [anon_sym_f32] = ACTIONS(929), + [anon_sym_f64] = ACTIONS(929), + [anon_sym_c_char] = ACTIONS(929), + [anon_sym_c_schar] = ACTIONS(929), + [anon_sym_c_uchar] = ACTIONS(929), + [anon_sym_c_short] = ACTIONS(929), + [anon_sym_c_ushort] = ACTIONS(929), + [anon_sym_c_int] = ACTIONS(929), + [anon_sym_c_uint] = ACTIONS(929), + [anon_sym_c_long] = ACTIONS(929), + [anon_sym_c_ulong] = ACTIONS(929), + [anon_sym_c_longlong] = ACTIONS(929), + [anon_sym_c_ulonglong] = ACTIONS(929), + [anon_sym_c_float] = ACTIONS(929), + [anon_sym_c_double] = ACTIONS(929), + [anon_sym_c_longdouble] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(927), + [anon_sym_DASH_EQ] = ACTIONS(927), + [anon_sym_STAR_EQ] = ACTIONS(927), + [anon_sym_SLASH_EQ] = ACTIONS(927), + [anon_sym_else] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(927), + [anon_sym_orelse] = ACTIONS(929), + [anon_sym_catch] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_try] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [sym_none] = ACTIONS(929), + [sym_undefined] = ACTIONS(929), + [sym_sink] = ACTIONS(929), + [sym_integer] = ACTIONS(929), + [sym_float] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym_multiline_string] = ACTIONS(927), + [sym_character] = ACTIONS(927), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(927), + }, + [STATE(758)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_block] = STATE(500), + [sym_expression] = STATE(425), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(730), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -86010,38 +85855,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1839), }, - [STATE(768)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1456), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [STATE(759)] = { + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(1436), + [anon_sym_func] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_EQ] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(1436), + [anon_sym_anyopaque] = ACTIONS(1436), + [anon_sym_bool] = ACTIONS(1436), + [anon_sym_int] = ACTIONS(1436), + [anon_sym_float] = ACTIONS(1436), + [anon_sym_range] = ACTIONS(1436), + [anon_sym_i8] = ACTIONS(1436), + [anon_sym_i16] = ACTIONS(1436), + [anon_sym_i32] = ACTIONS(1436), + [anon_sym_i64] = ACTIONS(1436), + [anon_sym_u8] = ACTIONS(1436), + [anon_sym_u16] = ACTIONS(1436), + [anon_sym_u32] = ACTIONS(1436), + [anon_sym_u64] = ACTIONS(1436), + [anon_sym_isize] = ACTIONS(1436), + [anon_sym_usize] = ACTIONS(1436), + [anon_sym_f32] = ACTIONS(1436), + [anon_sym_f64] = ACTIONS(1436), + [anon_sym_c_char] = ACTIONS(1436), + [anon_sym_c_schar] = ACTIONS(1436), + [anon_sym_c_uchar] = ACTIONS(1436), + [anon_sym_c_short] = ACTIONS(1436), + [anon_sym_c_ushort] = ACTIONS(1436), + [anon_sym_c_int] = ACTIONS(1436), + [anon_sym_c_uint] = ACTIONS(1436), + [anon_sym_c_long] = ACTIONS(1436), + [anon_sym_c_ulong] = ACTIONS(1436), + [anon_sym_c_longlong] = ACTIONS(1436), + [anon_sym_c_ulonglong] = ACTIONS(1436), + [anon_sym_c_float] = ACTIONS(1436), + [anon_sym_c_double] = ACTIONS(1436), + [anon_sym_c_longdouble] = ACTIONS(1436), + [anon_sym_PLUS_EQ] = ACTIONS(1434), + [anon_sym_DASH_EQ] = ACTIONS(1434), + [anon_sym_STAR_EQ] = ACTIONS(1434), + [anon_sym_SLASH_EQ] = ACTIONS(1434), + [anon_sym_else] = ACTIONS(1436), + [anon_sym_DOT_DOT] = ACTIONS(1436), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1434), + [anon_sym_orelse] = ACTIONS(1436), + [anon_sym_catch] = ACTIONS(1436), + [anon_sym_or] = ACTIONS(1436), + [anon_sym_and] = ACTIONS(1436), + [anon_sym_EQ_EQ] = ACTIONS(1773), + [anon_sym_BANG_EQ] = ACTIONS(1773), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_LT_EQ] = ACTIONS(1773), + [anon_sym_GT] = ACTIONS(1775), + [anon_sym_GT_EQ] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_try] = ACTIONS(1436), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [sym_none] = ACTIONS(1436), + [sym_undefined] = ACTIONS(1436), + [sym_sink] = ACTIONS(1436), + [sym_integer] = ACTIONS(1436), + [sym_float] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_multiline_string] = ACTIONS(1434), + [sym_character] = ACTIONS(1434), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1434), + }, + [STATE(760)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1433), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(1841), + [anon_sym_RPAREN] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -86074,9 +86002,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -86088,40 +86016,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(769)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1437), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [STATE(761)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1435), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(784), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_RBRACK] = ACTIONS(1843), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -86154,169 +86083,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(770)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1437), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(806), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(1841), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1843), - }, - [STATE(771)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1453), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(810), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(1841), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -86330,38 +86099,930 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1845), }, + [STATE(762)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1473), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(2034), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_RBRACK] = ACTIONS(1847), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(763)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1437), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(767), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_RPAREN] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1853), + }, + [STATE(764)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1444), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(768), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_RPAREN] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1855), + }, + [STATE(765)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1437), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_RPAREN] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(766)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1437), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(801), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_RPAREN] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1859), + }, + [STATE(767)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1438), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_RPAREN] = ACTIONS(1861), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(768)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1437), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_RPAREN] = ACTIONS(1861), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(769)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1437), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_RPAREN] = ACTIONS(1861), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1863), + }, + [STATE(770)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1444), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(809), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_RPAREN] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1865), + }, + [STATE(771)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1438), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, [STATE(772)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(722), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(819), - [sym_identifier] = ACTIONS(1585), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1444), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(787), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_RBRACK] = ACTIONS(1869), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1871), + }, + [STATE(773)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1388), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(813), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_DASH] = ACTIONS(167), [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -86396,166 +87057,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_longdouble] = ACTIONS(37), [anon_sym_AMP] = ACTIONS(167), [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1847), - }, - [STATE(773)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1383), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(910), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1849), - }, - [STATE(774)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(565), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(830), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -86568,760 +87069,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1851), - }, - [STATE(775)] = { - [sym_type] = STATE(2062), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(1605), - [anon_sym_COLON_COLON] = ACTIONS(1853), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_PLUS_EQ] = ACTIONS(855), - [anon_sym_DASH_EQ] = ACTIONS(855), - [anon_sym_STAR_EQ] = ACTIONS(855), - [anon_sym_SLASH_EQ] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_else] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(871), - [anon_sym_CARET] = ACTIONS(855), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), - }, - [STATE(776)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1432), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(793), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1857), - }, - [STATE(777)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1373), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(1859), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(778)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1430), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(779), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(1861), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1863), - }, - [STATE(779)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1373), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(1865), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(780)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1437), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(781)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1437), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1869), - }, - [STATE(782)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1453), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(801), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1871), - }, - [STATE(783)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1472), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(1947), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(1873), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1875), }, - [STATE(784)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1456), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [STATE(774)] = { + [sym_type] = STATE(456), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [anon_sym_import] = ACTIONS(314), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_EQ] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_DASH] = ACTIONS(314), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(326), + [anon_sym_mut] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(331), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -87354,54 +87127,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [anon_sym_PLUS_EQ] = ACTIONS(309), + [anon_sym_DASH_EQ] = ACTIONS(309), + [anon_sym_STAR_EQ] = ACTIONS(309), + [anon_sym_SLASH_EQ] = ACTIONS(309), + [anon_sym_COLON] = ACTIONS(309), + [anon_sym_else] = ACTIONS(314), + [anon_sym_DOT_DOT] = ACTIONS(314), + [anon_sym_DOT_DOT_EQ] = ACTIONS(309), + [anon_sym_orelse] = ACTIONS(314), + [anon_sym_catch] = ACTIONS(314), + [anon_sym_or] = ACTIONS(314), + [anon_sym_and] = ACTIONS(314), + [anon_sym_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(314), + [anon_sym_LT_EQ] = ACTIONS(309), + [anon_sym_GT] = ACTIONS(314), + [anon_sym_GT_EQ] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(314), + [anon_sym_SLASH] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(314), + [anon_sym_CARET] = ACTIONS(309), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(309), }, - [STATE(785)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1437), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [STATE(775)] = { + [sym_type] = STATE(408), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(576), + [sym_identifier] = ACTIONS(578), + [anon_sym_import] = ACTIONS(581), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(589), + [anon_sym_mut] = ACTIONS(608), + [anon_sym_LBRACK] = ACTIONS(594), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -87434,54 +87208,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(576), + [anon_sym_else] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_orelse] = ACTIONS(581), + [anon_sym_catch] = ACTIONS(581), + [anon_sym_or] = ACTIONS(581), + [anon_sym_and] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(576), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(576), }, - [STATE(786)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1396), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(893), - [sym_identifier] = ACTIONS(1773), + [STATE(776)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(540), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(834), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -87514,8 +87298,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -87528,39 +87312,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1879), + [sym__newline] = ACTIONS(1877), }, - [STATE(787)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1474), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(1251), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [STATE(777)] = { + [sym_type] = STATE(407), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(576), + [sym_identifier] = ACTIONS(578), + [anon_sym_import] = ACTIONS(581), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(589), + [anon_sym_mut] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(594), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -87593,10 +87370,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_DOT_DOT] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(1595), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(576), + [anon_sym_else] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_orelse] = ACTIONS(581), + [anon_sym_catch] = ACTIONS(581), + [anon_sym_or] = ACTIONS(581), + [anon_sym_and] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(576), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(576), + }, + [STATE(778)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1438), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_RBRACK] = ACTIONS(1879), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(779)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1437), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_RBRACK] = ACTIONS(1879), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(780)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1449), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(852), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -87610,38 +87638,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1881), }, - [STATE(788)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1456), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [STATE(781)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1437), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(804), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(1883), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_RBRACK] = ACTIONS(1879), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -87674,9 +87703,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -87688,40 +87717,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(1883), }, - [STATE(789)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1453), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(798), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(1885), + [STATE(782)] = { + [sym_type] = STATE(2073), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(1631), + [anon_sym_COLON_COLON] = ACTIONS(1885), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_RPAREN] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(865), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -87754,9 +87775,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [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_COLON] = ACTIONS(871), + [anon_sym_else] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(857), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(857), + }, + [STATE(783)] = { + [sym_type] = STATE(431), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(345), + [sym_identifier] = ACTIONS(638), + [anon_sym_import] = ACTIONS(349), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_EQ] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_QMARK] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(647), + [anon_sym_mut] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(345), + [anon_sym_DASH_EQ] = ACTIONS(345), + [anon_sym_STAR_EQ] = ACTIONS(345), + [anon_sym_SLASH_EQ] = ACTIONS(345), + [anon_sym_COLON] = ACTIONS(345), + [anon_sym_else] = ACTIONS(349), + [anon_sym_DOT_DOT] = ACTIONS(349), + [anon_sym_DOT_DOT_EQ] = ACTIONS(345), + [anon_sym_orelse] = ACTIONS(349), + [anon_sym_catch] = ACTIONS(349), + [anon_sym_or] = ACTIONS(349), + [anon_sym_and] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(345), + [anon_sym_BANG_EQ] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(345), + [anon_sym_GT] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_CARET] = ACTIONS(345), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(345), + }, + [STATE(784)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1374), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_RBRACK] = ACTIONS(1887), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -87768,40 +87960,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1887), + [sym__newline] = ACTIONS(227), }, - [STATE(790)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(537), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(905), - [sym_identifier] = ACTIONS(1773), + [STATE(785)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1434), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(760), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_RPAREN] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -87834,89 +88027,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1889), - }, - [STATE(791)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1379), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(921), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -87930,38 +88043,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1891), }, - [STATE(792)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1433), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [STATE(786)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1444), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(765), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_RPAREN] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -87994,9 +88108,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -88008,199 +88122,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(1895), }, - [STATE(793)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1431), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [STATE(787)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1437), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(794)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1456), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1895), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(795)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1434), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(777), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_RBRACK] = ACTIONS(1897), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -88234,9 +88189,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(788)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1437), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(778), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_RBRACK] = ACTIONS(1897), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -88250,38 +88286,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1899), }, - [STATE(796)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1453), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(780), - [sym_identifier] = ACTIONS(1585), + [STATE(789)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1438), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_RPAREN] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -88314,9 +88351,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(790)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1430), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(808), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_RPAREN] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -88330,38 +88448,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1903), }, - [STATE(797)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1463), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(1952), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(1905), + [STATE(791)] = { + [sym_type] = STATE(418), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(610), + [sym_identifier] = ACTIONS(612), + [anon_sym_import] = ACTIONS(615), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(628), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -88394,9 +88504,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_PLUS_EQ] = ACTIONS(610), + [anon_sym_DASH_EQ] = ACTIONS(610), + [anon_sym_STAR_EQ] = ACTIONS(610), + [anon_sym_SLASH_EQ] = ACTIONS(610), + [anon_sym_COLON] = ACTIONS(610), + [anon_sym_else] = ACTIONS(615), + [anon_sym_DOT_DOT] = ACTIONS(615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(610), + [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(610), + [anon_sym_BANG_EQ] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(610), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(610), + }, + [STATE(792)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1466), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(806), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1905), + }, + [STATE(793)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1444), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(779), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_RBRACK] = ACTIONS(1897), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -88410,38 +88691,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1907), }, - [STATE(798)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1437), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [STATE(794)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1381), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(957), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -88474,9 +88756,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -88488,1552 +88770,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(1909), }, - [STATE(799)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1428), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(792), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1911), - }, - [STATE(800)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1456), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(801)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1437), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(802)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1437), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(784), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1915), - }, - [STATE(803)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1453), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1917), - }, - [STATE(804)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(964), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1919), - }, - [STATE(805)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1437), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(788), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1923), - }, - [STATE(806)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1456), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(807)] = { - [sym_type] = STATE(2049), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(855), - [sym_identifier] = ACTIONS(842), - [anon_sym_COLON_COLON] = ACTIONS(1925), - [anon_sym_import] = ACTIONS(850), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_PLUS_EQ] = ACTIONS(855), - [anon_sym_DASH_EQ] = ACTIONS(855), - [anon_sym_STAR_EQ] = ACTIONS(855), - [anon_sym_SLASH_EQ] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(871), - [anon_sym_CARET] = ACTIONS(855), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), - }, - [STATE(808)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1453), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(769), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(1909), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1927), - }, - [STATE(809)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1437), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(768), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(1909), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1929), - }, - [STATE(810)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1437), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(811)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1437), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(794), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1931), - }, - [STATE(812)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1369), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(920), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1933), - }, - [STATE(813)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(865), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1935), - }, - [STATE(814)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(702), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(815)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(401), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(816)] = { - [sym_type] = STATE(2073), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(855), - [sym_identifier] = ACTIONS(842), - [anon_sym_COLON_COLON] = ACTIONS(1807), - [anon_sym_import] = ACTIONS(850), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_PLUS_EQ] = ACTIONS(855), - [anon_sym_DASH_EQ] = ACTIONS(855), - [anon_sym_STAR_EQ] = ACTIONS(855), - [anon_sym_SLASH_EQ] = ACTIONS(855), - [anon_sym_else] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(855), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), - }, - [STATE(817)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(703), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(818)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1393), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(917), - [sym_identifier] = ACTIONS(1585), + [STATE(795)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1386), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(878), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_DASH] = ACTIONS(77), [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(1873), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -90069,7 +88839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_longdouble] = ACTIONS(37), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -90081,1066 +88851,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1937), + [sym__newline] = ACTIONS(1911), }, - [STATE(819)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(704), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(820)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(401), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(821)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(705), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(822)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), + [STATE(796)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), [sym_expression] = STATE(565), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(830), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1851), - }, - [STATE(823)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(706), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(824)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(558), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(825)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(707), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(826)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(553), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(827)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(557), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(876), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1939), - }, - [STATE(828)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1460), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(829)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1475), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(828), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1941), - }, - [STATE(830)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(561), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(831)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(566), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(833), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1943), - }, - [STATE(832)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(401), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(954), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -91174,7 +88919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -91187,38 +88932,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(1913), }, - [STATE(833)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(560), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(797)] = { + [sym_type] = STATE(420), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(610), + [sym_identifier] = ACTIONS(612), + [anon_sym_import] = ACTIONS(615), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(610), + [anon_sym_DASH_EQ] = ACTIONS(610), + [anon_sym_STAR_EQ] = ACTIONS(610), + [anon_sym_SLASH_EQ] = ACTIONS(610), + [anon_sym_COLON] = ACTIONS(610), + [anon_sym_else] = ACTIONS(615), + [anon_sym_DOT_DOT] = ACTIONS(615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(610), + [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(610), + [anon_sym_BANG_EQ] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(610), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(610), + }, + [STATE(798)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1374), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_RBRACK] = ACTIONS(1915), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(799)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(755), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(961), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(1873), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -91252,9 +89161,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -91266,39 +89175,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(1917), }, - [STATE(834)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(569), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(838), - [sym_identifier] = ACTIONS(1773), + [STATE(800)] = { + [ts_builtin_sym_end] = ACTIONS(857), + [sym_identifier] = ACTIONS(852), + [anon_sym_import] = ACTIONS(852), + [anon_sym_func] = ACTIONS(852), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_struct] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_RPAREN] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(857), + [anon_sym_DOLLAR] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(857), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_void] = ACTIONS(852), + [anon_sym_anyopaque] = ACTIONS(852), + [anon_sym_bool] = ACTIONS(852), + [anon_sym_int] = ACTIONS(852), + [anon_sym_float] = ACTIONS(852), + [anon_sym_range] = ACTIONS(852), + [anon_sym_i8] = ACTIONS(852), + [anon_sym_i16] = ACTIONS(852), + [anon_sym_i32] = ACTIONS(852), + [anon_sym_i64] = ACTIONS(852), + [anon_sym_u8] = ACTIONS(852), + [anon_sym_u16] = ACTIONS(852), + [anon_sym_u32] = ACTIONS(852), + [anon_sym_u64] = ACTIONS(852), + [anon_sym_isize] = ACTIONS(852), + [anon_sym_usize] = ACTIONS(852), + [anon_sym_f32] = ACTIONS(852), + [anon_sym_f64] = ACTIONS(852), + [anon_sym_c_char] = ACTIONS(852), + [anon_sym_c_schar] = ACTIONS(852), + [anon_sym_c_uchar] = ACTIONS(852), + [anon_sym_c_short] = ACTIONS(852), + [anon_sym_c_ushort] = ACTIONS(852), + [anon_sym_c_int] = ACTIONS(852), + [anon_sym_c_uint] = ACTIONS(852), + [anon_sym_c_long] = ACTIONS(852), + [anon_sym_c_ulong] = ACTIONS(852), + [anon_sym_c_longlong] = ACTIONS(852), + [anon_sym_c_ulonglong] = ACTIONS(852), + [anon_sym_c_float] = ACTIONS(852), + [anon_sym_c_double] = ACTIONS(852), + [anon_sym_c_longdouble] = ACTIONS(852), + [anon_sym_COLON] = ACTIONS(1582), + [anon_sym_else] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(857), + [anon_sym_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_try] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_true] = ACTIONS(852), + [anon_sym_false] = ACTIONS(852), + [sym_none] = ACTIONS(852), + [sym_undefined] = ACTIONS(852), + [sym_sink] = ACTIONS(852), + [sym_integer] = ACTIONS(852), + [sym_float] = ACTIONS(857), + [anon_sym_DQUOTE] = ACTIONS(857), + [sym_multiline_string] = ACTIONS(857), + [sym_character] = ACTIONS(857), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(857), + }, + [STATE(801)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1438), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_RPAREN] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -91331,8 +89323,1459 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(802)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1492), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(938), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1919), + }, + [STATE(803)] = { + [sym_type] = STATE(2051), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(857), + [sym_identifier] = ACTIONS(842), + [anon_sym_COLON_COLON] = ACTIONS(1921), + [anon_sym_import] = ACTIONS(852), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(857), + [anon_sym_DASH_EQ] = ACTIONS(857), + [anon_sym_STAR_EQ] = ACTIONS(857), + [anon_sym_SLASH_EQ] = ACTIONS(857), + [anon_sym_COLON] = ACTIONS(871), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(857), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(857), + }, + [STATE(804)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1438), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_RBRACK] = ACTIONS(1923), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(805)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1462), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(2001), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_RBRACK] = ACTIONS(1925), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1927), + }, + [STATE(806)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1468), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_DOT_DOT] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1929), + }, + [STATE(807)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1431), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(798), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_RBRACK] = ACTIONS(1931), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1933), + }, + [STATE(808)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1429), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_RPAREN] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(809)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1437), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_RPAREN] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(810)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1437), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_RBRACK] = ACTIONS(1923), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(811)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1437), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(771), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_RBRACK] = ACTIONS(1923), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1935), + }, + [STATE(812)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1444), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(810), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_RBRACK] = ACTIONS(1879), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1937), + }, + [STATE(813)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1400), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(814)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(15), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(815)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1439), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(847), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1939), + }, + [STATE(816)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(401), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(849), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1941), + }, + [STATE(817)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1445), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(850), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1943), + }, + [STATE(818)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1449), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(852), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1881), + }, + [STATE(819)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(532), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(829), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -91347,116 +90790,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1945), }, - [STATE(835)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1447), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(836)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), + [STATE(820)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), [sym_expression] = STATE(401), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(830), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -91489,87 +90854,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(837)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(8), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(839), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -91584,37 +90870,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1947), }, - [STATE(838)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(563), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(821)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(544), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(832), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -91647,166 +90934,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(839)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(9), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(840)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(554), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(841), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -91821,37 +90950,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1949), }, - [STATE(841)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(556), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(822)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(540), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(834), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -91884,8 +91014,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -91898,39 +91028,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(1877), }, - [STATE(842)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(15), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(1773), + [STATE(823)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1406), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -91963,8 +91094,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(824)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(545), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(836), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -91979,37 +91190,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1951), }, - [STATE(843)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(10), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(825)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(542), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(838), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -92042,8 +91254,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -92056,275 +91268,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(844)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(16), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(845)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(17), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(846)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(457), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(864), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1953), }, - [STATE(847)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1391), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(926), - [sym_identifier] = ACTIONS(1585), + [STATE(826)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(539), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(840), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1955), + }, + [STATE(827)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1451), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(853), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1957), + }, + [STATE(828)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1384), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(883), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -92358,166 +91494,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1955), - }, - [STATE(848)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(11), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(853), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1957), - }, - [STATE(849)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(550), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(916), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -92532,37 +91510,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1959), }, - [STATE(850)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(3), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(829)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(537), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -92595,8 +91574,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -92609,39 +91588,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(851)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1423), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(830)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(415), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -92674,8 +91654,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -92688,39 +91668,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(852)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(2), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(850), - [sym_identifier] = ACTIONS(1773), + [STATE(831)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1444), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(966), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -92753,9 +91734,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -92769,37 +91750,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1961), }, - [STATE(853)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(12), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(832)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(543), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -92832,8 +91814,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -92846,38 +91828,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(854)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1417), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(851), - [sym_identifier] = ACTIONS(1773), + [STATE(833)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(425), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(975), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -92911,8 +91894,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -92927,37 +91910,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1963), }, - [STATE(855)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1448), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [STATE(834)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(533), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -92990,9 +91974,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -93004,38 +91988,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(856)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(415), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [STATE(835)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(401), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(886), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -93069,166 +92054,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(857)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1473), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(858)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(457), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(975), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -93243,36 +92070,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1965), }, - [STATE(859)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1382), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(881), - [sym_identifier] = ACTIONS(1585), + [STATE(836)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(534), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(837)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1392), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(887), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -93306,9 +92214,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -93322,37 +92230,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1967), }, - [STATE(860)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1449), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [STATE(838)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(535), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -93385,166 +92294,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(861)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1450), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(862)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(4), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(887), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -93557,39 +92308,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(839)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(861), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1969), }, - [STATE(863)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1451), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [STATE(840)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(536), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -93622,245 +92454,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(864)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(415), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(865)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1452), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(866)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(570), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(870), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -93873,39 +92468,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(841)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1458), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(855), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1971), }, - [STATE(867)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1457), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(871), - [sym_identifier] = ACTIONS(1585), + [STATE(842)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1475), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -93938,9 +92614,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(843)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1459), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(856), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -93954,37 +92710,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1973), }, - [STATE(868)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1477), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [STATE(844)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(570), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(857), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -94017,88 +92774,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(869)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1392), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(927), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -94112,37 +92790,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1975), }, - [STATE(870)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(562), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(845)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1395), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(902), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -94175,8 +92854,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -94189,190 +92868,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(871)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1458), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(872)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1458), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(874), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1977), }, - [STATE(873)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1385), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [STATE(846)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1383), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), @@ -94414,7 +92936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_longdouble] = ACTIONS(37), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -94426,39 +92948,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(874)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1436), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [STATE(847)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1440), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1659), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -94491,9 +93014,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -94505,39 +93028,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(875)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(401), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [STATE(848)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(550), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(909), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -94570,87 +93094,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(876)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(568), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -94663,39 +93108,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(1979), }, - [STATE(877)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1404), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(849)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(415), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(850)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1441), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(851)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(425), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(881), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -94729,7 +93335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -94742,197 +93348,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(878)] = { - [sym_type] = STATE(2061), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(842), - [anon_sym_COLON_COLON] = ACTIONS(1979), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(852), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_PLUS_EQ] = ACTIONS(855), - [anon_sym_DASH_EQ] = ACTIONS(855), - [anon_sym_STAR_EQ] = ACTIONS(855), - [anon_sym_SLASH_EQ] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_else] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(871), - [anon_sym_CARET] = ACTIONS(855), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), - }, - [STATE(879)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1442), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(855), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1981), }, - [STATE(880)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1443), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(860), - [sym_identifier] = ACTIONS(1585), + [STATE(852)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1447), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1659), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -94965,9 +93414,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -94979,39 +93428,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1839), + [sym__newline] = ACTIONS(227), }, - [STATE(881)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1388), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [STATE(853)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1448), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(1659), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -95044,9 +93494,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -95058,39 +93508,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(882)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1456), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [STATE(854)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(5), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(870), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -95123,166 +93574,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(883)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(415), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(884)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(572), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(933), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -95297,37 +93590,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1983), }, - [STATE(885)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1467), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [STATE(855)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1436), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(1659), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -95360,9 +93654,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -95374,39 +93668,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(886)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(405), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(836), - [sym_identifier] = ACTIONS(1585), + [STATE(856)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1453), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1659), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -95439,9 +93734,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(857)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(560), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(858)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(429), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(859)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1476), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(842), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -95455,37 +93990,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1985), }, - [STATE(887)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(5), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(860)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(13), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -95518,8 +94054,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -95532,39 +94068,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(888)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1453), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(1585), + [STATE(861)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1446), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(1659), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -95597,9 +94134,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(862)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1472), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(863)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1480), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(864)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1382), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(867), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -95613,37 +94390,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1987), }, - [STATE(889)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(535), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(900), - [sym_identifier] = ACTIONS(1773), + [STATE(865)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1463), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(862), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1757), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -95676,8 +94454,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1761), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -95692,37 +94470,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1989), }, - [STATE(890)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(405), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(901), - [sym_identifier] = ACTIONS(1773), + [STATE(866)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(401), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(923), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -95755,9 +94534,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -95771,37 +94550,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1991), }, - [STATE(891)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(536), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(903), - [sym_identifier] = ACTIONS(1773), + [STATE(867)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1401), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -95834,8 +94614,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(868)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1418), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(978), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -95850,37 +94710,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1993), }, - [STATE(892)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(537), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(905), - [sym_identifier] = ACTIONS(1773), + [STATE(869)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1446), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(916), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1659), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -95913,167 +94774,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1889), - }, - [STATE(893)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1405), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(894)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(538), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(907), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -96087,37 +94790,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1995), }, - [STATE(895)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(539), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(909), - [sym_identifier] = ACTIONS(1773), + [STATE(870)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(6), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -96150,8 +94854,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -96164,39 +94868,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(871)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1379), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(951), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1997), }, - [STATE(896)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(530), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(911), - [sym_identifier] = ACTIONS(1773), + [STATE(872)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1467), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -96229,9 +95014,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(873)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(401), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(953), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -96245,37 +95110,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1999), }, - [STATE(897)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1376), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(918), - [sym_identifier] = ACTIONS(1585), + [STATE(874)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1380), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(955), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -96308,9 +95174,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -96324,37 +95190,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2001), }, - [STATE(898)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(405), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(919), - [sym_identifier] = ACTIONS(1585), + [STATE(875)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1381), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(957), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -96387,9 +95254,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1909), + }, + [STATE(876)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(846), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -96403,36 +95350,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2003), }, - [STATE(899)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1398), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(942), - [sym_identifier] = ACTIONS(1773), + [STATE(877)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1386), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(878), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -96466,9 +95414,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1911), + }, + [STATE(878)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1391), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(879)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1464), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(979), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -96482,37 +95590,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2005), }, - [STATE(900)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(540), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(880)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(14), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(814), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -96545,8 +95654,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -96559,355 +95668,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(901)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(401), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(902)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1379), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(921), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1891), - }, - [STATE(903)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(541), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(904)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1444), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(861), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2007), }, - [STATE(905)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(542), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(881)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(429), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -96940,8 +95734,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -96954,39 +95748,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(906)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1370), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(922), - [sym_identifier] = ACTIONS(1585), + [STATE(882)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1371), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(959), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -97019,9 +95814,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -97035,37 +95830,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2009), }, - [STATE(907)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(534), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(883)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1397), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -97098,8 +95894,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -97112,39 +95908,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(908)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1441), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(835), - [sym_identifier] = ACTIONS(1585), + [STATE(884)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1389), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(903), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -97177,9 +95974,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -97193,109 +95990,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2011), }, - [STATE(909)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(544), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(910)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), + [STATE(885)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), [sym_expression] = STATE(1390), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(972), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), @@ -97337,165 +96056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_longdouble] = ACTIONS(37), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(911)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(543), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(912)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1371), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(924), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -97509,115 +96070,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2013), }, - [STATE(913)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1476), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(886)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(415), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(914)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1389), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(944), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -97651,8 +96134,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -97665,39 +96148,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(887)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1398), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(888)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(429), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(889)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1399), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2015), }, - [STATE(915)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(551), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1773), + [STATE(890)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1370), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(962), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -97730,9 +96454,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -97746,748 +96470,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2017), }, - [STATE(916)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(548), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(917)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1394), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(918)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1372), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(919)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(401), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(920)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1373), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(921)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1374), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(922)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1375), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(923)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1377), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(924)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1378), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(925)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1395), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(891)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(562), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(949), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -98521,244 +96535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(926)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1400), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(927)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1402), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(928)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(457), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(978), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -98773,37 +96550,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2019), }, - [STATE(929)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1466), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(857), - [sym_identifier] = ACTIONS(1585), + [STATE(892)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(401), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(950), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -98836,9 +96614,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -98852,37 +96630,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2021), }, - [STATE(930)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(913), - [sym_identifier] = ACTIONS(1773), + [STATE(893)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(564), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(952), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -98915,8 +96694,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -98931,115 +96710,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2023), }, - [STATE(931)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1381), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(873), - [sym_identifier] = ACTIONS(1585), + [STATE(894)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(565), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(954), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2025), - }, - [STATE(932)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(564), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(824), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -99073,8 +96774,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1913), + }, + [STATE(895)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1438), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(896)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(566), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(956), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2025), + }, + [STATE(897)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(567), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(958), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -99089,36 +97030,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2027), }, - [STATE(933)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(573), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(898)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(568), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(960), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -99152,8 +97094,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -99166,32 +97108,353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(2029), }, - [STATE(934)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(457), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(856), - [sym_identifier] = ACTIONS(1585), + [STATE(899)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1372), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(969), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2031), + }, + [STATE(900)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1403), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(901)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1404), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(902)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1405), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(903)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1385), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), @@ -99233,7 +97496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_longdouble] = ACTIONS(37), [anon_sym_AMP] = ACTIONS(77), [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -99245,39 +97508,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2029), + [sym__newline] = ACTIONS(227), }, - [STATE(935)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(457), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(883), - [sym_identifier] = ACTIONS(1773), + [STATE(904)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(7), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(910), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -99310,8 +97574,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -99324,118 +97588,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2031), + [sym__newline] = ACTIONS(2033), }, - [STATE(936)] = { - [sym_type] = STATE(2080), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(1605), - [anon_sym_COLON_COLON] = ACTIONS(2033), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_PLUS_EQ] = ACTIONS(855), - [anon_sym_DASH_EQ] = ACTIONS(855), - [anon_sym_STAR_EQ] = ACTIONS(855), - [anon_sym_SLASH_EQ] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(871), - [anon_sym_CARET] = ACTIONS(855), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), - }, - [STATE(937)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(6), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(946), - [sym_identifier] = ACTIONS(1773), + [STATE(905)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(429), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -99468,8 +97654,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(906)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(429), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(907)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(425), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -99484,37 +97830,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2035), }, - [STATE(938)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(415), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [STATE(908)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(2), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(974), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -99547,87 +97894,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(939)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(552), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -99640,118 +97908,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(940)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1464), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(868), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2037), }, - [STATE(941)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(405), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(875), - [sym_identifier] = ACTIONS(1585), + [STATE(909)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(551), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -99784,9 +97974,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(910)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(8), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(911)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(558), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -99800,116 +98150,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2039), }, - [STATE(942)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1403), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(912)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(757), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(943), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(943)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1478), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(193), [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -99942,9 +98214,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(193), [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -99958,37 +98230,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2041), }, - [STATE(944)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1384), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(913)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(18), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -100021,8 +98294,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -100035,196 +98308,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(945)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1383), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(910), - [sym_identifier] = ACTIONS(1585), + [STATE(914)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(744), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(947), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(77), - [anon_sym_try] = ACTIONS(17), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1849), - }, - [STATE(946)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(7), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(947)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(720), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(814), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -100258,9 +98374,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -100274,115 +98390,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2043), }, - [STATE(948)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(457), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(969), - [sym_identifier] = ACTIONS(1585), + [STATE(915)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(755), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(961), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2045), - }, - [STATE(949)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(405), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(820), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -100416,9 +98454,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1917), + }, + [STATE(916)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1450), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(917)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(720), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(963), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2045), + }, + [STATE(918)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(734), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(965), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -100432,37 +98710,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2047), }, - [STATE(950)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(18), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1773), + [STATE(919)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(739), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(967), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -100495,9 +98774,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -100511,37 +98790,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2049), }, - [STATE(951)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(415), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(920)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(552), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(968), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -100574,87 +98854,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(952)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(13), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(983), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -100669,37 +98870,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2051), }, - [STATE(953)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1480), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(961), - [sym_identifier] = ACTIONS(1773), + [STATE(921)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(425), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(888), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -100732,9 +98934,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -100748,37 +98950,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2053), }, - [STATE(954)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(405), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(962), - [sym_identifier] = ACTIONS(1773), + [STATE(922)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(425), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(906), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1659), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -100811,9 +99014,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -100827,37 +99030,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2055), }, - [STATE(955)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1481), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(963), - [sym_identifier] = ACTIONS(1773), + [STATE(923)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(415), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -100890,8 +99094,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(924)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(19), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(987), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -100906,37 +99190,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2057), }, - [STATE(956)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(964), - [sym_identifier] = ACTIONS(1773), + [STATE(925)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(429), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1757), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -100969,8 +99254,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1761), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -100983,39 +99268,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1919), + [sym__newline] = ACTIONS(227), }, - [STATE(957)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(405), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(815), - [sym_identifier] = ACTIONS(1585), + [STATE(926)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1388), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(813), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_DASH] = ACTIONS(167), [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -101050,7 +99336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_longdouble] = ACTIONS(37), [anon_sym_AMP] = ACTIONS(167), [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -101062,39 +99348,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2059), + [sym__newline] = ACTIONS(1875), }, - [STATE(958)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1483), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(965), - [sym_identifier] = ACTIONS(1773), + [STATE(927)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1490), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(935), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1757), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -101127,8 +99414,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2059), + }, + [STATE(928)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(401), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(936), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1761), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -101143,37 +99510,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2061), }, - [STATE(959)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1484), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(966), - [sym_identifier] = ACTIONS(1773), + [STATE(929)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1491), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(937), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1757), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -101206,8 +99574,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1761), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -101222,37 +99590,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2063), }, - [STATE(960)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(967), - [sym_identifier] = ACTIONS(1773), + [STATE(930)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1492), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(938), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1757), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -101285,8 +99654,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1761), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -101299,39 +99668,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1919), + }, + [STATE(931)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1478), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(872), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2065), }, - [STATE(961)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(932)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1481), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(939), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1757), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -101364,561 +99814,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(962)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(401), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(963)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(964)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1488), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(965)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(966)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1490), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(967)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1491), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(968)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(457), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(951), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1761), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -101933,37 +99830,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2067), }, - [STATE(969)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(415), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [STATE(933)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1482), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(940), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1757), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -101996,88 +99894,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(970)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(457), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(938), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -102091,37 +99910,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2069), }, - [STATE(971)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(721), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(817), - [sym_identifier] = ACTIONS(1585), + [STATE(934)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1483), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(941), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(1757), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -102154,9 +99974,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -102170,37 +99990,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2071), }, - [STATE(972)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(19), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(1773), + [STATE(935)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1485), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1757), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -102233,8 +100054,568 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(936)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(415), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(937)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1486), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(938)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1487), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(939)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1488), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(940)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1484), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(941)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1489), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(942)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(425), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(925), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1761), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -102249,36 +100630,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2073), }, - [STATE(973)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(722), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(819), - [sym_identifier] = ACTIONS(1585), + [STATE(943)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(741), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -102312,9 +100694,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -102326,39 +100708,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1847), + [sym__newline] = ACTIONS(227), }, - [STATE(974)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1445), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(863), - [sym_identifier] = ACTIONS(1585), + [STATE(944)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(425), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(905), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -102391,9 +100774,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -102407,36 +100790,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2075), }, - [STATE(975)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), + [STATE(945)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), [sym_expression] = STATE(415), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -102470,9 +100854,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(115), - [anon_sym_try] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -102484,39 +100868,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(976)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(725), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(821), - [sym_identifier] = ACTIONS(1585), + [STATE(946)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(3), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(913), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -102549,9 +100934,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -102565,194 +100950,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2077), }, - [STATE(977)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1386), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), + [STATE(947)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(723), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(978)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(415), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(979)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(695), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(823), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -102786,9 +101014,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(948)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(12), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(860), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -102802,37 +101110,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2079), }, - [STATE(980)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1399), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(1773), + [STATE(949)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(573), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(141), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -102866,7 +101175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_try] = ACTIONS(123), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -102879,39 +101188,1240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(950)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(415), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(951)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1373), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(952)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(574), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(953)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(415), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(954)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(575), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(955)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1374), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(956)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(576), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(957)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1375), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(958)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(959)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1376), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(960)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(559), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_try] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(961)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(725), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(962)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1377), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(963)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(735), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(964)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(425), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(858), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2081), }, - [STATE(981)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1437), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1585), + [STATE(965)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(759), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(193), [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(231), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -102944,9 +102454,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(193), [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -102958,39 +102468,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(227), }, - [STATE(982)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), + [STATE(966)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), [sym_expression] = STATE(1437), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(1585), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(113), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -103023,9 +102534,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(967)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(738), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(193), [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(968)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(553), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(969)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1378), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(970)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1470), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(863), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -103039,116 +102870,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2083), }, - [STATE(983)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(14), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(680), - [sym_identifier] = ACTIONS(1773), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), - }, - [STATE(984)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(825), - [sym_identifier] = ACTIONS(1585), + [STATE(971)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1393), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(900), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(167), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_DASH] = ACTIONS(167), [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -103183,7 +102936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_longdouble] = ACTIONS(37), [anon_sym_AMP] = ACTIONS(167), [anon_sym_try] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -103197,36 +102950,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2085), }, - [STATE(985)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1401), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(977), - [sym_identifier] = ACTIONS(1773), + [STATE(972)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1387), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(77), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(27), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -103260,8 +103014,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(77), + [anon_sym_try] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(973)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1394), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(901), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -103276,36 +103110,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2087), }, - [STATE(986)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(405), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(832), - [sym_identifier] = ACTIONS(1773), + [STATE(974)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(4), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(975)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(429), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -103339,8 +103254,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -103353,38 +103268,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(976)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1437), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(895), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(113), + [anon_sym_try] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2089), }, - [STATE(987)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1387), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(877), - [sym_identifier] = ACTIONS(1773), + [STATE(977)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(554), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(978)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(167), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(155), [anon_sym_LBRACK] = ACTIONS(223), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), @@ -103418,8 +103494,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_try] = ACTIONS(151), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -103432,39 +103508,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2091), + [sym__newline] = ACTIONS(227), }, - [STATE(988)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1396), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(893), - [sym_identifier] = ACTIONS(1773), + [STATE(979)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1471), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1591), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(1659), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -103497,9 +103574,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_try] = ACTIONS(125), - [anon_sym_DOT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -103511,39 +103588,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_string] = ACTIONS(87), [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1879), + [sym__newline] = ACTIONS(227), }, - [STATE(989)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(555), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(826), - [sym_identifier] = ACTIONS(1773), + [STATE(980)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(429), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -103576,8 +103654,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(981)] = { + [sym_type] = STATE(2064), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(842), + [anon_sym_COLON_COLON] = ACTIONS(2091), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(857), + [anon_sym_DASH_EQ] = ACTIONS(857), + [anon_sym_STAR_EQ] = ACTIONS(857), + [anon_sym_SLASH_EQ] = ACTIONS(857), + [anon_sym_COLON] = ACTIONS(871), + [anon_sym_else] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(857), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(857), + }, + [STATE(982)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(9), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(983), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), @@ -103592,37 +103830,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2093), }, - [STATE(990)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1380), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [aux_sym_import_declaration_repeat1] = STATE(923), - [sym_identifier] = ACTIONS(1585), + [STATE(983)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(10), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(195), + [anon_sym_BANG] = ACTIONS(1811), [anon_sym_struct] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -103655,9 +103894,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_try] = ACTIONS(177), - [anon_sym_DOT] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(984)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(556), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(985), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), [anon_sym_true] = ACTIONS(81), [anon_sym_false] = ACTIONS(81), [sym_none] = ACTIONS(83), @@ -103671,29 +103990,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2095), }, - [STATE(991)] = { - [sym_type] = STATE(2049), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(855), - [sym_identifier] = ACTIONS(842), - [anon_sym_COLON_COLON] = ACTIONS(1925), - [anon_sym_import] = ACTIONS(850), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(863), + [STATE(985)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(557), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -103726,51 +104054,524 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [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_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), + [sym__newline] = ACTIONS(227), + }, + [STATE(986)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(16), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(988), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2097), + }, + [STATE(987)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(11), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(988)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(17), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(682), + [sym_identifier] = ACTIONS(1755), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + }, + [STATE(989)] = { + [sym_type] = STATE(2081), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(1631), + [anon_sym_COLON_COLON] = ACTIONS(2099), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_RPAREN] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(857), + [anon_sym_DASH_EQ] = ACTIONS(857), + [anon_sym_STAR_EQ] = ACTIONS(857), + [anon_sym_SLASH_EQ] = ACTIONS(857), + [anon_sym_COLON] = ACTIONS(871), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(857), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(857), + }, + [STATE(990)] = { + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(401), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [aux_sym_import_declaration_repeat1] = STATE(945), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_AMP] = ACTIONS(193), + [anon_sym_try] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2101), + }, + [STATE(991)] = { + [sym_type] = STATE(2060), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(842), + [anon_sym_COLON_COLON] = ACTIONS(2103), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(857), + [anon_sym_DASH_EQ] = ACTIONS(857), + [anon_sym_STAR_EQ] = ACTIONS(857), + [anon_sym_SLASH_EQ] = ACTIONS(857), + [anon_sym_COLON] = ACTIONS(871), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(857), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(857), }, [STATE(992)] = { - [sym_type] = STATE(2061), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), + [sym_type] = STATE(2075), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(857), [sym_identifier] = ACTIONS(842), - [anon_sym_COLON_COLON] = ACTIONS(1979), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(855), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(863), + [anon_sym_COLON_COLON] = ACTIONS(1795), + [anon_sym_import] = ACTIONS(852), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(865), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -103803,52 +104604,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [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_else] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(855), + [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_else] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(852), + [anon_sym_CARET] = ACTIONS(857), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), + [sym__newline] = ACTIONS(857), }, [STATE(993)] = { - [sym_type] = STATE(2062), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(1605), - [anon_sym_COLON_COLON] = ACTIONS(1853), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(855), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(863), + [sym_type] = STATE(2073), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(1631), + [anon_sym_COLON_COLON] = ACTIONS(1885), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_RPAREN] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(865), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -103881,52 +104682,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [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_else] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(855), + [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_else] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(852), + [anon_sym_CARET] = ACTIONS(857), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), + [sym__newline] = ACTIONS(857), }, [STATE(994)] = { - [sym_type] = STATE(2053), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(842), - [anon_sym_COLON_COLON] = ACTIONS(2097), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(852), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(863), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1493), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -103959,52 +104769,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [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_COLON] = ACTIONS(869), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(871), - [anon_sym_CARET] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), }, [STATE(995)] = { - [sym_type] = STATE(2080), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(1605), - [anon_sym_COLON_COLON] = ACTIONS(2033), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(855), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(863), + [sym_struct_type] = STATE(525), + [sym_array_type] = STATE(525), + [sym_builtin_type] = STATE(525), + [sym_expression] = STATE(1494), + [sym_binary_expression] = STATE(525), + [sym_catch_expression] = STATE(525), + [sym_unary_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_intrinsic_call_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_index_expression] = STATE(525), + [sym_slice_expression] = STATE(525), + [sym_postfix_expression] = STATE(525), + [sym_struct_literal] = STATE(525), + [sym_enum_literal] = STATE(525), + [sym_array_literal] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_comptime_block] = STATE(525), + [sym_function_literal] = STATE(525), + [sym_qualified_identifier] = STATE(1850), + [sym_boolean] = STATE(525), + [sym_string] = STATE(525), + [sym_identifier] = ACTIONS(1591), + [anon_sym_func] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -104037,59 +104847,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [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_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(247), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(83), + [sym_undefined] = ACTIONS(83), + [sym_sink] = ACTIONS(83), + [sym_integer] = ACTIONS(83), + [sym_float] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(89), + [sym_multiline_string] = ACTIONS(87), + [sym_character] = ACTIONS(87), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), }, [STATE(996)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1492), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [sym_type] = STATE(2064), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(842), + [anon_sym_COLON_COLON] = ACTIONS(2091), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(865), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -104122,51 +104916,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [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_else] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(852), + [anon_sym_CARET] = ACTIONS(857), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(857), }, [STATE(997)] = { - [sym_struct_type] = STATE(467), - [sym_array_type] = STATE(467), - [sym_builtin_type] = STATE(467), - [sym_expression] = STATE(1493), - [sym_binary_expression] = STATE(467), - [sym_catch_expression] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_field_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_slice_expression] = STATE(467), - [sym_postfix_expression] = STATE(467), - [sym_struct_literal] = STATE(467), - [sym_enum_literal] = STATE(467), - [sym_array_literal] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_comptime_block] = STATE(467), - [sym_function_literal] = STATE(467), - [sym_qualified_identifier] = STATE(1781), - [sym_boolean] = STATE(467), - [sym_string] = STATE(467), - [sym_identifier] = ACTIONS(1585), - [anon_sym_func] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1643), + [sym_type] = STATE(2051), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(857), + [sym_identifier] = ACTIONS(842), + [anon_sym_COLON_COLON] = ACTIONS(1921), + [anon_sym_import] = ACTIONS(852), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(865), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -104199,197 +104995,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(249), - [anon_sym_true] = ACTIONS(81), - [anon_sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [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_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(852), + [anon_sym_CARET] = ACTIONS(857), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(857), }, [STATE(998)] = { - [sym_argument_list] = STATE(495), - [sym_identifier] = ACTIONS(1577), - [anon_sym_func] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1577), - [anon_sym_struct] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_DOLLAR] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_void] = ACTIONS(1577), - [anon_sym_anyopaque] = ACTIONS(1577), - [anon_sym_bool] = ACTIONS(1577), - [anon_sym_int] = ACTIONS(1577), - [anon_sym_float] = ACTIONS(1577), - [anon_sym_range] = ACTIONS(1577), - [anon_sym_i8] = ACTIONS(1577), - [anon_sym_i16] = ACTIONS(1577), - [anon_sym_i32] = ACTIONS(1577), - [anon_sym_i64] = ACTIONS(1577), - [anon_sym_u8] = ACTIONS(1577), - [anon_sym_u16] = ACTIONS(1577), - [anon_sym_u32] = ACTIONS(1577), - [anon_sym_u64] = ACTIONS(1577), - [anon_sym_isize] = ACTIONS(1577), - [anon_sym_usize] = ACTIONS(1577), - [anon_sym_f32] = ACTIONS(1577), - [anon_sym_f64] = ACTIONS(1577), - [anon_sym_c_char] = ACTIONS(1577), - [anon_sym_c_schar] = ACTIONS(1577), - [anon_sym_c_uchar] = ACTIONS(1577), - [anon_sym_c_short] = ACTIONS(1577), - [anon_sym_c_ushort] = ACTIONS(1577), - [anon_sym_c_int] = ACTIONS(1577), - [anon_sym_c_uint] = ACTIONS(1577), - [anon_sym_c_long] = ACTIONS(1577), - [anon_sym_c_ulong] = ACTIONS(1577), - [anon_sym_c_longlong] = ACTIONS(1577), - [anon_sym_c_ulonglong] = ACTIONS(1577), - [anon_sym_c_float] = ACTIONS(1577), - [anon_sym_c_double] = ACTIONS(1577), - [anon_sym_c_longdouble] = ACTIONS(1577), - [anon_sym_else] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), - [anon_sym_orelse] = ACTIONS(1669), - [anon_sym_catch] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1673), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1633), - [anon_sym_BANG_EQ] = ACTIONS(1633), - [anon_sym_LT] = ACTIONS(1635), - [anon_sym_LT_EQ] = ACTIONS(1633), - [anon_sym_GT] = ACTIONS(1635), - [anon_sym_GT_EQ] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_SLASH] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_try] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_true] = ACTIONS(1577), - [anon_sym_false] = ACTIONS(1577), - [sym_none] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [sym_sink] = ACTIONS(1577), - [sym_integer] = ACTIONS(1577), - [sym_float] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_multiline_string] = ACTIONS(1579), - [sym_character] = ACTIONS(1579), + [sym_type] = STATE(2060), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(842), + [anon_sym_COLON_COLON] = ACTIONS(2103), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_PLUS_EQ] = ACTIONS(857), + [anon_sym_DASH_EQ] = ACTIONS(857), + [anon_sym_STAR_EQ] = ACTIONS(857), + [anon_sym_SLASH_EQ] = ACTIONS(857), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(852), + [anon_sym_CARET] = ACTIONS(857), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1579), + [sym__newline] = ACTIONS(857), }, [STATE(999)] = { - [sym_type] = STATE(2053), - [sym__type_atom] = STATE(395), - [sym_named_type] = STATE(395), - [sym_optional_type] = STATE(395), - [sym_pointer_type] = STATE(395), - [sym_array_type] = STATE(395), - [sym_function_type] = STATE(395), - [sym_builtin_type] = STATE(395), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(842), - [anon_sym_COLON_COLON] = ACTIONS(2097), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(855), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_PLUS_EQ] = ACTIONS(855), - [anon_sym_DASH_EQ] = ACTIONS(855), - [anon_sym_STAR_EQ] = ACTIONS(855), - [anon_sym_SLASH_EQ] = ACTIONS(855), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(850), - [anon_sym_or] = ACTIONS(850), - [anon_sym_and] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(855), + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(1574), + [anon_sym_func] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_struct] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_DOLLAR] = ACTIONS(1576), + [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_anyopaque] = ACTIONS(1574), + [anon_sym_bool] = ACTIONS(1574), + [anon_sym_int] = ACTIONS(1574), + [anon_sym_float] = ACTIONS(1574), + [anon_sym_range] = ACTIONS(1574), + [anon_sym_i8] = ACTIONS(1574), + [anon_sym_i16] = ACTIONS(1574), + [anon_sym_i32] = ACTIONS(1574), + [anon_sym_i64] = ACTIONS(1574), + [anon_sym_u8] = ACTIONS(1574), + [anon_sym_u16] = ACTIONS(1574), + [anon_sym_u32] = ACTIONS(1574), + [anon_sym_u64] = ACTIONS(1574), + [anon_sym_isize] = ACTIONS(1574), + [anon_sym_usize] = ACTIONS(1574), + [anon_sym_f32] = ACTIONS(1574), + [anon_sym_f64] = ACTIONS(1574), + [anon_sym_c_char] = ACTIONS(1574), + [anon_sym_c_schar] = ACTIONS(1574), + [anon_sym_c_uchar] = ACTIONS(1574), + [anon_sym_c_short] = ACTIONS(1574), + [anon_sym_c_ushort] = ACTIONS(1574), + [anon_sym_c_int] = ACTIONS(1574), + [anon_sym_c_uint] = ACTIONS(1574), + [anon_sym_c_long] = ACTIONS(1574), + [anon_sym_c_ulong] = ACTIONS(1574), + [anon_sym_c_longlong] = ACTIONS(1574), + [anon_sym_c_ulonglong] = ACTIONS(1574), + [anon_sym_c_float] = ACTIONS(1574), + [anon_sym_c_double] = ACTIONS(1574), + [anon_sym_c_longdouble] = ACTIONS(1574), + [anon_sym_else] = ACTIONS(1574), + [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), + [anon_sym_orelse] = ACTIONS(1785), + [anon_sym_catch] = ACTIONS(1787), + [anon_sym_or] = ACTIONS(1789), + [anon_sym_and] = ACTIONS(1771), + [anon_sym_EQ_EQ] = ACTIONS(1773), + [anon_sym_BANG_EQ] = ACTIONS(1773), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_LT_EQ] = ACTIONS(1773), + [anon_sym_GT] = ACTIONS(1775), + [anon_sym_GT_EQ] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(1576), + [anon_sym_try] = ACTIONS(1574), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_true] = ACTIONS(1574), + [anon_sym_false] = ACTIONS(1574), + [sym_none] = ACTIONS(1574), + [sym_undefined] = ACTIONS(1574), + [sym_sink] = ACTIONS(1574), + [sym_integer] = ACTIONS(1574), + [sym_float] = ACTIONS(1576), + [anon_sym_DQUOTE] = ACTIONS(1576), + [sym_multiline_string] = ACTIONS(1576), + [sym_character] = ACTIONS(1576), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), + [sym__newline] = ACTIONS(1576), }, [STATE(1000)] = { - [sym_type] = STATE(428), - [sym__type_atom] = STATE(398), - [sym_named_type] = STATE(398), - [sym_optional_type] = STATE(398), - [sym_pointer_type] = STATE(398), - [sym_array_type] = STATE(398), - [sym_function_type] = STATE(398), - [sym_builtin_type] = STATE(398), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(1605), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_QMARK] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(361), + [sym_type] = STATE(2081), + [sym__type_atom] = STATE(400), + [sym_named_type] = STATE(400), + [sym_optional_type] = STATE(400), + [sym_pointer_type] = STATE(400), + [sym_array_type] = STATE(400), + [sym_function_type] = STATE(400), + [sym_builtin_type] = STATE(400), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(1631), + [anon_sym_COLON_COLON] = ACTIONS(2099), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_RPAREN] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(865), [anon_sym_void] = ACTIONS(37), [anon_sym_anyopaque] = ACTIONS(37), [anon_sym_bool] = ACTIONS(37), @@ -104422,397 +105226,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(37), [anon_sym_c_double] = ACTIONS(37), [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_COLON] = ACTIONS(285), - [anon_sym_DOT_DOT] = ACTIONS(289), - [anon_sym_DOT_DOT_EQ] = ACTIONS(285), - [anon_sym_orelse] = ACTIONS(289), - [anon_sym_catch] = ACTIONS(289), - [anon_sym_or] = ACTIONS(289), - [anon_sym_and] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(289), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(289), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(285), + [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_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(852), + [anon_sym_catch] = ACTIONS(852), + [anon_sym_or] = ACTIONS(852), + [anon_sym_and] = ACTIONS(852), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(852), + [anon_sym_CARET] = ACTIONS(857), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(285), + [sym__newline] = ACTIONS(857), }, [STATE(1001)] = { - [sym_type] = STATE(441), - [sym__type_atom] = STATE(398), - [sym_named_type] = STATE(398), - [sym_optional_type] = STATE(398), - [sym_pointer_type] = STATE(398), - [sym_array_type] = STATE(398), - [sym_function_type] = STATE(398), - [sym_builtin_type] = STATE(398), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(1605), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_COMMA] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_PIPE] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(325), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_mut] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(333), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_COLON] = ACTIONS(267), - [anon_sym_DOT_DOT] = ACTIONS(271), - [anon_sym_DOT_DOT_EQ] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(267), - [anon_sym_BANG_EQ] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(267), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(267), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_CARET] = ACTIONS(267), + [ts_builtin_sym_end] = ACTIONS(2109), + [sym_identifier] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_func] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_struct] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_DOLLAR] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_anyopaque] = ACTIONS(2111), + [anon_sym_bool] = ACTIONS(2111), + [anon_sym_int] = ACTIONS(2111), + [anon_sym_float] = ACTIONS(2111), + [anon_sym_range] = ACTIONS(2111), + [anon_sym_i8] = ACTIONS(2111), + [anon_sym_i16] = ACTIONS(2111), + [anon_sym_i32] = ACTIONS(2111), + [anon_sym_i64] = ACTIONS(2111), + [anon_sym_u8] = ACTIONS(2111), + [anon_sym_u16] = ACTIONS(2111), + [anon_sym_u32] = ACTIONS(2111), + [anon_sym_u64] = ACTIONS(2111), + [anon_sym_isize] = ACTIONS(2111), + [anon_sym_usize] = ACTIONS(2111), + [anon_sym_f32] = ACTIONS(2111), + [anon_sym_f64] = ACTIONS(2111), + [anon_sym_c_char] = ACTIONS(2111), + [anon_sym_c_schar] = ACTIONS(2111), + [anon_sym_c_uchar] = ACTIONS(2111), + [anon_sym_c_short] = ACTIONS(2111), + [anon_sym_c_ushort] = ACTIONS(2111), + [anon_sym_c_int] = ACTIONS(2111), + [anon_sym_c_uint] = ACTIONS(2111), + [anon_sym_c_long] = ACTIONS(2111), + [anon_sym_c_ulong] = ACTIONS(2111), + [anon_sym_c_longlong] = ACTIONS(2111), + [anon_sym_c_ulonglong] = ACTIONS(2111), + [anon_sym_c_float] = ACTIONS(2111), + [anon_sym_c_double] = ACTIONS(2111), + [anon_sym_c_longdouble] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_COLON] = ACTIONS(2113), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_defer] = ACTIONS(2111), + [anon_sym_errdefer] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_match] = ACTIONS(2111), + [anon_sym_AMP] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_DOT] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2111), + [anon_sym_false] = ACTIONS(2111), + [sym_none] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [sym_sink] = ACTIONS(2111), + [sym_integer] = ACTIONS(2111), + [sym_float] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [sym_multiline_string] = ACTIONS(2109), + [sym_character] = ACTIONS(2109), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(267), + [sym__newline] = ACTIONS(2109), }, [STATE(1002)] = { - [sym_type] = STATE(426), - [sym__type_atom] = STATE(398), - [sym_named_type] = STATE(398), - [sym_optional_type] = STATE(398), - [sym_pointer_type] = STATE(398), - [sym_array_type] = STATE(398), - [sym_function_type] = STATE(398), - [sym_builtin_type] = STATE(398), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(1605), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_QMARK] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_COLON] = ACTIONS(285), - [anon_sym_DOT_DOT] = ACTIONS(289), - [anon_sym_DOT_DOT_EQ] = ACTIONS(285), - [anon_sym_orelse] = ACTIONS(289), - [anon_sym_catch] = ACTIONS(289), - [anon_sym_or] = ACTIONS(289), - [anon_sym_and] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(289), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(289), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_CARET] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(285), - }, - [STATE(1003)] = { - [sym_type] = STATE(430), - [sym__type_atom] = STATE(398), - [sym_named_type] = STATE(398), - [sym_optional_type] = STATE(398), - [sym_pointer_type] = STATE(398), - [sym_array_type] = STATE(398), - [sym_function_type] = STATE(398), - [sym_builtin_type] = STATE(398), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(1605), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(369), - [anon_sym_COMMA] = ACTIONS(369), - [anon_sym_DASH] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(369), - [anon_sym_QMARK] = ACTIONS(379), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_mut] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_COLON] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_orelse] = ACTIONS(374), - [anon_sym_catch] = ACTIONS(374), - [anon_sym_or] = ACTIONS(374), - [anon_sym_and] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(369), - [anon_sym_SLASH] = ACTIONS(369), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(369), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(369), - }, - [STATE(1004)] = { - [sym_type] = STATE(437), - [sym__type_atom] = STATE(398), - [sym_named_type] = STATE(398), - [sym_optional_type] = STATE(398), - [sym_pointer_type] = STATE(398), - [sym_array_type] = STATE(398), - [sym_function_type] = STATE(398), - [sym_builtin_type] = STATE(398), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(1605), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_COMMA] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_PIPE] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(325), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_mut] = ACTIONS(331), - [anon_sym_LBRACK] = ACTIONS(333), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_COLON] = ACTIONS(267), - [anon_sym_DOT_DOT] = ACTIONS(271), - [anon_sym_DOT_DOT_EQ] = ACTIONS(267), - [anon_sym_orelse] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(267), - [anon_sym_BANG_EQ] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(267), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(267), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_CARET] = ACTIONS(267), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(267), - }, - [STATE(1005)] = { - [sym_type] = STATE(453), - [sym__type_atom] = STATE(398), - [sym_named_type] = STATE(398), - [sym_optional_type] = STATE(398), - [sym_pointer_type] = STATE(398), - [sym_array_type] = STATE(398), - [sym_function_type] = STATE(398), - [sym_builtin_type] = STATE(398), - [sym_qualified_identifier] = STATE(399), - [sym_identifier] = ACTIONS(1605), - [anon_sym_func] = ACTIONS(273), - [anon_sym_c_func] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_COMMA] = ACTIONS(295), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_PIPE] = ACTIONS(295), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(2112), - [anon_sym_mut] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = ACTIONS(37), - [anon_sym_c_float] = ACTIONS(37), - [anon_sym_c_double] = ACTIONS(37), - [anon_sym_c_longdouble] = ACTIONS(37), - [anon_sym_COLON] = ACTIONS(295), - [anon_sym_DOT_DOT] = ACTIONS(300), - [anon_sym_DOT_DOT_EQ] = ACTIONS(295), - [anon_sym_orelse] = ACTIONS(300), - [anon_sym_catch] = ACTIONS(300), - [anon_sym_or] = ACTIONS(300), - [anon_sym_and] = ACTIONS(300), - [anon_sym_EQ_EQ] = ACTIONS(295), - [anon_sym_BANG_EQ] = ACTIONS(295), - [anon_sym_LT] = ACTIONS(300), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT] = ACTIONS(300), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(295), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(1006)] = { [ts_builtin_sym_end] = ACTIONS(2115), [sym_identifier] = ACTIONS(2117), [anon_sym_import] = ACTIONS(2117), @@ -104886,17769 +105397,18139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2115), }, - [STATE(1007)] = { - [ts_builtin_sym_end] = ACTIONS(2121), - [sym_identifier] = ACTIONS(2123), - [anon_sym_import] = ACTIONS(2123), - [anon_sym_func] = ACTIONS(2123), - [anon_sym_BANG] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(2123), - [anon_sym_LPAREN] = ACTIONS(2121), - [anon_sym_RPAREN] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2121), - [anon_sym_RBRACE] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_DOLLAR] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2121), - [anon_sym_void] = ACTIONS(2123), - [anon_sym_anyopaque] = ACTIONS(2123), - [anon_sym_bool] = ACTIONS(2123), - [anon_sym_int] = ACTIONS(2123), - [anon_sym_float] = ACTIONS(2123), - [anon_sym_range] = ACTIONS(2123), - [anon_sym_i8] = ACTIONS(2123), - [anon_sym_i16] = ACTIONS(2123), - [anon_sym_i32] = ACTIONS(2123), - [anon_sym_i64] = ACTIONS(2123), - [anon_sym_u8] = ACTIONS(2123), - [anon_sym_u16] = ACTIONS(2123), - [anon_sym_u32] = ACTIONS(2123), - [anon_sym_u64] = ACTIONS(2123), - [anon_sym_isize] = ACTIONS(2123), - [anon_sym_usize] = ACTIONS(2123), - [anon_sym_f32] = ACTIONS(2123), - [anon_sym_f64] = ACTIONS(2123), - [anon_sym_c_char] = ACTIONS(2123), - [anon_sym_c_schar] = ACTIONS(2123), - [anon_sym_c_uchar] = ACTIONS(2123), - [anon_sym_c_short] = ACTIONS(2123), - [anon_sym_c_ushort] = ACTIONS(2123), - [anon_sym_c_int] = ACTIONS(2123), - [anon_sym_c_uint] = ACTIONS(2123), - [anon_sym_c_long] = ACTIONS(2123), - [anon_sym_c_ulong] = ACTIONS(2123), - [anon_sym_c_longlong] = ACTIONS(2123), - [anon_sym_c_ulonglong] = ACTIONS(2123), - [anon_sym_c_float] = ACTIONS(2123), - [anon_sym_c_double] = ACTIONS(2123), - [anon_sym_c_longdouble] = ACTIONS(2123), - [anon_sym_return] = ACTIONS(2123), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_COLON] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2123), - [anon_sym_continue] = ACTIONS(2123), - [anon_sym_defer] = ACTIONS(2123), - [anon_sym_errdefer] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(2123), - [anon_sym_else] = ACTIONS(2123), - [anon_sym_while] = ACTIONS(2123), - [anon_sym_for] = ACTIONS(2123), - [anon_sym_match] = ACTIONS(2123), - [anon_sym_AMP] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2123), - [anon_sym_DOT] = ACTIONS(2121), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_none] = ACTIONS(2123), - [sym_undefined] = ACTIONS(2123), - [sym_sink] = ACTIONS(2123), - [sym_integer] = ACTIONS(2123), - [sym_float] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2121), - [sym_multiline_string] = ACTIONS(2121), - [sym_character] = ACTIONS(2121), + [STATE(1003)] = { + [sym_type] = STATE(431), + [sym__type_atom] = STATE(398), + [sym_named_type] = STATE(398), + [sym_optional_type] = STATE(398), + [sym_pointer_type] = STATE(398), + [sym_array_type] = STATE(398), + [sym_function_type] = STATE(398), + [sym_builtin_type] = STATE(398), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(1631), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_COMMA] = ACTIONS(345), + [anon_sym_DASH] = ACTIONS(345), + [anon_sym_PIPE] = ACTIONS(345), + [anon_sym_QMARK] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(2121), + [anon_sym_mut] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(345), + [anon_sym_DOT_DOT] = ACTIONS(349), + [anon_sym_DOT_DOT_EQ] = ACTIONS(345), + [anon_sym_orelse] = ACTIONS(349), + [anon_sym_catch] = ACTIONS(349), + [anon_sym_or] = ACTIONS(349), + [anon_sym_and] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(345), + [anon_sym_BANG_EQ] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(345), + [anon_sym_GT] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(345), + [anon_sym_SLASH] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_CARET] = ACTIONS(345), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2121), + [sym__newline] = ACTIONS(345), + }, + [STATE(1004)] = { + [sym_type] = STATE(408), + [sym__type_atom] = STATE(398), + [sym_named_type] = STATE(398), + [sym_optional_type] = STATE(398), + [sym_pointer_type] = STATE(398), + [sym_array_type] = STATE(398), + [sym_function_type] = STATE(398), + [sym_builtin_type] = STATE(398), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(1631), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(2124), + [anon_sym_mut] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(576), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_orelse] = ACTIONS(581), + [anon_sym_catch] = ACTIONS(581), + [anon_sym_or] = ACTIONS(581), + [anon_sym_and] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(576), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(576), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(576), + }, + [STATE(1005)] = { + [sym_type] = STATE(418), + [sym__type_atom] = STATE(398), + [sym_named_type] = STATE(398), + [sym_optional_type] = STATE(398), + [sym_pointer_type] = STATE(398), + [sym_array_type] = STATE(398), + [sym_function_type] = STATE(398), + [sym_builtin_type] = STATE(398), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(1631), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_COMMA] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_mut] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(610), + [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(610), + [anon_sym_BANG_EQ] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(610), + [anon_sym_SLASH] = ACTIONS(610), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(610), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(610), + }, + [STATE(1006)] = { + [sym_type] = STATE(420), + [sym__type_atom] = STATE(398), + [sym_named_type] = STATE(398), + [sym_optional_type] = STATE(398), + [sym_pointer_type] = STATE(398), + [sym_array_type] = STATE(398), + [sym_function_type] = STATE(398), + [sym_builtin_type] = STATE(398), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(1631), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_COMMA] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_mut] = ACTIONS(634), + [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(610), + [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(610), + [anon_sym_BANG_EQ] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(610), + [anon_sym_SLASH] = ACTIONS(610), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(610), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(610), + }, + [STATE(1007)] = { + [sym_type] = STATE(407), + [sym__type_atom] = STATE(398), + [sym_named_type] = STATE(398), + [sym_optional_type] = STATE(398), + [sym_pointer_type] = STATE(398), + [sym_array_type] = STATE(398), + [sym_function_type] = STATE(398), + [sym_builtin_type] = STATE(398), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(1631), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(2124), + [anon_sym_mut] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(576), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_orelse] = ACTIONS(581), + [anon_sym_catch] = ACTIONS(581), + [anon_sym_or] = ACTIONS(581), + [anon_sym_and] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(576), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(576), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(576), }, [STATE(1008)] = { - [ts_builtin_sym_end] = ACTIONS(2127), - [sym_identifier] = ACTIONS(2129), - [anon_sym_import] = ACTIONS(2129), - [anon_sym_func] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_struct] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_RPAREN] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2127), - [anon_sym_DOLLAR] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_void] = ACTIONS(2129), - [anon_sym_anyopaque] = ACTIONS(2129), - [anon_sym_bool] = ACTIONS(2129), - [anon_sym_int] = ACTIONS(2129), - [anon_sym_float] = ACTIONS(2129), - [anon_sym_range] = ACTIONS(2129), - [anon_sym_i8] = ACTIONS(2129), - [anon_sym_i16] = ACTIONS(2129), - [anon_sym_i32] = ACTIONS(2129), - [anon_sym_i64] = ACTIONS(2129), - [anon_sym_u8] = ACTIONS(2129), - [anon_sym_u16] = ACTIONS(2129), - [anon_sym_u32] = ACTIONS(2129), - [anon_sym_u64] = ACTIONS(2129), - [anon_sym_isize] = ACTIONS(2129), - [anon_sym_usize] = ACTIONS(2129), - [anon_sym_f32] = ACTIONS(2129), - [anon_sym_f64] = ACTIONS(2129), - [anon_sym_c_char] = ACTIONS(2129), - [anon_sym_c_schar] = ACTIONS(2129), - [anon_sym_c_uchar] = ACTIONS(2129), - [anon_sym_c_short] = ACTIONS(2129), - [anon_sym_c_ushort] = ACTIONS(2129), - [anon_sym_c_int] = ACTIONS(2129), - [anon_sym_c_uint] = ACTIONS(2129), - [anon_sym_c_long] = ACTIONS(2129), - [anon_sym_c_ulong] = ACTIONS(2129), - [anon_sym_c_longlong] = ACTIONS(2129), - [anon_sym_c_ulonglong] = ACTIONS(2129), - [anon_sym_c_float] = ACTIONS(2129), - [anon_sym_c_double] = ACTIONS(2129), - [anon_sym_c_longdouble] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_yield] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_defer] = ACTIONS(2129), - [anon_sym_errdefer] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_else] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_match] = ACTIONS(2129), - [anon_sym_AMP] = ACTIONS(2127), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_DOT] = ACTIONS(2127), - [anon_sym_true] = ACTIONS(2129), - [anon_sym_false] = ACTIONS(2129), - [sym_none] = ACTIONS(2129), - [sym_undefined] = ACTIONS(2129), - [sym_sink] = ACTIONS(2129), - [sym_integer] = ACTIONS(2129), - [sym_float] = ACTIONS(2127), - [anon_sym_DQUOTE] = ACTIONS(2127), - [sym_multiline_string] = ACTIONS(2127), - [sym_character] = ACTIONS(2127), + [sym_type] = STATE(456), + [sym__type_atom] = STATE(398), + [sym_named_type] = STATE(398), + [sym_optional_type] = STATE(398), + [sym_pointer_type] = STATE(398), + [sym_array_type] = STATE(398), + [sym_function_type] = STATE(398), + [sym_builtin_type] = STATE(398), + [sym_qualified_identifier] = STATE(396), + [sym_identifier] = ACTIONS(1631), + [anon_sym_func] = ACTIONS(319), + [anon_sym_c_func] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(309), + [anon_sym_DASH] = ACTIONS(309), + [anon_sym_PIPE] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_AT] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(2130), + [anon_sym_mut] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(331), + [anon_sym_void] = ACTIONS(37), + [anon_sym_anyopaque] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_float] = ACTIONS(37), + [anon_sym_range] = ACTIONS(37), + [anon_sym_i8] = ACTIONS(37), + [anon_sym_i16] = ACTIONS(37), + [anon_sym_i32] = ACTIONS(37), + [anon_sym_i64] = ACTIONS(37), + [anon_sym_u8] = ACTIONS(37), + [anon_sym_u16] = ACTIONS(37), + [anon_sym_u32] = ACTIONS(37), + [anon_sym_u64] = ACTIONS(37), + [anon_sym_isize] = ACTIONS(37), + [anon_sym_usize] = ACTIONS(37), + [anon_sym_f32] = ACTIONS(37), + [anon_sym_f64] = ACTIONS(37), + [anon_sym_c_char] = ACTIONS(37), + [anon_sym_c_schar] = ACTIONS(37), + [anon_sym_c_uchar] = ACTIONS(37), + [anon_sym_c_short] = ACTIONS(37), + [anon_sym_c_ushort] = ACTIONS(37), + [anon_sym_c_int] = ACTIONS(37), + [anon_sym_c_uint] = ACTIONS(37), + [anon_sym_c_long] = ACTIONS(37), + [anon_sym_c_ulong] = ACTIONS(37), + [anon_sym_c_longlong] = ACTIONS(37), + [anon_sym_c_ulonglong] = ACTIONS(37), + [anon_sym_c_float] = ACTIONS(37), + [anon_sym_c_double] = ACTIONS(37), + [anon_sym_c_longdouble] = ACTIONS(37), + [anon_sym_COLON] = ACTIONS(309), + [anon_sym_DOT_DOT] = ACTIONS(314), + [anon_sym_DOT_DOT_EQ] = ACTIONS(309), + [anon_sym_orelse] = ACTIONS(314), + [anon_sym_catch] = ACTIONS(314), + [anon_sym_or] = ACTIONS(314), + [anon_sym_and] = ACTIONS(314), + [anon_sym_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(314), + [anon_sym_LT_EQ] = ACTIONS(309), + [anon_sym_GT] = ACTIONS(314), + [anon_sym_GT_EQ] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(309), + [anon_sym_SLASH] = ACTIONS(309), + [anon_sym_DOT] = ACTIONS(314), + [anon_sym_CARET] = ACTIONS(309), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2127), + [sym__newline] = ACTIONS(309), }, [STATE(1009)] = { - [ts_builtin_sym_end] = ACTIONS(2131), - [sym_identifier] = ACTIONS(2133), - [anon_sym_import] = ACTIONS(2133), - [anon_sym_func] = ACTIONS(2133), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_struct] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_RPAREN] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_DASH] = ACTIONS(2131), - [anon_sym_DOLLAR] = ACTIONS(2131), - [anon_sym_LBRACK] = ACTIONS(2131), - [anon_sym_void] = ACTIONS(2133), - [anon_sym_anyopaque] = ACTIONS(2133), - [anon_sym_bool] = ACTIONS(2133), - [anon_sym_int] = ACTIONS(2133), - [anon_sym_float] = ACTIONS(2133), - [anon_sym_range] = ACTIONS(2133), - [anon_sym_i8] = ACTIONS(2133), - [anon_sym_i16] = ACTIONS(2133), - [anon_sym_i32] = ACTIONS(2133), - [anon_sym_i64] = ACTIONS(2133), - [anon_sym_u8] = ACTIONS(2133), - [anon_sym_u16] = ACTIONS(2133), - [anon_sym_u32] = ACTIONS(2133), - [anon_sym_u64] = ACTIONS(2133), - [anon_sym_isize] = ACTIONS(2133), - [anon_sym_usize] = ACTIONS(2133), - [anon_sym_f32] = ACTIONS(2133), - [anon_sym_f64] = ACTIONS(2133), - [anon_sym_c_char] = ACTIONS(2133), - [anon_sym_c_schar] = ACTIONS(2133), - [anon_sym_c_uchar] = ACTIONS(2133), - [anon_sym_c_short] = ACTIONS(2133), - [anon_sym_c_ushort] = ACTIONS(2133), - [anon_sym_c_int] = ACTIONS(2133), - [anon_sym_c_uint] = ACTIONS(2133), - [anon_sym_c_long] = ACTIONS(2133), - [anon_sym_c_ulong] = ACTIONS(2133), - [anon_sym_c_longlong] = ACTIONS(2133), - [anon_sym_c_ulonglong] = ACTIONS(2133), - [anon_sym_c_float] = ACTIONS(2133), - [anon_sym_c_double] = ACTIONS(2133), - [anon_sym_c_longdouble] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_yield] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_defer] = ACTIONS(2133), - [anon_sym_errdefer] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_else] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_match] = ACTIONS(2133), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_try] = ACTIONS(2133), - [anon_sym_DOT] = ACTIONS(2131), - [anon_sym_true] = ACTIONS(2133), - [anon_sym_false] = ACTIONS(2133), - [sym_none] = ACTIONS(2133), - [sym_undefined] = ACTIONS(2133), - [sym_sink] = ACTIONS(2133), - [sym_integer] = ACTIONS(2133), - [sym_float] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2131), - [sym_multiline_string] = ACTIONS(2131), - [sym_character] = ACTIONS(2131), + [ts_builtin_sym_end] = ACTIONS(2133), + [sym_identifier] = ACTIONS(2135), + [anon_sym_import] = ACTIONS(2135), + [anon_sym_func] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2133), + [anon_sym_struct] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_RPAREN] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_RBRACE] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_DOLLAR] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(2133), + [anon_sym_void] = ACTIONS(2135), + [anon_sym_anyopaque] = ACTIONS(2135), + [anon_sym_bool] = ACTIONS(2135), + [anon_sym_int] = ACTIONS(2135), + [anon_sym_float] = ACTIONS(2135), + [anon_sym_range] = ACTIONS(2135), + [anon_sym_i8] = ACTIONS(2135), + [anon_sym_i16] = ACTIONS(2135), + [anon_sym_i32] = ACTIONS(2135), + [anon_sym_i64] = ACTIONS(2135), + [anon_sym_u8] = ACTIONS(2135), + [anon_sym_u16] = ACTIONS(2135), + [anon_sym_u32] = ACTIONS(2135), + [anon_sym_u64] = ACTIONS(2135), + [anon_sym_isize] = ACTIONS(2135), + [anon_sym_usize] = ACTIONS(2135), + [anon_sym_f32] = ACTIONS(2135), + [anon_sym_f64] = ACTIONS(2135), + [anon_sym_c_char] = ACTIONS(2135), + [anon_sym_c_schar] = ACTIONS(2135), + [anon_sym_c_uchar] = ACTIONS(2135), + [anon_sym_c_short] = ACTIONS(2135), + [anon_sym_c_ushort] = ACTIONS(2135), + [anon_sym_c_int] = ACTIONS(2135), + [anon_sym_c_uint] = ACTIONS(2135), + [anon_sym_c_long] = ACTIONS(2135), + [anon_sym_c_ulong] = ACTIONS(2135), + [anon_sym_c_longlong] = ACTIONS(2135), + [anon_sym_c_ulonglong] = ACTIONS(2135), + [anon_sym_c_float] = ACTIONS(2135), + [anon_sym_c_double] = ACTIONS(2135), + [anon_sym_c_longdouble] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(2135), + [anon_sym_yield] = ACTIONS(2135), + [anon_sym_break] = ACTIONS(2135), + [anon_sym_continue] = ACTIONS(2135), + [anon_sym_defer] = ACTIONS(2135), + [anon_sym_errdefer] = ACTIONS(2135), + [anon_sym_if] = ACTIONS(2135), + [anon_sym_else] = ACTIONS(2135), + [anon_sym_while] = ACTIONS(2135), + [anon_sym_for] = ACTIONS(2135), + [anon_sym_match] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_try] = ACTIONS(2135), + [anon_sym_DOT] = ACTIONS(2133), + [anon_sym_true] = ACTIONS(2135), + [anon_sym_false] = ACTIONS(2135), + [sym_none] = ACTIONS(2135), + [sym_undefined] = ACTIONS(2135), + [sym_sink] = ACTIONS(2135), + [sym_integer] = ACTIONS(2135), + [sym_float] = ACTIONS(2133), + [anon_sym_DQUOTE] = ACTIONS(2133), + [sym_multiline_string] = ACTIONS(2133), + [sym_character] = ACTIONS(2133), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2131), + [sym__newline] = ACTIONS(2133), }, [STATE(1010)] = { - [ts_builtin_sym_end] = ACTIONS(2135), - [sym_identifier] = ACTIONS(2137), - [anon_sym_import] = ACTIONS(2137), - [anon_sym_func] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_RPAREN] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_DOLLAR] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_void] = ACTIONS(2137), - [anon_sym_anyopaque] = ACTIONS(2137), - [anon_sym_bool] = ACTIONS(2137), - [anon_sym_int] = ACTIONS(2137), - [anon_sym_float] = ACTIONS(2137), - [anon_sym_range] = ACTIONS(2137), - [anon_sym_i8] = ACTIONS(2137), - [anon_sym_i16] = ACTIONS(2137), - [anon_sym_i32] = ACTIONS(2137), - [anon_sym_i64] = ACTIONS(2137), - [anon_sym_u8] = ACTIONS(2137), - [anon_sym_u16] = ACTIONS(2137), - [anon_sym_u32] = ACTIONS(2137), - [anon_sym_u64] = ACTIONS(2137), - [anon_sym_isize] = ACTIONS(2137), - [anon_sym_usize] = ACTIONS(2137), - [anon_sym_f32] = ACTIONS(2137), - [anon_sym_f64] = ACTIONS(2137), - [anon_sym_c_char] = ACTIONS(2137), - [anon_sym_c_schar] = ACTIONS(2137), - [anon_sym_c_uchar] = ACTIONS(2137), - [anon_sym_c_short] = ACTIONS(2137), - [anon_sym_c_ushort] = ACTIONS(2137), - [anon_sym_c_int] = ACTIONS(2137), - [anon_sym_c_uint] = ACTIONS(2137), - [anon_sym_c_long] = ACTIONS(2137), - [anon_sym_c_ulong] = ACTIONS(2137), - [anon_sym_c_longlong] = ACTIONS(2137), - [anon_sym_c_ulonglong] = ACTIONS(2137), - [anon_sym_c_float] = ACTIONS(2137), - [anon_sym_c_double] = ACTIONS(2137), - [anon_sym_c_longdouble] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_yield] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_defer] = ACTIONS(2137), - [anon_sym_errdefer] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_else] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2135), - [anon_sym_try] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2135), - [anon_sym_true] = ACTIONS(2137), - [anon_sym_false] = ACTIONS(2137), - [sym_none] = ACTIONS(2137), - [sym_undefined] = ACTIONS(2137), - [sym_sink] = ACTIONS(2137), - [sym_integer] = ACTIONS(2137), - [sym_float] = ACTIONS(2135), - [anon_sym_DQUOTE] = ACTIONS(2135), - [sym_multiline_string] = ACTIONS(2135), - [sym_character] = ACTIONS(2135), + [ts_builtin_sym_end] = ACTIONS(2137), + [sym_identifier] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_func] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_RPAREN] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_DOLLAR] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2137), + [anon_sym_void] = ACTIONS(2139), + [anon_sym_anyopaque] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_int] = ACTIONS(2139), + [anon_sym_float] = ACTIONS(2139), + [anon_sym_range] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_c_char] = ACTIONS(2139), + [anon_sym_c_schar] = ACTIONS(2139), + [anon_sym_c_uchar] = ACTIONS(2139), + [anon_sym_c_short] = ACTIONS(2139), + [anon_sym_c_ushort] = ACTIONS(2139), + [anon_sym_c_int] = ACTIONS(2139), + [anon_sym_c_uint] = ACTIONS(2139), + [anon_sym_c_long] = ACTIONS(2139), + [anon_sym_c_ulong] = ACTIONS(2139), + [anon_sym_c_longlong] = ACTIONS(2139), + [anon_sym_c_ulonglong] = ACTIONS(2139), + [anon_sym_c_float] = ACTIONS(2139), + [anon_sym_c_double] = ACTIONS(2139), + [anon_sym_c_longdouble] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_defer] = ACTIONS(2139), + [anon_sym_errdefer] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_else] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(2139), + [anon_sym_false] = ACTIONS(2139), + [sym_none] = ACTIONS(2139), + [sym_undefined] = ACTIONS(2139), + [sym_sink] = ACTIONS(2139), + [sym_integer] = ACTIONS(2139), + [sym_float] = ACTIONS(2137), + [anon_sym_DQUOTE] = ACTIONS(2137), + [sym_multiline_string] = ACTIONS(2137), + [sym_character] = ACTIONS(2137), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2135), + [sym__newline] = ACTIONS(2137), }, [STATE(1011)] = { - [ts_builtin_sym_end] = ACTIONS(2139), - [sym_identifier] = ACTIONS(2141), - [anon_sym_import] = ACTIONS(2141), - [anon_sym_func] = ACTIONS(2141), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_RPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_DOLLAR] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_void] = ACTIONS(2141), - [anon_sym_anyopaque] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_int] = ACTIONS(2141), - [anon_sym_float] = ACTIONS(2141), - [anon_sym_range] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_c_char] = ACTIONS(2141), - [anon_sym_c_schar] = ACTIONS(2141), - [anon_sym_c_uchar] = ACTIONS(2141), - [anon_sym_c_short] = ACTIONS(2141), - [anon_sym_c_ushort] = ACTIONS(2141), - [anon_sym_c_int] = ACTIONS(2141), - [anon_sym_c_uint] = ACTIONS(2141), - [anon_sym_c_long] = ACTIONS(2141), - [anon_sym_c_ulong] = ACTIONS(2141), - [anon_sym_c_longlong] = ACTIONS(2141), - [anon_sym_c_ulonglong] = ACTIONS(2141), - [anon_sym_c_float] = ACTIONS(2141), - [anon_sym_c_double] = ACTIONS(2141), - [anon_sym_c_longdouble] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_yield] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_defer] = ACTIONS(2141), - [anon_sym_errdefer] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_else] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(2141), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [sym_none] = ACTIONS(2141), - [sym_undefined] = ACTIONS(2141), - [sym_sink] = ACTIONS(2141), - [sym_integer] = ACTIONS(2141), - [sym_float] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [sym_multiline_string] = ACTIONS(2139), - [sym_character] = ACTIONS(2139), + [ts_builtin_sym_end] = ACTIONS(2141), + [sym_identifier] = ACTIONS(2143), + [anon_sym_import] = ACTIONS(2143), + [anon_sym_func] = ACTIONS(2143), + [anon_sym_BANG] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2143), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_RPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2141), + [anon_sym_RBRACE] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_DOLLAR] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2141), + [anon_sym_void] = ACTIONS(2143), + [anon_sym_anyopaque] = ACTIONS(2143), + [anon_sym_bool] = ACTIONS(2143), + [anon_sym_int] = ACTIONS(2143), + [anon_sym_float] = ACTIONS(2143), + [anon_sym_range] = ACTIONS(2143), + [anon_sym_i8] = ACTIONS(2143), + [anon_sym_i16] = ACTIONS(2143), + [anon_sym_i32] = ACTIONS(2143), + [anon_sym_i64] = ACTIONS(2143), + [anon_sym_u8] = ACTIONS(2143), + [anon_sym_u16] = ACTIONS(2143), + [anon_sym_u32] = ACTIONS(2143), + [anon_sym_u64] = ACTIONS(2143), + [anon_sym_isize] = ACTIONS(2143), + [anon_sym_usize] = ACTIONS(2143), + [anon_sym_f32] = ACTIONS(2143), + [anon_sym_f64] = ACTIONS(2143), + [anon_sym_c_char] = ACTIONS(2143), + [anon_sym_c_schar] = ACTIONS(2143), + [anon_sym_c_uchar] = ACTIONS(2143), + [anon_sym_c_short] = ACTIONS(2143), + [anon_sym_c_ushort] = ACTIONS(2143), + [anon_sym_c_int] = ACTIONS(2143), + [anon_sym_c_uint] = ACTIONS(2143), + [anon_sym_c_long] = ACTIONS(2143), + [anon_sym_c_ulong] = ACTIONS(2143), + [anon_sym_c_longlong] = ACTIONS(2143), + [anon_sym_c_ulonglong] = ACTIONS(2143), + [anon_sym_c_float] = ACTIONS(2143), + [anon_sym_c_double] = ACTIONS(2143), + [anon_sym_c_longdouble] = ACTIONS(2143), + [anon_sym_return] = ACTIONS(2143), + [anon_sym_yield] = ACTIONS(2143), + [anon_sym_break] = ACTIONS(2143), + [anon_sym_continue] = ACTIONS(2143), + [anon_sym_defer] = ACTIONS(2143), + [anon_sym_errdefer] = ACTIONS(2143), + [anon_sym_if] = ACTIONS(2143), + [anon_sym_else] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2143), + [anon_sym_for] = ACTIONS(2143), + [anon_sym_match] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_try] = ACTIONS(2143), + [anon_sym_DOT] = ACTIONS(2141), + [anon_sym_true] = ACTIONS(2143), + [anon_sym_false] = ACTIONS(2143), + [sym_none] = ACTIONS(2143), + [sym_undefined] = ACTIONS(2143), + [sym_sink] = ACTIONS(2143), + [sym_integer] = ACTIONS(2143), + [sym_float] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2141), + [sym_multiline_string] = ACTIONS(2141), + [sym_character] = ACTIONS(2141), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2139), + [sym__newline] = ACTIONS(2141), }, [STATE(1012)] = { - [ts_builtin_sym_end] = ACTIONS(2143), - [sym_identifier] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_func] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2143), - [anon_sym_struct] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_RBRACE] = ACTIONS(2143), - [anon_sym_DASH] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2143), - [anon_sym_LBRACK] = ACTIONS(2143), - [anon_sym_void] = ACTIONS(2145), - [anon_sym_anyopaque] = ACTIONS(2145), - [anon_sym_bool] = ACTIONS(2145), - [anon_sym_int] = ACTIONS(2145), - [anon_sym_float] = ACTIONS(2145), - [anon_sym_range] = ACTIONS(2145), - [anon_sym_i8] = ACTIONS(2145), - [anon_sym_i16] = ACTIONS(2145), - [anon_sym_i32] = ACTIONS(2145), - [anon_sym_i64] = ACTIONS(2145), - [anon_sym_u8] = ACTIONS(2145), - [anon_sym_u16] = ACTIONS(2145), - [anon_sym_u32] = ACTIONS(2145), - [anon_sym_u64] = ACTIONS(2145), - [anon_sym_isize] = ACTIONS(2145), - [anon_sym_usize] = ACTIONS(2145), - [anon_sym_f32] = ACTIONS(2145), - [anon_sym_f64] = ACTIONS(2145), - [anon_sym_c_char] = ACTIONS(2145), - [anon_sym_c_schar] = ACTIONS(2145), - [anon_sym_c_uchar] = ACTIONS(2145), - [anon_sym_c_short] = ACTIONS(2145), - [anon_sym_c_ushort] = ACTIONS(2145), - [anon_sym_c_int] = ACTIONS(2145), - [anon_sym_c_uint] = ACTIONS(2145), - [anon_sym_c_long] = ACTIONS(2145), - [anon_sym_c_ulong] = ACTIONS(2145), - [anon_sym_c_longlong] = ACTIONS(2145), - [anon_sym_c_ulonglong] = ACTIONS(2145), - [anon_sym_c_float] = ACTIONS(2145), - [anon_sym_c_double] = ACTIONS(2145), - [anon_sym_c_longdouble] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_defer] = ACTIONS(2145), - [anon_sym_errdefer] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_else] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_match] = ACTIONS(2145), - [anon_sym_AMP] = ACTIONS(2143), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_DOT] = ACTIONS(2143), - [anon_sym_true] = ACTIONS(2145), - [anon_sym_false] = ACTIONS(2145), - [sym_none] = ACTIONS(2145), - [sym_undefined] = ACTIONS(2145), - [sym_sink] = ACTIONS(2145), - [sym_integer] = ACTIONS(2145), - [sym_float] = ACTIONS(2143), - [anon_sym_DQUOTE] = ACTIONS(2143), - [sym_multiline_string] = ACTIONS(2143), - [sym_character] = ACTIONS(2143), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_func] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_RPAREN] = ACTIONS(2145), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_DOLLAR] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_void] = ACTIONS(2147), + [anon_sym_anyopaque] = ACTIONS(2147), + [anon_sym_bool] = ACTIONS(2147), + [anon_sym_int] = ACTIONS(2147), + [anon_sym_float] = ACTIONS(2147), + [anon_sym_range] = ACTIONS(2147), + [anon_sym_i8] = ACTIONS(2147), + [anon_sym_i16] = ACTIONS(2147), + [anon_sym_i32] = ACTIONS(2147), + [anon_sym_i64] = ACTIONS(2147), + [anon_sym_u8] = ACTIONS(2147), + [anon_sym_u16] = ACTIONS(2147), + [anon_sym_u32] = ACTIONS(2147), + [anon_sym_u64] = ACTIONS(2147), + [anon_sym_isize] = ACTIONS(2147), + [anon_sym_usize] = ACTIONS(2147), + [anon_sym_f32] = ACTIONS(2147), + [anon_sym_f64] = ACTIONS(2147), + [anon_sym_c_char] = ACTIONS(2147), + [anon_sym_c_schar] = ACTIONS(2147), + [anon_sym_c_uchar] = ACTIONS(2147), + [anon_sym_c_short] = ACTIONS(2147), + [anon_sym_c_ushort] = ACTIONS(2147), + [anon_sym_c_int] = ACTIONS(2147), + [anon_sym_c_uint] = ACTIONS(2147), + [anon_sym_c_long] = ACTIONS(2147), + [anon_sym_c_ulong] = ACTIONS(2147), + [anon_sym_c_longlong] = ACTIONS(2147), + [anon_sym_c_ulonglong] = ACTIONS(2147), + [anon_sym_c_float] = ACTIONS(2147), + [anon_sym_c_double] = ACTIONS(2147), + [anon_sym_c_longdouble] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_defer] = ACTIONS(2147), + [anon_sym_errdefer] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_else] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2145), + [anon_sym_true] = ACTIONS(2147), + [anon_sym_false] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_undefined] = ACTIONS(2147), + [sym_sink] = ACTIONS(2147), + [sym_integer] = ACTIONS(2147), + [sym_float] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2145), + [sym_multiline_string] = ACTIONS(2145), + [sym_character] = ACTIONS(2145), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2143), + [sym__newline] = ACTIONS(2145), }, [STATE(1013)] = { - [ts_builtin_sym_end] = ACTIONS(2147), - [sym_identifier] = ACTIONS(2149), - [anon_sym_import] = ACTIONS(2149), - [anon_sym_func] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_RPAREN] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_void] = ACTIONS(2149), - [anon_sym_anyopaque] = ACTIONS(2149), - [anon_sym_bool] = ACTIONS(2149), - [anon_sym_int] = ACTIONS(2149), - [anon_sym_float] = ACTIONS(2149), - [anon_sym_range] = ACTIONS(2149), - [anon_sym_i8] = ACTIONS(2149), - [anon_sym_i16] = ACTIONS(2149), - [anon_sym_i32] = ACTIONS(2149), - [anon_sym_i64] = ACTIONS(2149), - [anon_sym_u8] = ACTIONS(2149), - [anon_sym_u16] = ACTIONS(2149), - [anon_sym_u32] = ACTIONS(2149), - [anon_sym_u64] = ACTIONS(2149), - [anon_sym_isize] = ACTIONS(2149), - [anon_sym_usize] = ACTIONS(2149), - [anon_sym_f32] = ACTIONS(2149), - [anon_sym_f64] = ACTIONS(2149), - [anon_sym_c_char] = ACTIONS(2149), - [anon_sym_c_schar] = ACTIONS(2149), - [anon_sym_c_uchar] = ACTIONS(2149), - [anon_sym_c_short] = ACTIONS(2149), - [anon_sym_c_ushort] = ACTIONS(2149), - [anon_sym_c_int] = ACTIONS(2149), - [anon_sym_c_uint] = ACTIONS(2149), - [anon_sym_c_long] = ACTIONS(2149), - [anon_sym_c_ulong] = ACTIONS(2149), - [anon_sym_c_longlong] = ACTIONS(2149), - [anon_sym_c_ulonglong] = ACTIONS(2149), - [anon_sym_c_float] = ACTIONS(2149), - [anon_sym_c_double] = ACTIONS(2149), - [anon_sym_c_longdouble] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_defer] = ACTIONS(2149), - [anon_sym_errdefer] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_else] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_match] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2147), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_DOT] = ACTIONS(2147), - [anon_sym_true] = ACTIONS(2149), - [anon_sym_false] = ACTIONS(2149), - [sym_none] = ACTIONS(2149), - [sym_undefined] = ACTIONS(2149), - [sym_sink] = ACTIONS(2149), - [sym_integer] = ACTIONS(2149), - [sym_float] = ACTIONS(2147), - [anon_sym_DQUOTE] = ACTIONS(2147), - [sym_multiline_string] = ACTIONS(2147), - [sym_character] = ACTIONS(2147), + [ts_builtin_sym_end] = ACTIONS(2149), + [sym_identifier] = ACTIONS(2151), + [anon_sym_import] = ACTIONS(2151), + [anon_sym_func] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_struct] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_RPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_void] = ACTIONS(2151), + [anon_sym_anyopaque] = ACTIONS(2151), + [anon_sym_bool] = ACTIONS(2151), + [anon_sym_int] = ACTIONS(2151), + [anon_sym_float] = ACTIONS(2151), + [anon_sym_range] = ACTIONS(2151), + [anon_sym_i8] = ACTIONS(2151), + [anon_sym_i16] = ACTIONS(2151), + [anon_sym_i32] = ACTIONS(2151), + [anon_sym_i64] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2151), + [anon_sym_u16] = ACTIONS(2151), + [anon_sym_u32] = ACTIONS(2151), + [anon_sym_u64] = ACTIONS(2151), + [anon_sym_isize] = ACTIONS(2151), + [anon_sym_usize] = ACTIONS(2151), + [anon_sym_f32] = ACTIONS(2151), + [anon_sym_f64] = ACTIONS(2151), + [anon_sym_c_char] = ACTIONS(2151), + [anon_sym_c_schar] = ACTIONS(2151), + [anon_sym_c_uchar] = ACTIONS(2151), + [anon_sym_c_short] = ACTIONS(2151), + [anon_sym_c_ushort] = ACTIONS(2151), + [anon_sym_c_int] = ACTIONS(2151), + [anon_sym_c_uint] = ACTIONS(2151), + [anon_sym_c_long] = ACTIONS(2151), + [anon_sym_c_ulong] = ACTIONS(2151), + [anon_sym_c_longlong] = ACTIONS(2151), + [anon_sym_c_ulonglong] = ACTIONS(2151), + [anon_sym_c_float] = ACTIONS(2151), + [anon_sym_c_double] = ACTIONS(2151), + [anon_sym_c_longdouble] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_yield] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_defer] = ACTIONS(2151), + [anon_sym_errdefer] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_else] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_match] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_DOT] = ACTIONS(2149), + [anon_sym_true] = ACTIONS(2151), + [anon_sym_false] = ACTIONS(2151), + [sym_none] = ACTIONS(2151), + [sym_undefined] = ACTIONS(2151), + [sym_sink] = ACTIONS(2151), + [sym_integer] = ACTIONS(2151), + [sym_float] = ACTIONS(2149), + [anon_sym_DQUOTE] = ACTIONS(2149), + [sym_multiline_string] = ACTIONS(2149), + [sym_character] = ACTIONS(2149), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2147), + [sym__newline] = ACTIONS(2149), }, [STATE(1014)] = { - [ts_builtin_sym_end] = ACTIONS(2151), - [sym_identifier] = ACTIONS(2153), - [anon_sym_import] = ACTIONS(2153), - [anon_sym_func] = ACTIONS(2153), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_RPAREN] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_void] = ACTIONS(2153), - [anon_sym_anyopaque] = ACTIONS(2153), - [anon_sym_bool] = ACTIONS(2153), - [anon_sym_int] = ACTIONS(2153), - [anon_sym_float] = ACTIONS(2153), - [anon_sym_range] = ACTIONS(2153), - [anon_sym_i8] = ACTIONS(2153), - [anon_sym_i16] = ACTIONS(2153), - [anon_sym_i32] = ACTIONS(2153), - [anon_sym_i64] = ACTIONS(2153), - [anon_sym_u8] = ACTIONS(2153), - [anon_sym_u16] = ACTIONS(2153), - [anon_sym_u32] = ACTIONS(2153), - [anon_sym_u64] = ACTIONS(2153), - [anon_sym_isize] = ACTIONS(2153), - [anon_sym_usize] = ACTIONS(2153), - [anon_sym_f32] = ACTIONS(2153), - [anon_sym_f64] = ACTIONS(2153), - [anon_sym_c_char] = ACTIONS(2153), - [anon_sym_c_schar] = ACTIONS(2153), - [anon_sym_c_uchar] = ACTIONS(2153), - [anon_sym_c_short] = ACTIONS(2153), - [anon_sym_c_ushort] = ACTIONS(2153), - [anon_sym_c_int] = ACTIONS(2153), - [anon_sym_c_uint] = ACTIONS(2153), - [anon_sym_c_long] = ACTIONS(2153), - [anon_sym_c_ulong] = ACTIONS(2153), - [anon_sym_c_longlong] = ACTIONS(2153), - [anon_sym_c_ulonglong] = ACTIONS(2153), - [anon_sym_c_float] = ACTIONS(2153), - [anon_sym_c_double] = ACTIONS(2153), - [anon_sym_c_longdouble] = ACTIONS(2153), - [anon_sym_return] = ACTIONS(2153), - [anon_sym_yield] = ACTIONS(2153), - [anon_sym_break] = ACTIONS(2153), - [anon_sym_continue] = ACTIONS(2153), - [anon_sym_defer] = ACTIONS(2153), - [anon_sym_errdefer] = ACTIONS(2153), - [anon_sym_if] = ACTIONS(2153), - [anon_sym_else] = ACTIONS(2153), - [anon_sym_while] = ACTIONS(2153), - [anon_sym_for] = ACTIONS(2153), - [anon_sym_match] = ACTIONS(2153), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2153), - [anon_sym_DOT] = ACTIONS(2151), - [anon_sym_true] = ACTIONS(2153), - [anon_sym_false] = ACTIONS(2153), - [sym_none] = ACTIONS(2153), - [sym_undefined] = ACTIONS(2153), - [sym_sink] = ACTIONS(2153), - [sym_integer] = ACTIONS(2153), - [sym_float] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2151), - [sym_multiline_string] = ACTIONS(2151), - [sym_character] = ACTIONS(2151), + [ts_builtin_sym_end] = ACTIONS(2153), + [sym_identifier] = ACTIONS(2155), + [anon_sym_import] = ACTIONS(2155), + [anon_sym_func] = ACTIONS(2155), + [anon_sym_BANG] = ACTIONS(2153), + [anon_sym_struct] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_RPAREN] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2153), + [anon_sym_DASH] = ACTIONS(2153), + [anon_sym_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2153), + [anon_sym_void] = ACTIONS(2155), + [anon_sym_anyopaque] = ACTIONS(2155), + [anon_sym_bool] = ACTIONS(2155), + [anon_sym_int] = ACTIONS(2155), + [anon_sym_float] = ACTIONS(2155), + [anon_sym_range] = ACTIONS(2155), + [anon_sym_i8] = ACTIONS(2155), + [anon_sym_i16] = ACTIONS(2155), + [anon_sym_i32] = ACTIONS(2155), + [anon_sym_i64] = ACTIONS(2155), + [anon_sym_u8] = ACTIONS(2155), + [anon_sym_u16] = ACTIONS(2155), + [anon_sym_u32] = ACTIONS(2155), + [anon_sym_u64] = ACTIONS(2155), + [anon_sym_isize] = ACTIONS(2155), + [anon_sym_usize] = ACTIONS(2155), + [anon_sym_f32] = ACTIONS(2155), + [anon_sym_f64] = ACTIONS(2155), + [anon_sym_c_char] = ACTIONS(2155), + [anon_sym_c_schar] = ACTIONS(2155), + [anon_sym_c_uchar] = ACTIONS(2155), + [anon_sym_c_short] = ACTIONS(2155), + [anon_sym_c_ushort] = ACTIONS(2155), + [anon_sym_c_int] = ACTIONS(2155), + [anon_sym_c_uint] = ACTIONS(2155), + [anon_sym_c_long] = ACTIONS(2155), + [anon_sym_c_ulong] = ACTIONS(2155), + [anon_sym_c_longlong] = ACTIONS(2155), + [anon_sym_c_ulonglong] = ACTIONS(2155), + [anon_sym_c_float] = ACTIONS(2155), + [anon_sym_c_double] = ACTIONS(2155), + [anon_sym_c_longdouble] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_yield] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [anon_sym_defer] = ACTIONS(2155), + [anon_sym_errdefer] = ACTIONS(2155), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_else] = ACTIONS(2155), + [anon_sym_while] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_match] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2153), + [anon_sym_try] = ACTIONS(2155), + [anon_sym_DOT] = ACTIONS(2153), + [anon_sym_true] = ACTIONS(2155), + [anon_sym_false] = ACTIONS(2155), + [sym_none] = ACTIONS(2155), + [sym_undefined] = ACTIONS(2155), + [sym_sink] = ACTIONS(2155), + [sym_integer] = ACTIONS(2155), + [sym_float] = ACTIONS(2153), + [anon_sym_DQUOTE] = ACTIONS(2153), + [sym_multiline_string] = ACTIONS(2153), + [sym_character] = ACTIONS(2153), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2151), + [sym__newline] = ACTIONS(2153), }, [STATE(1015)] = { - [ts_builtin_sym_end] = ACTIONS(2155), - [sym_identifier] = ACTIONS(2157), - [anon_sym_import] = ACTIONS(2157), - [anon_sym_func] = ACTIONS(2157), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_struct] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_RPAREN] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_RBRACE] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2155), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_void] = ACTIONS(2157), - [anon_sym_anyopaque] = ACTIONS(2157), - [anon_sym_bool] = ACTIONS(2157), - [anon_sym_int] = ACTIONS(2157), - [anon_sym_float] = ACTIONS(2157), - [anon_sym_range] = ACTIONS(2157), - [anon_sym_i8] = ACTIONS(2157), - [anon_sym_i16] = ACTIONS(2157), - [anon_sym_i32] = ACTIONS(2157), - [anon_sym_i64] = ACTIONS(2157), - [anon_sym_u8] = ACTIONS(2157), - [anon_sym_u16] = ACTIONS(2157), - [anon_sym_u32] = ACTIONS(2157), - [anon_sym_u64] = ACTIONS(2157), - [anon_sym_isize] = ACTIONS(2157), - [anon_sym_usize] = ACTIONS(2157), - [anon_sym_f32] = ACTIONS(2157), - [anon_sym_f64] = ACTIONS(2157), - [anon_sym_c_char] = ACTIONS(2157), - [anon_sym_c_schar] = ACTIONS(2157), - [anon_sym_c_uchar] = ACTIONS(2157), - [anon_sym_c_short] = ACTIONS(2157), - [anon_sym_c_ushort] = ACTIONS(2157), - [anon_sym_c_int] = ACTIONS(2157), - [anon_sym_c_uint] = ACTIONS(2157), - [anon_sym_c_long] = ACTIONS(2157), - [anon_sym_c_ulong] = ACTIONS(2157), - [anon_sym_c_longlong] = ACTIONS(2157), - [anon_sym_c_ulonglong] = ACTIONS(2157), - [anon_sym_c_float] = ACTIONS(2157), - [anon_sym_c_double] = ACTIONS(2157), - [anon_sym_c_longdouble] = ACTIONS(2157), - [anon_sym_return] = ACTIONS(2157), - [anon_sym_yield] = ACTIONS(2157), - [anon_sym_break] = ACTIONS(2157), - [anon_sym_continue] = ACTIONS(2157), - [anon_sym_defer] = ACTIONS(2157), - [anon_sym_errdefer] = ACTIONS(2157), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_else] = ACTIONS(2157), - [anon_sym_while] = ACTIONS(2157), - [anon_sym_for] = ACTIONS(2157), - [anon_sym_match] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2155), - [anon_sym_try] = ACTIONS(2157), - [anon_sym_DOT] = ACTIONS(2155), - [anon_sym_true] = ACTIONS(2157), - [anon_sym_false] = ACTIONS(2157), - [sym_none] = ACTIONS(2157), - [sym_undefined] = ACTIONS(2157), - [sym_sink] = ACTIONS(2157), - [sym_integer] = ACTIONS(2157), - [sym_float] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(2155), - [sym_multiline_string] = ACTIONS(2155), - [sym_character] = ACTIONS(2155), + [ts_builtin_sym_end] = ACTIONS(2157), + [sym_identifier] = ACTIONS(2159), + [anon_sym_import] = ACTIONS(2159), + [anon_sym_func] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_RPAREN] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(2157), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_void] = ACTIONS(2159), + [anon_sym_anyopaque] = ACTIONS(2159), + [anon_sym_bool] = ACTIONS(2159), + [anon_sym_int] = ACTIONS(2159), + [anon_sym_float] = ACTIONS(2159), + [anon_sym_range] = ACTIONS(2159), + [anon_sym_i8] = ACTIONS(2159), + [anon_sym_i16] = ACTIONS(2159), + [anon_sym_i32] = ACTIONS(2159), + [anon_sym_i64] = ACTIONS(2159), + [anon_sym_u8] = ACTIONS(2159), + [anon_sym_u16] = ACTIONS(2159), + [anon_sym_u32] = ACTIONS(2159), + [anon_sym_u64] = ACTIONS(2159), + [anon_sym_isize] = ACTIONS(2159), + [anon_sym_usize] = ACTIONS(2159), + [anon_sym_f32] = ACTIONS(2159), + [anon_sym_f64] = ACTIONS(2159), + [anon_sym_c_char] = ACTIONS(2159), + [anon_sym_c_schar] = ACTIONS(2159), + [anon_sym_c_uchar] = ACTIONS(2159), + [anon_sym_c_short] = ACTIONS(2159), + [anon_sym_c_ushort] = ACTIONS(2159), + [anon_sym_c_int] = ACTIONS(2159), + [anon_sym_c_uint] = ACTIONS(2159), + [anon_sym_c_long] = ACTIONS(2159), + [anon_sym_c_ulong] = ACTIONS(2159), + [anon_sym_c_longlong] = ACTIONS(2159), + [anon_sym_c_ulonglong] = ACTIONS(2159), + [anon_sym_c_float] = ACTIONS(2159), + [anon_sym_c_double] = ACTIONS(2159), + [anon_sym_c_longdouble] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_yield] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_defer] = ACTIONS(2159), + [anon_sym_errdefer] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_else] = ACTIONS(2159), + [anon_sym_while] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_match] = ACTIONS(2159), + [anon_sym_AMP] = ACTIONS(2157), + [anon_sym_try] = ACTIONS(2159), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_true] = ACTIONS(2159), + [anon_sym_false] = ACTIONS(2159), + [sym_none] = ACTIONS(2159), + [sym_undefined] = ACTIONS(2159), + [sym_sink] = ACTIONS(2159), + [sym_integer] = ACTIONS(2159), + [sym_float] = ACTIONS(2157), + [anon_sym_DQUOTE] = ACTIONS(2157), + [sym_multiline_string] = ACTIONS(2157), + [sym_character] = ACTIONS(2157), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2155), + [sym__newline] = ACTIONS(2157), }, [STATE(1016)] = { - [ts_builtin_sym_end] = ACTIONS(2159), - [sym_identifier] = ACTIONS(2161), - [anon_sym_import] = ACTIONS(2161), - [anon_sym_func] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_struct] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_RPAREN] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_DOLLAR] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_void] = ACTIONS(2161), - [anon_sym_anyopaque] = ACTIONS(2161), - [anon_sym_bool] = ACTIONS(2161), - [anon_sym_int] = ACTIONS(2161), - [anon_sym_float] = ACTIONS(2161), - [anon_sym_range] = ACTIONS(2161), - [anon_sym_i8] = ACTIONS(2161), - [anon_sym_i16] = ACTIONS(2161), - [anon_sym_i32] = ACTIONS(2161), - [anon_sym_i64] = ACTIONS(2161), - [anon_sym_u8] = ACTIONS(2161), - [anon_sym_u16] = ACTIONS(2161), - [anon_sym_u32] = ACTIONS(2161), - [anon_sym_u64] = ACTIONS(2161), - [anon_sym_isize] = ACTIONS(2161), - [anon_sym_usize] = ACTIONS(2161), - [anon_sym_f32] = ACTIONS(2161), - [anon_sym_f64] = ACTIONS(2161), - [anon_sym_c_char] = ACTIONS(2161), - [anon_sym_c_schar] = ACTIONS(2161), - [anon_sym_c_uchar] = ACTIONS(2161), - [anon_sym_c_short] = ACTIONS(2161), - [anon_sym_c_ushort] = ACTIONS(2161), - [anon_sym_c_int] = ACTIONS(2161), - [anon_sym_c_uint] = ACTIONS(2161), - [anon_sym_c_long] = ACTIONS(2161), - [anon_sym_c_ulong] = ACTIONS(2161), - [anon_sym_c_longlong] = ACTIONS(2161), - [anon_sym_c_ulonglong] = ACTIONS(2161), - [anon_sym_c_float] = ACTIONS(2161), - [anon_sym_c_double] = ACTIONS(2161), - [anon_sym_c_longdouble] = ACTIONS(2161), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_yield] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_defer] = ACTIONS(2161), - [anon_sym_errdefer] = ACTIONS(2161), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_else] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_match] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2161), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2161), - [anon_sym_false] = ACTIONS(2161), - [sym_none] = ACTIONS(2161), - [sym_undefined] = ACTIONS(2161), - [sym_sink] = ACTIONS(2161), - [sym_integer] = ACTIONS(2161), - [sym_float] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [sym_multiline_string] = ACTIONS(2159), - [sym_character] = ACTIONS(2159), + [ts_builtin_sym_end] = ACTIONS(2161), + [sym_identifier] = ACTIONS(2163), + [anon_sym_import] = ACTIONS(2163), + [anon_sym_func] = ACTIONS(2163), + [anon_sym_BANG] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_RBRACE] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_DOLLAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_void] = ACTIONS(2163), + [anon_sym_anyopaque] = ACTIONS(2163), + [anon_sym_bool] = ACTIONS(2163), + [anon_sym_int] = ACTIONS(2163), + [anon_sym_float] = ACTIONS(2163), + [anon_sym_range] = ACTIONS(2163), + [anon_sym_i8] = ACTIONS(2163), + [anon_sym_i16] = ACTIONS(2163), + [anon_sym_i32] = ACTIONS(2163), + [anon_sym_i64] = ACTIONS(2163), + [anon_sym_u8] = ACTIONS(2163), + [anon_sym_u16] = ACTIONS(2163), + [anon_sym_u32] = ACTIONS(2163), + [anon_sym_u64] = ACTIONS(2163), + [anon_sym_isize] = ACTIONS(2163), + [anon_sym_usize] = ACTIONS(2163), + [anon_sym_f32] = ACTIONS(2163), + [anon_sym_f64] = ACTIONS(2163), + [anon_sym_c_char] = ACTIONS(2163), + [anon_sym_c_schar] = ACTIONS(2163), + [anon_sym_c_uchar] = ACTIONS(2163), + [anon_sym_c_short] = ACTIONS(2163), + [anon_sym_c_ushort] = ACTIONS(2163), + [anon_sym_c_int] = ACTIONS(2163), + [anon_sym_c_uint] = ACTIONS(2163), + [anon_sym_c_long] = ACTIONS(2163), + [anon_sym_c_ulong] = ACTIONS(2163), + [anon_sym_c_longlong] = ACTIONS(2163), + [anon_sym_c_ulonglong] = ACTIONS(2163), + [anon_sym_c_float] = ACTIONS(2163), + [anon_sym_c_double] = ACTIONS(2163), + [anon_sym_c_longdouble] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_yield] = ACTIONS(2163), + [anon_sym_break] = ACTIONS(2163), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_defer] = ACTIONS(2163), + [anon_sym_errdefer] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_else] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(2163), + [anon_sym_match] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2161), + [anon_sym_try] = ACTIONS(2163), + [anon_sym_DOT] = ACTIONS(2161), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_none] = ACTIONS(2163), + [sym_undefined] = ACTIONS(2163), + [sym_sink] = ACTIONS(2163), + [sym_integer] = ACTIONS(2163), + [sym_float] = ACTIONS(2161), + [anon_sym_DQUOTE] = ACTIONS(2161), + [sym_multiline_string] = ACTIONS(2161), + [sym_character] = ACTIONS(2161), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2159), + [sym__newline] = ACTIONS(2161), }, [STATE(1017)] = { - [ts_builtin_sym_end] = ACTIONS(2163), - [sym_identifier] = ACTIONS(2165), - [anon_sym_import] = ACTIONS(2165), - [anon_sym_func] = ACTIONS(2165), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_struct] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_RPAREN] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_DOLLAR] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2163), - [anon_sym_void] = ACTIONS(2165), - [anon_sym_anyopaque] = ACTIONS(2165), - [anon_sym_bool] = ACTIONS(2165), - [anon_sym_int] = ACTIONS(2165), - [anon_sym_float] = ACTIONS(2165), - [anon_sym_range] = ACTIONS(2165), - [anon_sym_i8] = ACTIONS(2165), - [anon_sym_i16] = ACTIONS(2165), - [anon_sym_i32] = ACTIONS(2165), - [anon_sym_i64] = ACTIONS(2165), - [anon_sym_u8] = ACTIONS(2165), - [anon_sym_u16] = ACTIONS(2165), - [anon_sym_u32] = ACTIONS(2165), - [anon_sym_u64] = ACTIONS(2165), - [anon_sym_isize] = ACTIONS(2165), - [anon_sym_usize] = ACTIONS(2165), - [anon_sym_f32] = ACTIONS(2165), - [anon_sym_f64] = ACTIONS(2165), - [anon_sym_c_char] = ACTIONS(2165), - [anon_sym_c_schar] = ACTIONS(2165), - [anon_sym_c_uchar] = ACTIONS(2165), - [anon_sym_c_short] = ACTIONS(2165), - [anon_sym_c_ushort] = ACTIONS(2165), - [anon_sym_c_int] = ACTIONS(2165), - [anon_sym_c_uint] = ACTIONS(2165), - [anon_sym_c_long] = ACTIONS(2165), - [anon_sym_c_ulong] = ACTIONS(2165), - [anon_sym_c_longlong] = ACTIONS(2165), - [anon_sym_c_ulonglong] = ACTIONS(2165), - [anon_sym_c_float] = ACTIONS(2165), - [anon_sym_c_double] = ACTIONS(2165), - [anon_sym_c_longdouble] = ACTIONS(2165), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_yield] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_defer] = ACTIONS(2165), - [anon_sym_errdefer] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_else] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_match] = ACTIONS(2165), - [anon_sym_AMP] = ACTIONS(2163), - [anon_sym_try] = ACTIONS(2165), - [anon_sym_DOT] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [sym_none] = ACTIONS(2165), - [sym_undefined] = ACTIONS(2165), - [sym_sink] = ACTIONS(2165), - [sym_integer] = ACTIONS(2165), - [sym_float] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [sym_multiline_string] = ACTIONS(2163), - [sym_character] = ACTIONS(2163), + [ts_builtin_sym_end] = ACTIONS(2165), + [sym_identifier] = ACTIONS(2167), + [anon_sym_import] = ACTIONS(2167), + [anon_sym_func] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2165), + [anon_sym_RPAREN] = ACTIONS(2165), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_DOLLAR] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_void] = ACTIONS(2167), + [anon_sym_anyopaque] = ACTIONS(2167), + [anon_sym_bool] = ACTIONS(2167), + [anon_sym_int] = ACTIONS(2167), + [anon_sym_float] = ACTIONS(2167), + [anon_sym_range] = ACTIONS(2167), + [anon_sym_i8] = ACTIONS(2167), + [anon_sym_i16] = ACTIONS(2167), + [anon_sym_i32] = ACTIONS(2167), + [anon_sym_i64] = ACTIONS(2167), + [anon_sym_u8] = ACTIONS(2167), + [anon_sym_u16] = ACTIONS(2167), + [anon_sym_u32] = ACTIONS(2167), + [anon_sym_u64] = ACTIONS(2167), + [anon_sym_isize] = ACTIONS(2167), + [anon_sym_usize] = ACTIONS(2167), + [anon_sym_f32] = ACTIONS(2167), + [anon_sym_f64] = ACTIONS(2167), + [anon_sym_c_char] = ACTIONS(2167), + [anon_sym_c_schar] = ACTIONS(2167), + [anon_sym_c_uchar] = ACTIONS(2167), + [anon_sym_c_short] = ACTIONS(2167), + [anon_sym_c_ushort] = ACTIONS(2167), + [anon_sym_c_int] = ACTIONS(2167), + [anon_sym_c_uint] = ACTIONS(2167), + [anon_sym_c_long] = ACTIONS(2167), + [anon_sym_c_ulong] = ACTIONS(2167), + [anon_sym_c_longlong] = ACTIONS(2167), + [anon_sym_c_ulonglong] = ACTIONS(2167), + [anon_sym_c_float] = ACTIONS(2167), + [anon_sym_c_double] = ACTIONS(2167), + [anon_sym_c_longdouble] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_yield] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_defer] = ACTIONS(2167), + [anon_sym_errdefer] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_else] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_try] = ACTIONS(2167), + [anon_sym_DOT] = ACTIONS(2165), + [anon_sym_true] = ACTIONS(2167), + [anon_sym_false] = ACTIONS(2167), + [sym_none] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2167), + [sym_sink] = ACTIONS(2167), + [sym_integer] = ACTIONS(2167), + [sym_float] = ACTIONS(2165), + [anon_sym_DQUOTE] = ACTIONS(2165), + [sym_multiline_string] = ACTIONS(2165), + [sym_character] = ACTIONS(2165), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2163), + [sym__newline] = ACTIONS(2165), }, [STATE(1018)] = { - [ts_builtin_sym_end] = ACTIONS(2167), - [sym_identifier] = ACTIONS(2169), - [anon_sym_import] = ACTIONS(2169), - [anon_sym_func] = ACTIONS(2169), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_struct] = ACTIONS(2169), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_RPAREN] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_DOLLAR] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2169), - [anon_sym_anyopaque] = ACTIONS(2169), - [anon_sym_bool] = ACTIONS(2169), - [anon_sym_int] = ACTIONS(2169), - [anon_sym_float] = ACTIONS(2169), - [anon_sym_range] = ACTIONS(2169), - [anon_sym_i8] = ACTIONS(2169), - [anon_sym_i16] = ACTIONS(2169), - [anon_sym_i32] = ACTIONS(2169), - [anon_sym_i64] = ACTIONS(2169), - [anon_sym_u8] = ACTIONS(2169), - [anon_sym_u16] = ACTIONS(2169), - [anon_sym_u32] = ACTIONS(2169), - [anon_sym_u64] = ACTIONS(2169), - [anon_sym_isize] = ACTIONS(2169), - [anon_sym_usize] = ACTIONS(2169), - [anon_sym_f32] = ACTIONS(2169), - [anon_sym_f64] = ACTIONS(2169), - [anon_sym_c_char] = ACTIONS(2169), - [anon_sym_c_schar] = ACTIONS(2169), - [anon_sym_c_uchar] = ACTIONS(2169), - [anon_sym_c_short] = ACTIONS(2169), - [anon_sym_c_ushort] = ACTIONS(2169), - [anon_sym_c_int] = ACTIONS(2169), - [anon_sym_c_uint] = ACTIONS(2169), - [anon_sym_c_long] = ACTIONS(2169), - [anon_sym_c_ulong] = ACTIONS(2169), - [anon_sym_c_longlong] = ACTIONS(2169), - [anon_sym_c_ulonglong] = ACTIONS(2169), - [anon_sym_c_float] = ACTIONS(2169), - [anon_sym_c_double] = ACTIONS(2169), - [anon_sym_c_longdouble] = ACTIONS(2169), - [anon_sym_return] = ACTIONS(2169), - [anon_sym_yield] = ACTIONS(2169), - [anon_sym_break] = ACTIONS(2169), - [anon_sym_continue] = ACTIONS(2169), - [anon_sym_defer] = ACTIONS(2169), - [anon_sym_errdefer] = ACTIONS(2169), - [anon_sym_if] = ACTIONS(2169), - [anon_sym_else] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2169), - [anon_sym_for] = ACTIONS(2169), - [anon_sym_match] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2169), - [anon_sym_DOT] = ACTIONS(2167), - [anon_sym_true] = ACTIONS(2169), - [anon_sym_false] = ACTIONS(2169), - [sym_none] = ACTIONS(2169), - [sym_undefined] = ACTIONS(2169), - [sym_sink] = ACTIONS(2169), - [sym_integer] = ACTIONS(2169), - [sym_float] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym_multiline_string] = ACTIONS(2167), - [sym_character] = ACTIONS(2167), + [ts_builtin_sym_end] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2171), + [anon_sym_import] = ACTIONS(2171), + [anon_sym_func] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(2169), + [anon_sym_struct] = ACTIONS(2171), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_void] = ACTIONS(2171), + [anon_sym_anyopaque] = ACTIONS(2171), + [anon_sym_bool] = ACTIONS(2171), + [anon_sym_int] = ACTIONS(2171), + [anon_sym_float] = ACTIONS(2171), + [anon_sym_range] = ACTIONS(2171), + [anon_sym_i8] = ACTIONS(2171), + [anon_sym_i16] = ACTIONS(2171), + [anon_sym_i32] = ACTIONS(2171), + [anon_sym_i64] = ACTIONS(2171), + [anon_sym_u8] = ACTIONS(2171), + [anon_sym_u16] = ACTIONS(2171), + [anon_sym_u32] = ACTIONS(2171), + [anon_sym_u64] = ACTIONS(2171), + [anon_sym_isize] = ACTIONS(2171), + [anon_sym_usize] = ACTIONS(2171), + [anon_sym_f32] = ACTIONS(2171), + [anon_sym_f64] = ACTIONS(2171), + [anon_sym_c_char] = ACTIONS(2171), + [anon_sym_c_schar] = ACTIONS(2171), + [anon_sym_c_uchar] = ACTIONS(2171), + [anon_sym_c_short] = ACTIONS(2171), + [anon_sym_c_ushort] = ACTIONS(2171), + [anon_sym_c_int] = ACTIONS(2171), + [anon_sym_c_uint] = ACTIONS(2171), + [anon_sym_c_long] = ACTIONS(2171), + [anon_sym_c_ulong] = ACTIONS(2171), + [anon_sym_c_longlong] = ACTIONS(2171), + [anon_sym_c_ulonglong] = ACTIONS(2171), + [anon_sym_c_float] = ACTIONS(2171), + [anon_sym_c_double] = ACTIONS(2171), + [anon_sym_c_longdouble] = ACTIONS(2171), + [anon_sym_return] = ACTIONS(2171), + [anon_sym_yield] = ACTIONS(2171), + [anon_sym_break] = ACTIONS(2171), + [anon_sym_continue] = ACTIONS(2171), + [anon_sym_defer] = ACTIONS(2171), + [anon_sym_errdefer] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2171), + [anon_sym_while] = ACTIONS(2171), + [anon_sym_for] = ACTIONS(2171), + [anon_sym_match] = ACTIONS(2171), + [anon_sym_AMP] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2171), + [anon_sym_DOT] = ACTIONS(2169), + [anon_sym_true] = ACTIONS(2171), + [anon_sym_false] = ACTIONS(2171), + [sym_none] = ACTIONS(2171), + [sym_undefined] = ACTIONS(2171), + [sym_sink] = ACTIONS(2171), + [sym_integer] = ACTIONS(2171), + [sym_float] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [sym_multiline_string] = ACTIONS(2169), + [sym_character] = ACTIONS(2169), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2167), + [sym__newline] = ACTIONS(2169), }, [STATE(1019)] = { - [ts_builtin_sym_end] = ACTIONS(2171), - [sym_identifier] = ACTIONS(2173), - [anon_sym_import] = ACTIONS(2173), - [anon_sym_func] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_RPAREN] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_DOLLAR] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2171), - [anon_sym_void] = ACTIONS(2173), - [anon_sym_anyopaque] = ACTIONS(2173), - [anon_sym_bool] = ACTIONS(2173), - [anon_sym_int] = ACTIONS(2173), - [anon_sym_float] = ACTIONS(2173), - [anon_sym_range] = ACTIONS(2173), - [anon_sym_i8] = ACTIONS(2173), - [anon_sym_i16] = ACTIONS(2173), - [anon_sym_i32] = ACTIONS(2173), - [anon_sym_i64] = ACTIONS(2173), - [anon_sym_u8] = ACTIONS(2173), - [anon_sym_u16] = ACTIONS(2173), - [anon_sym_u32] = ACTIONS(2173), - [anon_sym_u64] = ACTIONS(2173), - [anon_sym_isize] = ACTIONS(2173), - [anon_sym_usize] = ACTIONS(2173), - [anon_sym_f32] = ACTIONS(2173), - [anon_sym_f64] = ACTIONS(2173), - [anon_sym_c_char] = ACTIONS(2173), - [anon_sym_c_schar] = ACTIONS(2173), - [anon_sym_c_uchar] = ACTIONS(2173), - [anon_sym_c_short] = ACTIONS(2173), - [anon_sym_c_ushort] = ACTIONS(2173), - [anon_sym_c_int] = ACTIONS(2173), - [anon_sym_c_uint] = ACTIONS(2173), - [anon_sym_c_long] = ACTIONS(2173), - [anon_sym_c_ulong] = ACTIONS(2173), - [anon_sym_c_longlong] = ACTIONS(2173), - [anon_sym_c_ulonglong] = ACTIONS(2173), - [anon_sym_c_float] = ACTIONS(2173), - [anon_sym_c_double] = ACTIONS(2173), - [anon_sym_c_longdouble] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_yield] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_defer] = ACTIONS(2173), - [anon_sym_errdefer] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_else] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_match] = ACTIONS(2173), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(2173), - [anon_sym_false] = ACTIONS(2173), - [sym_none] = ACTIONS(2173), - [sym_undefined] = ACTIONS(2173), - [sym_sink] = ACTIONS(2173), - [sym_integer] = ACTIONS(2173), - [sym_float] = ACTIONS(2171), - [anon_sym_DQUOTE] = ACTIONS(2171), - [sym_multiline_string] = ACTIONS(2171), - [sym_character] = ACTIONS(2171), + [ts_builtin_sym_end] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_func] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2173), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_RPAREN] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_void] = ACTIONS(2175), + [anon_sym_anyopaque] = ACTIONS(2175), + [anon_sym_bool] = ACTIONS(2175), + [anon_sym_int] = ACTIONS(2175), + [anon_sym_float] = ACTIONS(2175), + [anon_sym_range] = ACTIONS(2175), + [anon_sym_i8] = ACTIONS(2175), + [anon_sym_i16] = ACTIONS(2175), + [anon_sym_i32] = ACTIONS(2175), + [anon_sym_i64] = ACTIONS(2175), + [anon_sym_u8] = ACTIONS(2175), + [anon_sym_u16] = ACTIONS(2175), + [anon_sym_u32] = ACTIONS(2175), + [anon_sym_u64] = ACTIONS(2175), + [anon_sym_isize] = ACTIONS(2175), + [anon_sym_usize] = ACTIONS(2175), + [anon_sym_f32] = ACTIONS(2175), + [anon_sym_f64] = ACTIONS(2175), + [anon_sym_c_char] = ACTIONS(2175), + [anon_sym_c_schar] = ACTIONS(2175), + [anon_sym_c_uchar] = ACTIONS(2175), + [anon_sym_c_short] = ACTIONS(2175), + [anon_sym_c_ushort] = ACTIONS(2175), + [anon_sym_c_int] = ACTIONS(2175), + [anon_sym_c_uint] = ACTIONS(2175), + [anon_sym_c_long] = ACTIONS(2175), + [anon_sym_c_ulong] = ACTIONS(2175), + [anon_sym_c_longlong] = ACTIONS(2175), + [anon_sym_c_ulonglong] = ACTIONS(2175), + [anon_sym_c_float] = ACTIONS(2175), + [anon_sym_c_double] = ACTIONS(2175), + [anon_sym_c_longdouble] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_defer] = ACTIONS(2175), + [anon_sym_errdefer] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2175), + [anon_sym_false] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_undefined] = ACTIONS(2175), + [sym_sink] = ACTIONS(2175), + [sym_integer] = ACTIONS(2175), + [sym_float] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2173), + [sym_multiline_string] = ACTIONS(2173), + [sym_character] = ACTIONS(2173), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2171), + [sym__newline] = ACTIONS(2173), }, [STATE(1020)] = { - [ts_builtin_sym_end] = ACTIONS(2175), - [sym_identifier] = ACTIONS(2177), - [anon_sym_import] = ACTIONS(2177), - [anon_sym_func] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_RPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_DOLLAR] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_void] = ACTIONS(2177), - [anon_sym_anyopaque] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_int] = ACTIONS(2177), - [anon_sym_float] = ACTIONS(2177), - [anon_sym_range] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_c_char] = ACTIONS(2177), - [anon_sym_c_schar] = ACTIONS(2177), - [anon_sym_c_uchar] = ACTIONS(2177), - [anon_sym_c_short] = ACTIONS(2177), - [anon_sym_c_ushort] = ACTIONS(2177), - [anon_sym_c_int] = ACTIONS(2177), - [anon_sym_c_uint] = ACTIONS(2177), - [anon_sym_c_long] = ACTIONS(2177), - [anon_sym_c_ulong] = ACTIONS(2177), - [anon_sym_c_longlong] = ACTIONS(2177), - [anon_sym_c_ulonglong] = ACTIONS(2177), - [anon_sym_c_float] = ACTIONS(2177), - [anon_sym_c_double] = ACTIONS(2177), - [anon_sym_c_longdouble] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_yield] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_defer] = ACTIONS(2177), - [anon_sym_errdefer] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_else] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2177), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_true] = ACTIONS(2177), - [anon_sym_false] = ACTIONS(2177), - [sym_none] = ACTIONS(2177), - [sym_undefined] = ACTIONS(2177), - [sym_sink] = ACTIONS(2177), - [sym_integer] = ACTIONS(2177), - [sym_float] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [sym_multiline_string] = ACTIONS(2175), - [sym_character] = ACTIONS(2175), + [ts_builtin_sym_end] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2179), + [anon_sym_import] = ACTIONS(2179), + [anon_sym_func] = ACTIONS(2179), + [anon_sym_BANG] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2177), + [anon_sym_RPAREN] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_DASH] = ACTIONS(2177), + [anon_sym_DOLLAR] = ACTIONS(2177), + [anon_sym_LBRACK] = ACTIONS(2177), + [anon_sym_void] = ACTIONS(2179), + [anon_sym_anyopaque] = ACTIONS(2179), + [anon_sym_bool] = ACTIONS(2179), + [anon_sym_int] = ACTIONS(2179), + [anon_sym_float] = ACTIONS(2179), + [anon_sym_range] = ACTIONS(2179), + [anon_sym_i8] = ACTIONS(2179), + [anon_sym_i16] = ACTIONS(2179), + [anon_sym_i32] = ACTIONS(2179), + [anon_sym_i64] = ACTIONS(2179), + [anon_sym_u8] = ACTIONS(2179), + [anon_sym_u16] = ACTIONS(2179), + [anon_sym_u32] = ACTIONS(2179), + [anon_sym_u64] = ACTIONS(2179), + [anon_sym_isize] = ACTIONS(2179), + [anon_sym_usize] = ACTIONS(2179), + [anon_sym_f32] = ACTIONS(2179), + [anon_sym_f64] = ACTIONS(2179), + [anon_sym_c_char] = ACTIONS(2179), + [anon_sym_c_schar] = ACTIONS(2179), + [anon_sym_c_uchar] = ACTIONS(2179), + [anon_sym_c_short] = ACTIONS(2179), + [anon_sym_c_ushort] = ACTIONS(2179), + [anon_sym_c_int] = ACTIONS(2179), + [anon_sym_c_uint] = ACTIONS(2179), + [anon_sym_c_long] = ACTIONS(2179), + [anon_sym_c_ulong] = ACTIONS(2179), + [anon_sym_c_longlong] = ACTIONS(2179), + [anon_sym_c_ulonglong] = ACTIONS(2179), + [anon_sym_c_float] = ACTIONS(2179), + [anon_sym_c_double] = ACTIONS(2179), + [anon_sym_c_longdouble] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_yield] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_defer] = ACTIONS(2179), + [anon_sym_errdefer] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_else] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_try] = ACTIONS(2179), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_true] = ACTIONS(2179), + [anon_sym_false] = ACTIONS(2179), + [sym_none] = ACTIONS(2179), + [sym_undefined] = ACTIONS(2179), + [sym_sink] = ACTIONS(2179), + [sym_integer] = ACTIONS(2179), + [sym_float] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2177), + [sym_multiline_string] = ACTIONS(2177), + [sym_character] = ACTIONS(2177), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2175), + [sym__newline] = ACTIONS(2177), }, [STATE(1021)] = { - [ts_builtin_sym_end] = ACTIONS(2179), - [sym_identifier] = ACTIONS(2181), - [anon_sym_import] = ACTIONS(2181), - [anon_sym_func] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2179), - [anon_sym_struct] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_DASH] = ACTIONS(2179), - [anon_sym_DOLLAR] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2179), - [anon_sym_void] = ACTIONS(2181), - [anon_sym_anyopaque] = ACTIONS(2181), - [anon_sym_bool] = ACTIONS(2181), - [anon_sym_int] = ACTIONS(2181), - [anon_sym_float] = ACTIONS(2181), - [anon_sym_range] = ACTIONS(2181), - [anon_sym_i8] = ACTIONS(2181), - [anon_sym_i16] = ACTIONS(2181), - [anon_sym_i32] = ACTIONS(2181), - [anon_sym_i64] = ACTIONS(2181), - [anon_sym_u8] = ACTIONS(2181), - [anon_sym_u16] = ACTIONS(2181), - [anon_sym_u32] = ACTIONS(2181), - [anon_sym_u64] = ACTIONS(2181), - [anon_sym_isize] = ACTIONS(2181), - [anon_sym_usize] = ACTIONS(2181), - [anon_sym_f32] = ACTIONS(2181), - [anon_sym_f64] = ACTIONS(2181), - [anon_sym_c_char] = ACTIONS(2181), - [anon_sym_c_schar] = ACTIONS(2181), - [anon_sym_c_uchar] = ACTIONS(2181), - [anon_sym_c_short] = ACTIONS(2181), - [anon_sym_c_ushort] = ACTIONS(2181), - [anon_sym_c_int] = ACTIONS(2181), - [anon_sym_c_uint] = ACTIONS(2181), - [anon_sym_c_long] = ACTIONS(2181), - [anon_sym_c_ulong] = ACTIONS(2181), - [anon_sym_c_longlong] = ACTIONS(2181), - [anon_sym_c_ulonglong] = ACTIONS(2181), - [anon_sym_c_float] = ACTIONS(2181), - [anon_sym_c_double] = ACTIONS(2181), - [anon_sym_c_longdouble] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_yield] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_defer] = ACTIONS(2181), - [anon_sym_errdefer] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_else] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_AMP] = ACTIONS(2179), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_DOT] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2181), - [anon_sym_false] = ACTIONS(2181), - [sym_none] = ACTIONS(2181), - [sym_undefined] = ACTIONS(2181), - [sym_sink] = ACTIONS(2181), - [sym_integer] = ACTIONS(2181), - [sym_float] = ACTIONS(2179), - [anon_sym_DQUOTE] = ACTIONS(2179), - [sym_multiline_string] = ACTIONS(2179), - [sym_character] = ACTIONS(2179), + [ts_builtin_sym_end] = ACTIONS(2181), + [sym_identifier] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_func] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_RPAREN] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_anyopaque] = ACTIONS(2183), + [anon_sym_bool] = ACTIONS(2183), + [anon_sym_int] = ACTIONS(2183), + [anon_sym_float] = ACTIONS(2183), + [anon_sym_range] = ACTIONS(2183), + [anon_sym_i8] = ACTIONS(2183), + [anon_sym_i16] = ACTIONS(2183), + [anon_sym_i32] = ACTIONS(2183), + [anon_sym_i64] = ACTIONS(2183), + [anon_sym_u8] = ACTIONS(2183), + [anon_sym_u16] = ACTIONS(2183), + [anon_sym_u32] = ACTIONS(2183), + [anon_sym_u64] = ACTIONS(2183), + [anon_sym_isize] = ACTIONS(2183), + [anon_sym_usize] = ACTIONS(2183), + [anon_sym_f32] = ACTIONS(2183), + [anon_sym_f64] = ACTIONS(2183), + [anon_sym_c_char] = ACTIONS(2183), + [anon_sym_c_schar] = ACTIONS(2183), + [anon_sym_c_uchar] = ACTIONS(2183), + [anon_sym_c_short] = ACTIONS(2183), + [anon_sym_c_ushort] = ACTIONS(2183), + [anon_sym_c_int] = ACTIONS(2183), + [anon_sym_c_uint] = ACTIONS(2183), + [anon_sym_c_long] = ACTIONS(2183), + [anon_sym_c_ulong] = ACTIONS(2183), + [anon_sym_c_longlong] = ACTIONS(2183), + [anon_sym_c_ulonglong] = ACTIONS(2183), + [anon_sym_c_float] = ACTIONS(2183), + [anon_sym_c_double] = ACTIONS(2183), + [anon_sym_c_longdouble] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_defer] = ACTIONS(2183), + [anon_sym_errdefer] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_match] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(2181), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2181), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_none] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [sym_sink] = ACTIONS(2183), + [sym_integer] = ACTIONS(2183), + [sym_float] = ACTIONS(2181), + [anon_sym_DQUOTE] = ACTIONS(2181), + [sym_multiline_string] = ACTIONS(2181), + [sym_character] = ACTIONS(2181), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2179), + [sym__newline] = ACTIONS(2181), }, [STATE(1022)] = { - [ts_builtin_sym_end] = ACTIONS(2183), - [sym_identifier] = ACTIONS(2185), - [anon_sym_import] = ACTIONS(2185), - [anon_sym_func] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_RPAREN] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_void] = ACTIONS(2185), - [anon_sym_anyopaque] = ACTIONS(2185), - [anon_sym_bool] = ACTIONS(2185), - [anon_sym_int] = ACTIONS(2185), - [anon_sym_float] = ACTIONS(2185), - [anon_sym_range] = ACTIONS(2185), - [anon_sym_i8] = ACTIONS(2185), - [anon_sym_i16] = ACTIONS(2185), - [anon_sym_i32] = ACTIONS(2185), - [anon_sym_i64] = ACTIONS(2185), - [anon_sym_u8] = ACTIONS(2185), - [anon_sym_u16] = ACTIONS(2185), - [anon_sym_u32] = ACTIONS(2185), - [anon_sym_u64] = ACTIONS(2185), - [anon_sym_isize] = ACTIONS(2185), - [anon_sym_usize] = ACTIONS(2185), - [anon_sym_f32] = ACTIONS(2185), - [anon_sym_f64] = ACTIONS(2185), - [anon_sym_c_char] = ACTIONS(2185), - [anon_sym_c_schar] = ACTIONS(2185), - [anon_sym_c_uchar] = ACTIONS(2185), - [anon_sym_c_short] = ACTIONS(2185), - [anon_sym_c_ushort] = ACTIONS(2185), - [anon_sym_c_int] = ACTIONS(2185), - [anon_sym_c_uint] = ACTIONS(2185), - [anon_sym_c_long] = ACTIONS(2185), - [anon_sym_c_ulong] = ACTIONS(2185), - [anon_sym_c_longlong] = ACTIONS(2185), - [anon_sym_c_ulonglong] = ACTIONS(2185), - [anon_sym_c_float] = ACTIONS(2185), - [anon_sym_c_double] = ACTIONS(2185), - [anon_sym_c_longdouble] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_yield] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_defer] = ACTIONS(2185), - [anon_sym_errdefer] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_else] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2185), - [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_true] = ACTIONS(2185), - [anon_sym_false] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_undefined] = ACTIONS(2185), - [sym_sink] = ACTIONS(2185), - [sym_integer] = ACTIONS(2185), - [sym_float] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [sym_multiline_string] = ACTIONS(2183), - [sym_character] = ACTIONS(2183), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2187), + [anon_sym_import] = ACTIONS(2187), + [anon_sym_func] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_void] = ACTIONS(2187), + [anon_sym_anyopaque] = ACTIONS(2187), + [anon_sym_bool] = ACTIONS(2187), + [anon_sym_int] = ACTIONS(2187), + [anon_sym_float] = ACTIONS(2187), + [anon_sym_range] = ACTIONS(2187), + [anon_sym_i8] = ACTIONS(2187), + [anon_sym_i16] = ACTIONS(2187), + [anon_sym_i32] = ACTIONS(2187), + [anon_sym_i64] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2187), + [anon_sym_u16] = ACTIONS(2187), + [anon_sym_u32] = ACTIONS(2187), + [anon_sym_u64] = ACTIONS(2187), + [anon_sym_isize] = ACTIONS(2187), + [anon_sym_usize] = ACTIONS(2187), + [anon_sym_f32] = ACTIONS(2187), + [anon_sym_f64] = ACTIONS(2187), + [anon_sym_c_char] = ACTIONS(2187), + [anon_sym_c_schar] = ACTIONS(2187), + [anon_sym_c_uchar] = ACTIONS(2187), + [anon_sym_c_short] = ACTIONS(2187), + [anon_sym_c_ushort] = ACTIONS(2187), + [anon_sym_c_int] = ACTIONS(2187), + [anon_sym_c_uint] = ACTIONS(2187), + [anon_sym_c_long] = ACTIONS(2187), + [anon_sym_c_ulong] = ACTIONS(2187), + [anon_sym_c_longlong] = ACTIONS(2187), + [anon_sym_c_ulonglong] = ACTIONS(2187), + [anon_sym_c_float] = ACTIONS(2187), + [anon_sym_c_double] = ACTIONS(2187), + [anon_sym_c_longdouble] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_yield] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_defer] = ACTIONS(2187), + [anon_sym_errdefer] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_else] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_try] = ACTIONS(2187), + [anon_sym_DOT] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2187), + [anon_sym_false] = ACTIONS(2187), + [sym_none] = ACTIONS(2187), + [sym_undefined] = ACTIONS(2187), + [sym_sink] = ACTIONS(2187), + [sym_integer] = ACTIONS(2187), + [sym_float] = ACTIONS(2185), + [anon_sym_DQUOTE] = ACTIONS(2185), + [sym_multiline_string] = ACTIONS(2185), + [sym_character] = ACTIONS(2185), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2183), + [sym__newline] = ACTIONS(2185), }, [STATE(1023)] = { - [ts_builtin_sym_end] = ACTIONS(2187), - [sym_identifier] = ACTIONS(2189), - [anon_sym_import] = ACTIONS(2189), - [anon_sym_func] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_RPAREN] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_void] = ACTIONS(2189), - [anon_sym_anyopaque] = ACTIONS(2189), - [anon_sym_bool] = ACTIONS(2189), - [anon_sym_int] = ACTIONS(2189), - [anon_sym_float] = ACTIONS(2189), - [anon_sym_range] = ACTIONS(2189), - [anon_sym_i8] = ACTIONS(2189), - [anon_sym_i16] = ACTIONS(2189), - [anon_sym_i32] = ACTIONS(2189), - [anon_sym_i64] = ACTIONS(2189), - [anon_sym_u8] = ACTIONS(2189), - [anon_sym_u16] = ACTIONS(2189), - [anon_sym_u32] = ACTIONS(2189), - [anon_sym_u64] = ACTIONS(2189), - [anon_sym_isize] = ACTIONS(2189), - [anon_sym_usize] = ACTIONS(2189), - [anon_sym_f32] = ACTIONS(2189), - [anon_sym_f64] = ACTIONS(2189), - [anon_sym_c_char] = ACTIONS(2189), - [anon_sym_c_schar] = ACTIONS(2189), - [anon_sym_c_uchar] = ACTIONS(2189), - [anon_sym_c_short] = ACTIONS(2189), - [anon_sym_c_ushort] = ACTIONS(2189), - [anon_sym_c_int] = ACTIONS(2189), - [anon_sym_c_uint] = ACTIONS(2189), - [anon_sym_c_long] = ACTIONS(2189), - [anon_sym_c_ulong] = ACTIONS(2189), - [anon_sym_c_longlong] = ACTIONS(2189), - [anon_sym_c_ulonglong] = ACTIONS(2189), - [anon_sym_c_float] = ACTIONS(2189), - [anon_sym_c_double] = ACTIONS(2189), - [anon_sym_c_longdouble] = ACTIONS(2189), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_yield] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_defer] = ACTIONS(2189), - [anon_sym_errdefer] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_else] = ACTIONS(2189), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_match] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2187), - [anon_sym_try] = ACTIONS(2189), - [anon_sym_DOT] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_none] = ACTIONS(2189), - [sym_undefined] = ACTIONS(2189), - [sym_sink] = ACTIONS(2189), - [sym_integer] = ACTIONS(2189), - [sym_float] = ACTIONS(2187), - [anon_sym_DQUOTE] = ACTIONS(2187), - [sym_multiline_string] = ACTIONS(2187), - [sym_character] = ACTIONS(2187), + [ts_builtin_sym_end] = ACTIONS(2189), + [sym_identifier] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_func] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym_RPAREN] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_void] = ACTIONS(2191), + [anon_sym_anyopaque] = ACTIONS(2191), + [anon_sym_bool] = ACTIONS(2191), + [anon_sym_int] = ACTIONS(2191), + [anon_sym_float] = ACTIONS(2191), + [anon_sym_range] = ACTIONS(2191), + [anon_sym_i8] = ACTIONS(2191), + [anon_sym_i16] = ACTIONS(2191), + [anon_sym_i32] = ACTIONS(2191), + [anon_sym_i64] = ACTIONS(2191), + [anon_sym_u8] = ACTIONS(2191), + [anon_sym_u16] = ACTIONS(2191), + [anon_sym_u32] = ACTIONS(2191), + [anon_sym_u64] = ACTIONS(2191), + [anon_sym_isize] = ACTIONS(2191), + [anon_sym_usize] = ACTIONS(2191), + [anon_sym_f32] = ACTIONS(2191), + [anon_sym_f64] = ACTIONS(2191), + [anon_sym_c_char] = ACTIONS(2191), + [anon_sym_c_schar] = ACTIONS(2191), + [anon_sym_c_uchar] = ACTIONS(2191), + [anon_sym_c_short] = ACTIONS(2191), + [anon_sym_c_ushort] = ACTIONS(2191), + [anon_sym_c_int] = ACTIONS(2191), + [anon_sym_c_uint] = ACTIONS(2191), + [anon_sym_c_long] = ACTIONS(2191), + [anon_sym_c_ulong] = ACTIONS(2191), + [anon_sym_c_longlong] = ACTIONS(2191), + [anon_sym_c_ulonglong] = ACTIONS(2191), + [anon_sym_c_float] = ACTIONS(2191), + [anon_sym_c_double] = ACTIONS(2191), + [anon_sym_c_longdouble] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_defer] = ACTIONS(2191), + [anon_sym_errdefer] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_match] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2191), + [anon_sym_false] = ACTIONS(2191), + [sym_none] = ACTIONS(2191), + [sym_undefined] = ACTIONS(2191), + [sym_sink] = ACTIONS(2191), + [sym_integer] = ACTIONS(2191), + [sym_float] = ACTIONS(2189), + [anon_sym_DQUOTE] = ACTIONS(2189), + [sym_multiline_string] = ACTIONS(2189), + [sym_character] = ACTIONS(2189), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2187), + [sym__newline] = ACTIONS(2189), }, [STATE(1024)] = { - [ts_builtin_sym_end] = ACTIONS(2191), - [sym_identifier] = ACTIONS(2193), - [anon_sym_import] = ACTIONS(2193), - [anon_sym_func] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2191), - [anon_sym_struct] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_RPAREN] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_RBRACE] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACK] = ACTIONS(2191), - [anon_sym_void] = ACTIONS(2193), - [anon_sym_anyopaque] = ACTIONS(2193), - [anon_sym_bool] = ACTIONS(2193), - [anon_sym_int] = ACTIONS(2193), - [anon_sym_float] = ACTIONS(2193), - [anon_sym_range] = ACTIONS(2193), - [anon_sym_i8] = ACTIONS(2193), - [anon_sym_i16] = ACTIONS(2193), - [anon_sym_i32] = ACTIONS(2193), - [anon_sym_i64] = ACTIONS(2193), - [anon_sym_u8] = ACTIONS(2193), - [anon_sym_u16] = ACTIONS(2193), - [anon_sym_u32] = ACTIONS(2193), - [anon_sym_u64] = ACTIONS(2193), - [anon_sym_isize] = ACTIONS(2193), - [anon_sym_usize] = ACTIONS(2193), - [anon_sym_f32] = ACTIONS(2193), - [anon_sym_f64] = ACTIONS(2193), - [anon_sym_c_char] = ACTIONS(2193), - [anon_sym_c_schar] = ACTIONS(2193), - [anon_sym_c_uchar] = ACTIONS(2193), - [anon_sym_c_short] = ACTIONS(2193), - [anon_sym_c_ushort] = ACTIONS(2193), - [anon_sym_c_int] = ACTIONS(2193), - [anon_sym_c_uint] = ACTIONS(2193), - [anon_sym_c_long] = ACTIONS(2193), - [anon_sym_c_ulong] = ACTIONS(2193), - [anon_sym_c_longlong] = ACTIONS(2193), - [anon_sym_c_ulonglong] = ACTIONS(2193), - [anon_sym_c_float] = ACTIONS(2193), - [anon_sym_c_double] = ACTIONS(2193), - [anon_sym_c_longdouble] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_defer] = ACTIONS(2193), - [anon_sym_errdefer] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_else] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_match] = ACTIONS(2193), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_none] = ACTIONS(2193), - [sym_undefined] = ACTIONS(2193), - [sym_sink] = ACTIONS(2193), - [sym_integer] = ACTIONS(2193), - [sym_float] = ACTIONS(2191), - [anon_sym_DQUOTE] = ACTIONS(2191), - [sym_multiline_string] = ACTIONS(2191), - [sym_character] = ACTIONS(2191), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2195), + [anon_sym_import] = ACTIONS(2195), + [anon_sym_func] = ACTIONS(2195), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_RPAREN] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_DOLLAR] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_void] = ACTIONS(2195), + [anon_sym_anyopaque] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_int] = ACTIONS(2195), + [anon_sym_float] = ACTIONS(2195), + [anon_sym_range] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_c_char] = ACTIONS(2195), + [anon_sym_c_schar] = ACTIONS(2195), + [anon_sym_c_uchar] = ACTIONS(2195), + [anon_sym_c_short] = ACTIONS(2195), + [anon_sym_c_ushort] = ACTIONS(2195), + [anon_sym_c_int] = ACTIONS(2195), + [anon_sym_c_uint] = ACTIONS(2195), + [anon_sym_c_long] = ACTIONS(2195), + [anon_sym_c_ulong] = ACTIONS(2195), + [anon_sym_c_longlong] = ACTIONS(2195), + [anon_sym_c_ulonglong] = ACTIONS(2195), + [anon_sym_c_float] = ACTIONS(2195), + [anon_sym_c_double] = ACTIONS(2195), + [anon_sym_c_longdouble] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_yield] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_defer] = ACTIONS(2195), + [anon_sym_errdefer] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_else] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_AMP] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2195), + [anon_sym_DOT] = ACTIONS(2193), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_none] = ACTIONS(2195), + [sym_undefined] = ACTIONS(2195), + [sym_sink] = ACTIONS(2195), + [sym_integer] = ACTIONS(2195), + [sym_float] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [sym_multiline_string] = ACTIONS(2193), + [sym_character] = ACTIONS(2193), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2191), + [sym__newline] = ACTIONS(2193), }, [STATE(1025)] = { - [ts_builtin_sym_end] = ACTIONS(2195), - [sym_identifier] = ACTIONS(2197), - [anon_sym_import] = ACTIONS(2197), - [anon_sym_func] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_RPAREN] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_DASH] = ACTIONS(2195), - [anon_sym_DOLLAR] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_void] = ACTIONS(2197), - [anon_sym_anyopaque] = ACTIONS(2197), - [anon_sym_bool] = ACTIONS(2197), - [anon_sym_int] = ACTIONS(2197), - [anon_sym_float] = ACTIONS(2197), - [anon_sym_range] = ACTIONS(2197), - [anon_sym_i8] = ACTIONS(2197), - [anon_sym_i16] = ACTIONS(2197), - [anon_sym_i32] = ACTIONS(2197), - [anon_sym_i64] = ACTIONS(2197), - [anon_sym_u8] = ACTIONS(2197), - [anon_sym_u16] = ACTIONS(2197), - [anon_sym_u32] = ACTIONS(2197), - [anon_sym_u64] = ACTIONS(2197), - [anon_sym_isize] = ACTIONS(2197), - [anon_sym_usize] = ACTIONS(2197), - [anon_sym_f32] = ACTIONS(2197), - [anon_sym_f64] = ACTIONS(2197), - [anon_sym_c_char] = ACTIONS(2197), - [anon_sym_c_schar] = ACTIONS(2197), - [anon_sym_c_uchar] = ACTIONS(2197), - [anon_sym_c_short] = ACTIONS(2197), - [anon_sym_c_ushort] = ACTIONS(2197), - [anon_sym_c_int] = ACTIONS(2197), - [anon_sym_c_uint] = ACTIONS(2197), - [anon_sym_c_long] = ACTIONS(2197), - [anon_sym_c_ulong] = ACTIONS(2197), - [anon_sym_c_longlong] = ACTIONS(2197), - [anon_sym_c_ulonglong] = ACTIONS(2197), - [anon_sym_c_float] = ACTIONS(2197), - [anon_sym_c_double] = ACTIONS(2197), - [anon_sym_c_longdouble] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_defer] = ACTIONS(2197), - [anon_sym_errdefer] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_else] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_match] = ACTIONS(2197), - [anon_sym_AMP] = ACTIONS(2195), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_DOT] = ACTIONS(2195), - [anon_sym_true] = ACTIONS(2197), - [anon_sym_false] = ACTIONS(2197), - [sym_none] = ACTIONS(2197), - [sym_undefined] = ACTIONS(2197), - [sym_sink] = ACTIONS(2197), - [sym_integer] = ACTIONS(2197), - [sym_float] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(2195), - [sym_multiline_string] = ACTIONS(2195), - [sym_character] = ACTIONS(2195), + [ts_builtin_sym_end] = ACTIONS(2197), + [sym_identifier] = ACTIONS(2199), + [anon_sym_import] = ACTIONS(2199), + [anon_sym_func] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_struct] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_RPAREN] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_DOLLAR] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2199), + [anon_sym_anyopaque] = ACTIONS(2199), + [anon_sym_bool] = ACTIONS(2199), + [anon_sym_int] = ACTIONS(2199), + [anon_sym_float] = ACTIONS(2199), + [anon_sym_range] = ACTIONS(2199), + [anon_sym_i8] = ACTIONS(2199), + [anon_sym_i16] = ACTIONS(2199), + [anon_sym_i32] = ACTIONS(2199), + [anon_sym_i64] = ACTIONS(2199), + [anon_sym_u8] = ACTIONS(2199), + [anon_sym_u16] = ACTIONS(2199), + [anon_sym_u32] = ACTIONS(2199), + [anon_sym_u64] = ACTIONS(2199), + [anon_sym_isize] = ACTIONS(2199), + [anon_sym_usize] = ACTIONS(2199), + [anon_sym_f32] = ACTIONS(2199), + [anon_sym_f64] = ACTIONS(2199), + [anon_sym_c_char] = ACTIONS(2199), + [anon_sym_c_schar] = ACTIONS(2199), + [anon_sym_c_uchar] = ACTIONS(2199), + [anon_sym_c_short] = ACTIONS(2199), + [anon_sym_c_ushort] = ACTIONS(2199), + [anon_sym_c_int] = ACTIONS(2199), + [anon_sym_c_uint] = ACTIONS(2199), + [anon_sym_c_long] = ACTIONS(2199), + [anon_sym_c_ulong] = ACTIONS(2199), + [anon_sym_c_longlong] = ACTIONS(2199), + [anon_sym_c_ulonglong] = ACTIONS(2199), + [anon_sym_c_float] = ACTIONS(2199), + [anon_sym_c_double] = ACTIONS(2199), + [anon_sym_c_longdouble] = ACTIONS(2199), + [anon_sym_return] = ACTIONS(2199), + [anon_sym_yield] = ACTIONS(2199), + [anon_sym_break] = ACTIONS(2199), + [anon_sym_continue] = ACTIONS(2199), + [anon_sym_defer] = ACTIONS(2199), + [anon_sym_errdefer] = ACTIONS(2199), + [anon_sym_if] = ACTIONS(2199), + [anon_sym_else] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [anon_sym_for] = ACTIONS(2199), + [anon_sym_match] = ACTIONS(2199), + [anon_sym_AMP] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2197), + [anon_sym_true] = ACTIONS(2199), + [anon_sym_false] = ACTIONS(2199), + [sym_none] = ACTIONS(2199), + [sym_undefined] = ACTIONS(2199), + [sym_sink] = ACTIONS(2199), + [sym_integer] = ACTIONS(2199), + [sym_float] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [sym_multiline_string] = ACTIONS(2197), + [sym_character] = ACTIONS(2197), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2195), + [sym__newline] = ACTIONS(2197), }, [STATE(1026)] = { - [ts_builtin_sym_end] = ACTIONS(2199), - [sym_identifier] = ACTIONS(2201), - [anon_sym_import] = ACTIONS(2201), - [anon_sym_func] = ACTIONS(2201), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_struct] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_RPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_void] = ACTIONS(2201), - [anon_sym_anyopaque] = ACTIONS(2201), - [anon_sym_bool] = ACTIONS(2201), - [anon_sym_int] = ACTIONS(2201), - [anon_sym_float] = ACTIONS(2201), - [anon_sym_range] = ACTIONS(2201), - [anon_sym_i8] = ACTIONS(2201), - [anon_sym_i16] = ACTIONS(2201), - [anon_sym_i32] = ACTIONS(2201), - [anon_sym_i64] = ACTIONS(2201), - [anon_sym_u8] = ACTIONS(2201), - [anon_sym_u16] = ACTIONS(2201), - [anon_sym_u32] = ACTIONS(2201), - [anon_sym_u64] = ACTIONS(2201), - [anon_sym_isize] = ACTIONS(2201), - [anon_sym_usize] = ACTIONS(2201), - [anon_sym_f32] = ACTIONS(2201), - [anon_sym_f64] = ACTIONS(2201), - [anon_sym_c_char] = ACTIONS(2201), - [anon_sym_c_schar] = ACTIONS(2201), - [anon_sym_c_uchar] = ACTIONS(2201), - [anon_sym_c_short] = ACTIONS(2201), - [anon_sym_c_ushort] = ACTIONS(2201), - [anon_sym_c_int] = ACTIONS(2201), - [anon_sym_c_uint] = ACTIONS(2201), - [anon_sym_c_long] = ACTIONS(2201), - [anon_sym_c_ulong] = ACTIONS(2201), - [anon_sym_c_longlong] = ACTIONS(2201), - [anon_sym_c_ulonglong] = ACTIONS(2201), - [anon_sym_c_float] = ACTIONS(2201), - [anon_sym_c_double] = ACTIONS(2201), - [anon_sym_c_longdouble] = ACTIONS(2201), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_yield] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_defer] = ACTIONS(2201), - [anon_sym_errdefer] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_else] = ACTIONS(2201), - [anon_sym_while] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_match] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_try] = ACTIONS(2201), - [anon_sym_DOT] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(2201), - [anon_sym_false] = ACTIONS(2201), - [sym_none] = ACTIONS(2201), - [sym_undefined] = ACTIONS(2201), - [sym_sink] = ACTIONS(2201), - [sym_integer] = ACTIONS(2201), - [sym_float] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(2199), - [sym_multiline_string] = ACTIONS(2199), - [sym_character] = ACTIONS(2199), + [ts_builtin_sym_end] = ACTIONS(2201), + [sym_identifier] = ACTIONS(2203), + [anon_sym_import] = ACTIONS(2203), + [anon_sym_func] = ACTIONS(2203), + [anon_sym_BANG] = ACTIONS(2201), + [anon_sym_struct] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2201), + [anon_sym_RPAREN] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_RBRACE] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2201), + [anon_sym_void] = ACTIONS(2203), + [anon_sym_anyopaque] = ACTIONS(2203), + [anon_sym_bool] = ACTIONS(2203), + [anon_sym_int] = ACTIONS(2203), + [anon_sym_float] = ACTIONS(2203), + [anon_sym_range] = ACTIONS(2203), + [anon_sym_i8] = ACTIONS(2203), + [anon_sym_i16] = ACTIONS(2203), + [anon_sym_i32] = ACTIONS(2203), + [anon_sym_i64] = ACTIONS(2203), + [anon_sym_u8] = ACTIONS(2203), + [anon_sym_u16] = ACTIONS(2203), + [anon_sym_u32] = ACTIONS(2203), + [anon_sym_u64] = ACTIONS(2203), + [anon_sym_isize] = ACTIONS(2203), + [anon_sym_usize] = ACTIONS(2203), + [anon_sym_f32] = ACTIONS(2203), + [anon_sym_f64] = ACTIONS(2203), + [anon_sym_c_char] = ACTIONS(2203), + [anon_sym_c_schar] = ACTIONS(2203), + [anon_sym_c_uchar] = ACTIONS(2203), + [anon_sym_c_short] = ACTIONS(2203), + [anon_sym_c_ushort] = ACTIONS(2203), + [anon_sym_c_int] = ACTIONS(2203), + [anon_sym_c_uint] = ACTIONS(2203), + [anon_sym_c_long] = ACTIONS(2203), + [anon_sym_c_ulong] = ACTIONS(2203), + [anon_sym_c_longlong] = ACTIONS(2203), + [anon_sym_c_ulonglong] = ACTIONS(2203), + [anon_sym_c_float] = ACTIONS(2203), + [anon_sym_c_double] = ACTIONS(2203), + [anon_sym_c_longdouble] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2203), + [anon_sym_yield] = ACTIONS(2203), + [anon_sym_break] = ACTIONS(2203), + [anon_sym_continue] = ACTIONS(2203), + [anon_sym_defer] = ACTIONS(2203), + [anon_sym_errdefer] = ACTIONS(2203), + [anon_sym_if] = ACTIONS(2203), + [anon_sym_else] = ACTIONS(2203), + [anon_sym_while] = ACTIONS(2203), + [anon_sym_for] = ACTIONS(2203), + [anon_sym_match] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2201), + [anon_sym_try] = ACTIONS(2203), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(2203), + [anon_sym_false] = ACTIONS(2203), + [sym_none] = ACTIONS(2203), + [sym_undefined] = ACTIONS(2203), + [sym_sink] = ACTIONS(2203), + [sym_integer] = ACTIONS(2203), + [sym_float] = ACTIONS(2201), + [anon_sym_DQUOTE] = ACTIONS(2201), + [sym_multiline_string] = ACTIONS(2201), + [sym_character] = ACTIONS(2201), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2199), + [sym__newline] = ACTIONS(2201), }, [STATE(1027)] = { - [ts_builtin_sym_end] = ACTIONS(2203), - [sym_identifier] = ACTIONS(2205), - [anon_sym_import] = ACTIONS(2205), - [anon_sym_func] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_struct] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_DOLLAR] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(2205), - [anon_sym_anyopaque] = ACTIONS(2205), - [anon_sym_bool] = ACTIONS(2205), - [anon_sym_int] = ACTIONS(2205), - [anon_sym_float] = ACTIONS(2205), - [anon_sym_range] = ACTIONS(2205), - [anon_sym_i8] = ACTIONS(2205), - [anon_sym_i16] = ACTIONS(2205), - [anon_sym_i32] = ACTIONS(2205), - [anon_sym_i64] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2205), - [anon_sym_u16] = ACTIONS(2205), - [anon_sym_u32] = ACTIONS(2205), - [anon_sym_u64] = ACTIONS(2205), - [anon_sym_isize] = ACTIONS(2205), - [anon_sym_usize] = ACTIONS(2205), - [anon_sym_f32] = ACTIONS(2205), - [anon_sym_f64] = ACTIONS(2205), - [anon_sym_c_char] = ACTIONS(2205), - [anon_sym_c_schar] = ACTIONS(2205), - [anon_sym_c_uchar] = ACTIONS(2205), - [anon_sym_c_short] = ACTIONS(2205), - [anon_sym_c_ushort] = ACTIONS(2205), - [anon_sym_c_int] = ACTIONS(2205), - [anon_sym_c_uint] = ACTIONS(2205), - [anon_sym_c_long] = ACTIONS(2205), - [anon_sym_c_ulong] = ACTIONS(2205), - [anon_sym_c_longlong] = ACTIONS(2205), - [anon_sym_c_ulonglong] = ACTIONS(2205), - [anon_sym_c_float] = ACTIONS(2205), - [anon_sym_c_double] = ACTIONS(2205), - [anon_sym_c_longdouble] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_defer] = ACTIONS(2205), - [anon_sym_errdefer] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_else] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_match] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_DOT] = ACTIONS(2203), - [anon_sym_true] = ACTIONS(2205), - [anon_sym_false] = ACTIONS(2205), - [sym_none] = ACTIONS(2205), - [sym_undefined] = ACTIONS(2205), - [sym_sink] = ACTIONS(2205), - [sym_integer] = ACTIONS(2205), - [sym_float] = ACTIONS(2203), - [anon_sym_DQUOTE] = ACTIONS(2203), - [sym_multiline_string] = ACTIONS(2203), - [sym_character] = ACTIONS(2203), + [ts_builtin_sym_end] = ACTIONS(2205), + [sym_identifier] = ACTIONS(2207), + [anon_sym_import] = ACTIONS(2207), + [anon_sym_func] = ACTIONS(2207), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_struct] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_RPAREN] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_void] = ACTIONS(2207), + [anon_sym_anyopaque] = ACTIONS(2207), + [anon_sym_bool] = ACTIONS(2207), + [anon_sym_int] = ACTIONS(2207), + [anon_sym_float] = ACTIONS(2207), + [anon_sym_range] = ACTIONS(2207), + [anon_sym_i8] = ACTIONS(2207), + [anon_sym_i16] = ACTIONS(2207), + [anon_sym_i32] = ACTIONS(2207), + [anon_sym_i64] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2207), + [anon_sym_u16] = ACTIONS(2207), + [anon_sym_u32] = ACTIONS(2207), + [anon_sym_u64] = ACTIONS(2207), + [anon_sym_isize] = ACTIONS(2207), + [anon_sym_usize] = ACTIONS(2207), + [anon_sym_f32] = ACTIONS(2207), + [anon_sym_f64] = ACTIONS(2207), + [anon_sym_c_char] = ACTIONS(2207), + [anon_sym_c_schar] = ACTIONS(2207), + [anon_sym_c_uchar] = ACTIONS(2207), + [anon_sym_c_short] = ACTIONS(2207), + [anon_sym_c_ushort] = ACTIONS(2207), + [anon_sym_c_int] = ACTIONS(2207), + [anon_sym_c_uint] = ACTIONS(2207), + [anon_sym_c_long] = ACTIONS(2207), + [anon_sym_c_ulong] = ACTIONS(2207), + [anon_sym_c_longlong] = ACTIONS(2207), + [anon_sym_c_ulonglong] = ACTIONS(2207), + [anon_sym_c_float] = ACTIONS(2207), + [anon_sym_c_double] = ACTIONS(2207), + [anon_sym_c_longdouble] = ACTIONS(2207), + [anon_sym_return] = ACTIONS(2207), + [anon_sym_yield] = ACTIONS(2207), + [anon_sym_break] = ACTIONS(2207), + [anon_sym_continue] = ACTIONS(2207), + [anon_sym_defer] = ACTIONS(2207), + [anon_sym_errdefer] = ACTIONS(2207), + [anon_sym_if] = ACTIONS(2207), + [anon_sym_else] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2207), + [anon_sym_for] = ACTIONS(2207), + [anon_sym_match] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2205), + [anon_sym_true] = ACTIONS(2207), + [anon_sym_false] = ACTIONS(2207), + [sym_none] = ACTIONS(2207), + [sym_undefined] = ACTIONS(2207), + [sym_sink] = ACTIONS(2207), + [sym_integer] = ACTIONS(2207), + [sym_float] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(2205), + [sym_multiline_string] = ACTIONS(2205), + [sym_character] = ACTIONS(2205), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2203), + [sym__newline] = ACTIONS(2205), }, [STATE(1028)] = { - [ts_builtin_sym_end] = ACTIONS(2207), - [sym_identifier] = ACTIONS(2209), - [anon_sym_import] = ACTIONS(2209), - [anon_sym_func] = ACTIONS(2209), - [anon_sym_BANG] = ACTIONS(2207), - [anon_sym_struct] = ACTIONS(2209), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_RPAREN] = ACTIONS(2207), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2207), - [anon_sym_void] = ACTIONS(2209), - [anon_sym_anyopaque] = ACTIONS(2209), - [anon_sym_bool] = ACTIONS(2209), - [anon_sym_int] = ACTIONS(2209), - [anon_sym_float] = ACTIONS(2209), - [anon_sym_range] = ACTIONS(2209), - [anon_sym_i8] = ACTIONS(2209), - [anon_sym_i16] = ACTIONS(2209), - [anon_sym_i32] = ACTIONS(2209), - [anon_sym_i64] = ACTIONS(2209), - [anon_sym_u8] = ACTIONS(2209), - [anon_sym_u16] = ACTIONS(2209), - [anon_sym_u32] = ACTIONS(2209), - [anon_sym_u64] = ACTIONS(2209), - [anon_sym_isize] = ACTIONS(2209), - [anon_sym_usize] = ACTIONS(2209), - [anon_sym_f32] = ACTIONS(2209), - [anon_sym_f64] = ACTIONS(2209), - [anon_sym_c_char] = ACTIONS(2209), - [anon_sym_c_schar] = ACTIONS(2209), - [anon_sym_c_uchar] = ACTIONS(2209), - [anon_sym_c_short] = ACTIONS(2209), - [anon_sym_c_ushort] = ACTIONS(2209), - [anon_sym_c_int] = ACTIONS(2209), - [anon_sym_c_uint] = ACTIONS(2209), - [anon_sym_c_long] = ACTIONS(2209), - [anon_sym_c_ulong] = ACTIONS(2209), - [anon_sym_c_longlong] = ACTIONS(2209), - [anon_sym_c_ulonglong] = ACTIONS(2209), - [anon_sym_c_float] = ACTIONS(2209), - [anon_sym_c_double] = ACTIONS(2209), - [anon_sym_c_longdouble] = ACTIONS(2209), - [anon_sym_return] = ACTIONS(2209), - [anon_sym_yield] = ACTIONS(2209), - [anon_sym_break] = ACTIONS(2209), - [anon_sym_continue] = ACTIONS(2209), - [anon_sym_defer] = ACTIONS(2209), - [anon_sym_errdefer] = ACTIONS(2209), - [anon_sym_if] = ACTIONS(2209), - [anon_sym_else] = ACTIONS(2209), - [anon_sym_while] = ACTIONS(2209), - [anon_sym_for] = ACTIONS(2209), - [anon_sym_match] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2207), - [anon_sym_try] = ACTIONS(2209), - [anon_sym_DOT] = ACTIONS(2207), - [anon_sym_true] = ACTIONS(2209), - [anon_sym_false] = ACTIONS(2209), - [sym_none] = ACTIONS(2209), - [sym_undefined] = ACTIONS(2209), - [sym_sink] = ACTIONS(2209), - [sym_integer] = ACTIONS(2209), - [sym_float] = ACTIONS(2207), - [anon_sym_DQUOTE] = ACTIONS(2207), - [sym_multiline_string] = ACTIONS(2207), - [sym_character] = ACTIONS(2207), + [ts_builtin_sym_end] = ACTIONS(2209), + [sym_identifier] = ACTIONS(2211), + [anon_sym_import] = ACTIONS(2211), + [anon_sym_func] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(2209), + [anon_sym_struct] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym_RPAREN] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2209), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_void] = ACTIONS(2211), + [anon_sym_anyopaque] = ACTIONS(2211), + [anon_sym_bool] = ACTIONS(2211), + [anon_sym_int] = ACTIONS(2211), + [anon_sym_float] = ACTIONS(2211), + [anon_sym_range] = ACTIONS(2211), + [anon_sym_i8] = ACTIONS(2211), + [anon_sym_i16] = ACTIONS(2211), + [anon_sym_i32] = ACTIONS(2211), + [anon_sym_i64] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2211), + [anon_sym_u16] = ACTIONS(2211), + [anon_sym_u32] = ACTIONS(2211), + [anon_sym_u64] = ACTIONS(2211), + [anon_sym_isize] = ACTIONS(2211), + [anon_sym_usize] = ACTIONS(2211), + [anon_sym_f32] = ACTIONS(2211), + [anon_sym_f64] = ACTIONS(2211), + [anon_sym_c_char] = ACTIONS(2211), + [anon_sym_c_schar] = ACTIONS(2211), + [anon_sym_c_uchar] = ACTIONS(2211), + [anon_sym_c_short] = ACTIONS(2211), + [anon_sym_c_ushort] = ACTIONS(2211), + [anon_sym_c_int] = ACTIONS(2211), + [anon_sym_c_uint] = ACTIONS(2211), + [anon_sym_c_long] = ACTIONS(2211), + [anon_sym_c_ulong] = ACTIONS(2211), + [anon_sym_c_longlong] = ACTIONS(2211), + [anon_sym_c_ulonglong] = ACTIONS(2211), + [anon_sym_c_float] = ACTIONS(2211), + [anon_sym_c_double] = ACTIONS(2211), + [anon_sym_c_longdouble] = ACTIONS(2211), + [anon_sym_return] = ACTIONS(2211), + [anon_sym_yield] = ACTIONS(2211), + [anon_sym_break] = ACTIONS(2211), + [anon_sym_continue] = ACTIONS(2211), + [anon_sym_defer] = ACTIONS(2211), + [anon_sym_errdefer] = ACTIONS(2211), + [anon_sym_if] = ACTIONS(2211), + [anon_sym_else] = ACTIONS(2211), + [anon_sym_while] = ACTIONS(2211), + [anon_sym_for] = ACTIONS(2211), + [anon_sym_match] = ACTIONS(2211), + [anon_sym_AMP] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_true] = ACTIONS(2211), + [anon_sym_false] = ACTIONS(2211), + [sym_none] = ACTIONS(2211), + [sym_undefined] = ACTIONS(2211), + [sym_sink] = ACTIONS(2211), + [sym_integer] = ACTIONS(2211), + [sym_float] = ACTIONS(2209), + [anon_sym_DQUOTE] = ACTIONS(2209), + [sym_multiline_string] = ACTIONS(2209), + [sym_character] = ACTIONS(2209), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2207), + [sym__newline] = ACTIONS(2209), }, [STATE(1029)] = { - [ts_builtin_sym_end] = ACTIONS(2211), - [sym_identifier] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_func] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_struct] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_RPAREN] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_DASH] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2211), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_void] = ACTIONS(2213), - [anon_sym_anyopaque] = ACTIONS(2213), - [anon_sym_bool] = ACTIONS(2213), - [anon_sym_int] = ACTIONS(2213), - [anon_sym_float] = ACTIONS(2213), - [anon_sym_range] = ACTIONS(2213), - [anon_sym_i8] = ACTIONS(2213), - [anon_sym_i16] = ACTIONS(2213), - [anon_sym_i32] = ACTIONS(2213), - [anon_sym_i64] = ACTIONS(2213), - [anon_sym_u8] = ACTIONS(2213), - [anon_sym_u16] = ACTIONS(2213), - [anon_sym_u32] = ACTIONS(2213), - [anon_sym_u64] = ACTIONS(2213), - [anon_sym_isize] = ACTIONS(2213), - [anon_sym_usize] = ACTIONS(2213), - [anon_sym_f32] = ACTIONS(2213), - [anon_sym_f64] = ACTIONS(2213), - [anon_sym_c_char] = ACTIONS(2213), - [anon_sym_c_schar] = ACTIONS(2213), - [anon_sym_c_uchar] = ACTIONS(2213), - [anon_sym_c_short] = ACTIONS(2213), - [anon_sym_c_ushort] = ACTIONS(2213), - [anon_sym_c_int] = ACTIONS(2213), - [anon_sym_c_uint] = ACTIONS(2213), - [anon_sym_c_long] = ACTIONS(2213), - [anon_sym_c_ulong] = ACTIONS(2213), - [anon_sym_c_longlong] = ACTIONS(2213), - [anon_sym_c_ulonglong] = ACTIONS(2213), - [anon_sym_c_float] = ACTIONS(2213), - [anon_sym_c_double] = ACTIONS(2213), - [anon_sym_c_longdouble] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_defer] = ACTIONS(2213), - [anon_sym_errdefer] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_else] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_match] = ACTIONS(2213), - [anon_sym_AMP] = ACTIONS(2211), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_DOT] = ACTIONS(2211), - [anon_sym_true] = ACTIONS(2213), - [anon_sym_false] = ACTIONS(2213), - [sym_none] = ACTIONS(2213), - [sym_undefined] = ACTIONS(2213), - [sym_sink] = ACTIONS(2213), - [sym_integer] = ACTIONS(2213), - [sym_float] = ACTIONS(2211), - [anon_sym_DQUOTE] = ACTIONS(2211), - [sym_multiline_string] = ACTIONS(2211), - [sym_character] = ACTIONS(2211), + [ts_builtin_sym_end] = ACTIONS(2213), + [sym_identifier] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_func] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_struct] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_DOLLAR] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_void] = ACTIONS(2215), + [anon_sym_anyopaque] = ACTIONS(2215), + [anon_sym_bool] = ACTIONS(2215), + [anon_sym_int] = ACTIONS(2215), + [anon_sym_float] = ACTIONS(2215), + [anon_sym_range] = ACTIONS(2215), + [anon_sym_i8] = ACTIONS(2215), + [anon_sym_i16] = ACTIONS(2215), + [anon_sym_i32] = ACTIONS(2215), + [anon_sym_i64] = ACTIONS(2215), + [anon_sym_u8] = ACTIONS(2215), + [anon_sym_u16] = ACTIONS(2215), + [anon_sym_u32] = ACTIONS(2215), + [anon_sym_u64] = ACTIONS(2215), + [anon_sym_isize] = ACTIONS(2215), + [anon_sym_usize] = ACTIONS(2215), + [anon_sym_f32] = ACTIONS(2215), + [anon_sym_f64] = ACTIONS(2215), + [anon_sym_c_char] = ACTIONS(2215), + [anon_sym_c_schar] = ACTIONS(2215), + [anon_sym_c_uchar] = ACTIONS(2215), + [anon_sym_c_short] = ACTIONS(2215), + [anon_sym_c_ushort] = ACTIONS(2215), + [anon_sym_c_int] = ACTIONS(2215), + [anon_sym_c_uint] = ACTIONS(2215), + [anon_sym_c_long] = ACTIONS(2215), + [anon_sym_c_ulong] = ACTIONS(2215), + [anon_sym_c_longlong] = ACTIONS(2215), + [anon_sym_c_ulonglong] = ACTIONS(2215), + [anon_sym_c_float] = ACTIONS(2215), + [anon_sym_c_double] = ACTIONS(2215), + [anon_sym_c_longdouble] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_defer] = ACTIONS(2215), + [anon_sym_errdefer] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_match] = ACTIONS(2215), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [sym_none] = ACTIONS(2215), + [sym_undefined] = ACTIONS(2215), + [sym_sink] = ACTIONS(2215), + [sym_integer] = ACTIONS(2215), + [sym_float] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2213), + [sym_multiline_string] = ACTIONS(2213), + [sym_character] = ACTIONS(2213), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2211), + [sym__newline] = ACTIONS(2213), }, [STATE(1030)] = { - [ts_builtin_sym_end] = ACTIONS(2215), - [sym_identifier] = ACTIONS(2217), - [anon_sym_import] = ACTIONS(2217), - [anon_sym_func] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2215), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_RPAREN] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_DOLLAR] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_void] = ACTIONS(2217), - [anon_sym_anyopaque] = ACTIONS(2217), - [anon_sym_bool] = ACTIONS(2217), - [anon_sym_int] = ACTIONS(2217), - [anon_sym_float] = ACTIONS(2217), - [anon_sym_range] = ACTIONS(2217), - [anon_sym_i8] = ACTIONS(2217), - [anon_sym_i16] = ACTIONS(2217), - [anon_sym_i32] = ACTIONS(2217), - [anon_sym_i64] = ACTIONS(2217), - [anon_sym_u8] = ACTIONS(2217), - [anon_sym_u16] = ACTIONS(2217), - [anon_sym_u32] = ACTIONS(2217), - [anon_sym_u64] = ACTIONS(2217), - [anon_sym_isize] = ACTIONS(2217), - [anon_sym_usize] = ACTIONS(2217), - [anon_sym_f32] = ACTIONS(2217), - [anon_sym_f64] = ACTIONS(2217), - [anon_sym_c_char] = ACTIONS(2217), - [anon_sym_c_schar] = ACTIONS(2217), - [anon_sym_c_uchar] = ACTIONS(2217), - [anon_sym_c_short] = ACTIONS(2217), - [anon_sym_c_ushort] = ACTIONS(2217), - [anon_sym_c_int] = ACTIONS(2217), - [anon_sym_c_uint] = ACTIONS(2217), - [anon_sym_c_long] = ACTIONS(2217), - [anon_sym_c_ulong] = ACTIONS(2217), - [anon_sym_c_longlong] = ACTIONS(2217), - [anon_sym_c_ulonglong] = ACTIONS(2217), - [anon_sym_c_float] = ACTIONS(2217), - [anon_sym_c_double] = ACTIONS(2217), - [anon_sym_c_longdouble] = ACTIONS(2217), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_yield] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_defer] = ACTIONS(2217), - [anon_sym_errdefer] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_else] = ACTIONS(2217), - [anon_sym_while] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_match] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2215), - [anon_sym_try] = ACTIONS(2217), - [anon_sym_DOT] = ACTIONS(2215), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_none] = ACTIONS(2217), - [sym_undefined] = ACTIONS(2217), - [sym_sink] = ACTIONS(2217), - [sym_integer] = ACTIONS(2217), - [sym_float] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(2215), - [sym_multiline_string] = ACTIONS(2215), - [sym_character] = ACTIONS(2215), + [ts_builtin_sym_end] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2219), + [anon_sym_import] = ACTIONS(2219), + [anon_sym_func] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2217), + [anon_sym_struct] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_RPAREN] = ACTIONS(2217), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2217), + [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_void] = ACTIONS(2219), + [anon_sym_anyopaque] = ACTIONS(2219), + [anon_sym_bool] = ACTIONS(2219), + [anon_sym_int] = ACTIONS(2219), + [anon_sym_float] = ACTIONS(2219), + [anon_sym_range] = ACTIONS(2219), + [anon_sym_i8] = ACTIONS(2219), + [anon_sym_i16] = ACTIONS(2219), + [anon_sym_i32] = ACTIONS(2219), + [anon_sym_i64] = ACTIONS(2219), + [anon_sym_u8] = ACTIONS(2219), + [anon_sym_u16] = ACTIONS(2219), + [anon_sym_u32] = ACTIONS(2219), + [anon_sym_u64] = ACTIONS(2219), + [anon_sym_isize] = ACTIONS(2219), + [anon_sym_usize] = ACTIONS(2219), + [anon_sym_f32] = ACTIONS(2219), + [anon_sym_f64] = ACTIONS(2219), + [anon_sym_c_char] = ACTIONS(2219), + [anon_sym_c_schar] = ACTIONS(2219), + [anon_sym_c_uchar] = ACTIONS(2219), + [anon_sym_c_short] = ACTIONS(2219), + [anon_sym_c_ushort] = ACTIONS(2219), + [anon_sym_c_int] = ACTIONS(2219), + [anon_sym_c_uint] = ACTIONS(2219), + [anon_sym_c_long] = ACTIONS(2219), + [anon_sym_c_ulong] = ACTIONS(2219), + [anon_sym_c_longlong] = ACTIONS(2219), + [anon_sym_c_ulonglong] = ACTIONS(2219), + [anon_sym_c_float] = ACTIONS(2219), + [anon_sym_c_double] = ACTIONS(2219), + [anon_sym_c_longdouble] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_yield] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_defer] = ACTIONS(2219), + [anon_sym_errdefer] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_else] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_AMP] = ACTIONS(2217), + [anon_sym_try] = ACTIONS(2219), + [anon_sym_DOT] = ACTIONS(2217), + [anon_sym_true] = ACTIONS(2219), + [anon_sym_false] = ACTIONS(2219), + [sym_none] = ACTIONS(2219), + [sym_undefined] = ACTIONS(2219), + [sym_sink] = ACTIONS(2219), + [sym_integer] = ACTIONS(2219), + [sym_float] = ACTIONS(2217), + [anon_sym_DQUOTE] = ACTIONS(2217), + [sym_multiline_string] = ACTIONS(2217), + [sym_character] = ACTIONS(2217), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2215), + [sym__newline] = ACTIONS(2217), }, [STATE(1031)] = { - [ts_builtin_sym_end] = ACTIONS(2219), - [sym_identifier] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_func] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_struct] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_RPAREN] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_RBRACE] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_DOLLAR] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_anyopaque] = ACTIONS(2221), - [anon_sym_bool] = ACTIONS(2221), - [anon_sym_int] = ACTIONS(2221), - [anon_sym_float] = ACTIONS(2221), - [anon_sym_range] = ACTIONS(2221), - [anon_sym_i8] = ACTIONS(2221), - [anon_sym_i16] = ACTIONS(2221), - [anon_sym_i32] = ACTIONS(2221), - [anon_sym_i64] = ACTIONS(2221), - [anon_sym_u8] = ACTIONS(2221), - [anon_sym_u16] = ACTIONS(2221), - [anon_sym_u32] = ACTIONS(2221), - [anon_sym_u64] = ACTIONS(2221), - [anon_sym_isize] = ACTIONS(2221), - [anon_sym_usize] = ACTIONS(2221), - [anon_sym_f32] = ACTIONS(2221), - [anon_sym_f64] = ACTIONS(2221), - [anon_sym_c_char] = ACTIONS(2221), - [anon_sym_c_schar] = ACTIONS(2221), - [anon_sym_c_uchar] = ACTIONS(2221), - [anon_sym_c_short] = ACTIONS(2221), - [anon_sym_c_ushort] = ACTIONS(2221), - [anon_sym_c_int] = ACTIONS(2221), - [anon_sym_c_uint] = ACTIONS(2221), - [anon_sym_c_long] = ACTIONS(2221), - [anon_sym_c_ulong] = ACTIONS(2221), - [anon_sym_c_longlong] = ACTIONS(2221), - [anon_sym_c_ulonglong] = ACTIONS(2221), - [anon_sym_c_float] = ACTIONS(2221), - [anon_sym_c_double] = ACTIONS(2221), - [anon_sym_c_longdouble] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_defer] = ACTIONS(2221), - [anon_sym_errdefer] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_else] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_match] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_DOT] = ACTIONS(2219), - [anon_sym_true] = ACTIONS(2221), - [anon_sym_false] = ACTIONS(2221), - [sym_none] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [sym_sink] = ACTIONS(2221), - [sym_integer] = ACTIONS(2221), - [sym_float] = ACTIONS(2219), - [anon_sym_DQUOTE] = ACTIONS(2219), - [sym_multiline_string] = ACTIONS(2219), - [sym_character] = ACTIONS(2219), + [ts_builtin_sym_end] = ACTIONS(2221), + [sym_identifier] = ACTIONS(2223), + [anon_sym_import] = ACTIONS(2223), + [anon_sym_func] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_struct] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_RPAREN] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_DOLLAR] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_void] = ACTIONS(2223), + [anon_sym_anyopaque] = ACTIONS(2223), + [anon_sym_bool] = ACTIONS(2223), + [anon_sym_int] = ACTIONS(2223), + [anon_sym_float] = ACTIONS(2223), + [anon_sym_range] = ACTIONS(2223), + [anon_sym_i8] = ACTIONS(2223), + [anon_sym_i16] = ACTIONS(2223), + [anon_sym_i32] = ACTIONS(2223), + [anon_sym_i64] = ACTIONS(2223), + [anon_sym_u8] = ACTIONS(2223), + [anon_sym_u16] = ACTIONS(2223), + [anon_sym_u32] = ACTIONS(2223), + [anon_sym_u64] = ACTIONS(2223), + [anon_sym_isize] = ACTIONS(2223), + [anon_sym_usize] = ACTIONS(2223), + [anon_sym_f32] = ACTIONS(2223), + [anon_sym_f64] = ACTIONS(2223), + [anon_sym_c_char] = ACTIONS(2223), + [anon_sym_c_schar] = ACTIONS(2223), + [anon_sym_c_uchar] = ACTIONS(2223), + [anon_sym_c_short] = ACTIONS(2223), + [anon_sym_c_ushort] = ACTIONS(2223), + [anon_sym_c_int] = ACTIONS(2223), + [anon_sym_c_uint] = ACTIONS(2223), + [anon_sym_c_long] = ACTIONS(2223), + [anon_sym_c_ulong] = ACTIONS(2223), + [anon_sym_c_longlong] = ACTIONS(2223), + [anon_sym_c_ulonglong] = ACTIONS(2223), + [anon_sym_c_float] = ACTIONS(2223), + [anon_sym_c_double] = ACTIONS(2223), + [anon_sym_c_longdouble] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2223), + [anon_sym_yield] = ACTIONS(2223), + [anon_sym_break] = ACTIONS(2223), + [anon_sym_continue] = ACTIONS(2223), + [anon_sym_defer] = ACTIONS(2223), + [anon_sym_errdefer] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_else] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_match] = ACTIONS(2223), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2223), + [anon_sym_DOT] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2223), + [anon_sym_false] = ACTIONS(2223), + [sym_none] = ACTIONS(2223), + [sym_undefined] = ACTIONS(2223), + [sym_sink] = ACTIONS(2223), + [sym_integer] = ACTIONS(2223), + [sym_float] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [sym_multiline_string] = ACTIONS(2221), + [sym_character] = ACTIONS(2221), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2219), + [sym__newline] = ACTIONS(2221), }, [STATE(1032)] = { - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2225), - [anon_sym_import] = ACTIONS(2225), - [anon_sym_func] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_struct] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_RPAREN] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_void] = ACTIONS(2225), - [anon_sym_anyopaque] = ACTIONS(2225), - [anon_sym_bool] = ACTIONS(2225), - [anon_sym_int] = ACTIONS(2225), - [anon_sym_float] = ACTIONS(2225), - [anon_sym_range] = ACTIONS(2225), - [anon_sym_i8] = ACTIONS(2225), - [anon_sym_i16] = ACTIONS(2225), - [anon_sym_i32] = ACTIONS(2225), - [anon_sym_i64] = ACTIONS(2225), - [anon_sym_u8] = ACTIONS(2225), - [anon_sym_u16] = ACTIONS(2225), - [anon_sym_u32] = ACTIONS(2225), - [anon_sym_u64] = ACTIONS(2225), - [anon_sym_isize] = ACTIONS(2225), - [anon_sym_usize] = ACTIONS(2225), - [anon_sym_f32] = ACTIONS(2225), - [anon_sym_f64] = ACTIONS(2225), - [anon_sym_c_char] = ACTIONS(2225), - [anon_sym_c_schar] = ACTIONS(2225), - [anon_sym_c_uchar] = ACTIONS(2225), - [anon_sym_c_short] = ACTIONS(2225), - [anon_sym_c_ushort] = ACTIONS(2225), - [anon_sym_c_int] = ACTIONS(2225), - [anon_sym_c_uint] = ACTIONS(2225), - [anon_sym_c_long] = ACTIONS(2225), - [anon_sym_c_ulong] = ACTIONS(2225), - [anon_sym_c_longlong] = ACTIONS(2225), - [anon_sym_c_ulonglong] = ACTIONS(2225), - [anon_sym_c_float] = ACTIONS(2225), - [anon_sym_c_double] = ACTIONS(2225), - [anon_sym_c_longdouble] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_defer] = ACTIONS(2225), - [anon_sym_errdefer] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_else] = ACTIONS(2225), - [anon_sym_while] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_match] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_true] = ACTIONS(2225), - [anon_sym_false] = ACTIONS(2225), - [sym_none] = ACTIONS(2225), - [sym_undefined] = ACTIONS(2225), - [sym_sink] = ACTIONS(2225), - [sym_integer] = ACTIONS(2225), - [sym_float] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [sym_multiline_string] = ACTIONS(2223), - [sym_character] = ACTIONS(2223), + [ts_builtin_sym_end] = ACTIONS(2225), + [sym_identifier] = ACTIONS(2227), + [anon_sym_import] = ACTIONS(2227), + [anon_sym_func] = ACTIONS(2227), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_RPAREN] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_DOLLAR] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_void] = ACTIONS(2227), + [anon_sym_anyopaque] = ACTIONS(2227), + [anon_sym_bool] = ACTIONS(2227), + [anon_sym_int] = ACTIONS(2227), + [anon_sym_float] = ACTIONS(2227), + [anon_sym_range] = ACTIONS(2227), + [anon_sym_i8] = ACTIONS(2227), + [anon_sym_i16] = ACTIONS(2227), + [anon_sym_i32] = ACTIONS(2227), + [anon_sym_i64] = ACTIONS(2227), + [anon_sym_u8] = ACTIONS(2227), + [anon_sym_u16] = ACTIONS(2227), + [anon_sym_u32] = ACTIONS(2227), + [anon_sym_u64] = ACTIONS(2227), + [anon_sym_isize] = ACTIONS(2227), + [anon_sym_usize] = ACTIONS(2227), + [anon_sym_f32] = ACTIONS(2227), + [anon_sym_f64] = ACTIONS(2227), + [anon_sym_c_char] = ACTIONS(2227), + [anon_sym_c_schar] = ACTIONS(2227), + [anon_sym_c_uchar] = ACTIONS(2227), + [anon_sym_c_short] = ACTIONS(2227), + [anon_sym_c_ushort] = ACTIONS(2227), + [anon_sym_c_int] = ACTIONS(2227), + [anon_sym_c_uint] = ACTIONS(2227), + [anon_sym_c_long] = ACTIONS(2227), + [anon_sym_c_ulong] = ACTIONS(2227), + [anon_sym_c_longlong] = ACTIONS(2227), + [anon_sym_c_ulonglong] = ACTIONS(2227), + [anon_sym_c_float] = ACTIONS(2227), + [anon_sym_c_double] = ACTIONS(2227), + [anon_sym_c_longdouble] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2227), + [anon_sym_yield] = ACTIONS(2227), + [anon_sym_break] = ACTIONS(2227), + [anon_sym_continue] = ACTIONS(2227), + [anon_sym_defer] = ACTIONS(2227), + [anon_sym_errdefer] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_else] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2227), + [anon_sym_for] = ACTIONS(2227), + [anon_sym_match] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2227), + [anon_sym_DOT] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_none] = ACTIONS(2227), + [sym_undefined] = ACTIONS(2227), + [sym_sink] = ACTIONS(2227), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2225), + [sym_multiline_string] = ACTIONS(2225), + [sym_character] = ACTIONS(2225), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2223), + [sym__newline] = ACTIONS(2225), }, [STATE(1033)] = { - [ts_builtin_sym_end] = ACTIONS(2227), - [sym_identifier] = ACTIONS(2229), - [anon_sym_import] = ACTIONS(2229), - [anon_sym_func] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2227), - [anon_sym_struct] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_RPAREN] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_DASH] = ACTIONS(2227), - [anon_sym_DOLLAR] = ACTIONS(2227), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_void] = ACTIONS(2229), - [anon_sym_anyopaque] = ACTIONS(2229), - [anon_sym_bool] = ACTIONS(2229), - [anon_sym_int] = ACTIONS(2229), - [anon_sym_float] = ACTIONS(2229), - [anon_sym_range] = ACTIONS(2229), - [anon_sym_i8] = ACTIONS(2229), - [anon_sym_i16] = ACTIONS(2229), - [anon_sym_i32] = ACTIONS(2229), - [anon_sym_i64] = ACTIONS(2229), - [anon_sym_u8] = ACTIONS(2229), - [anon_sym_u16] = ACTIONS(2229), - [anon_sym_u32] = ACTIONS(2229), - [anon_sym_u64] = ACTIONS(2229), - [anon_sym_isize] = ACTIONS(2229), - [anon_sym_usize] = ACTIONS(2229), - [anon_sym_f32] = ACTIONS(2229), - [anon_sym_f64] = ACTIONS(2229), - [anon_sym_c_char] = ACTIONS(2229), - [anon_sym_c_schar] = ACTIONS(2229), - [anon_sym_c_uchar] = ACTIONS(2229), - [anon_sym_c_short] = ACTIONS(2229), - [anon_sym_c_ushort] = ACTIONS(2229), - [anon_sym_c_int] = ACTIONS(2229), - [anon_sym_c_uint] = ACTIONS(2229), - [anon_sym_c_long] = ACTIONS(2229), - [anon_sym_c_ulong] = ACTIONS(2229), - [anon_sym_c_longlong] = ACTIONS(2229), - [anon_sym_c_ulonglong] = ACTIONS(2229), - [anon_sym_c_float] = ACTIONS(2229), - [anon_sym_c_double] = ACTIONS(2229), - [anon_sym_c_longdouble] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_yield] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_defer] = ACTIONS(2229), - [anon_sym_errdefer] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_else] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_AMP] = ACTIONS(2227), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2227), - [anon_sym_true] = ACTIONS(2229), - [anon_sym_false] = ACTIONS(2229), - [sym_none] = ACTIONS(2229), - [sym_undefined] = ACTIONS(2229), - [sym_sink] = ACTIONS(2229), - [sym_integer] = ACTIONS(2229), - [sym_float] = ACTIONS(2227), - [anon_sym_DQUOTE] = ACTIONS(2227), - [sym_multiline_string] = ACTIONS(2227), - [sym_character] = ACTIONS(2227), + [ts_builtin_sym_end] = ACTIONS(2229), + [sym_identifier] = ACTIONS(2231), + [anon_sym_import] = ACTIONS(2231), + [anon_sym_func] = ACTIONS(2231), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_struct] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_void] = ACTIONS(2231), + [anon_sym_anyopaque] = ACTIONS(2231), + [anon_sym_bool] = ACTIONS(2231), + [anon_sym_int] = ACTIONS(2231), + [anon_sym_float] = ACTIONS(2231), + [anon_sym_range] = ACTIONS(2231), + [anon_sym_i8] = ACTIONS(2231), + [anon_sym_i16] = ACTIONS(2231), + [anon_sym_i32] = ACTIONS(2231), + [anon_sym_i64] = ACTIONS(2231), + [anon_sym_u8] = ACTIONS(2231), + [anon_sym_u16] = ACTIONS(2231), + [anon_sym_u32] = ACTIONS(2231), + [anon_sym_u64] = ACTIONS(2231), + [anon_sym_isize] = ACTIONS(2231), + [anon_sym_usize] = ACTIONS(2231), + [anon_sym_f32] = ACTIONS(2231), + [anon_sym_f64] = ACTIONS(2231), + [anon_sym_c_char] = ACTIONS(2231), + [anon_sym_c_schar] = ACTIONS(2231), + [anon_sym_c_uchar] = ACTIONS(2231), + [anon_sym_c_short] = ACTIONS(2231), + [anon_sym_c_ushort] = ACTIONS(2231), + [anon_sym_c_int] = ACTIONS(2231), + [anon_sym_c_uint] = ACTIONS(2231), + [anon_sym_c_long] = ACTIONS(2231), + [anon_sym_c_ulong] = ACTIONS(2231), + [anon_sym_c_longlong] = ACTIONS(2231), + [anon_sym_c_ulonglong] = ACTIONS(2231), + [anon_sym_c_float] = ACTIONS(2231), + [anon_sym_c_double] = ACTIONS(2231), + [anon_sym_c_longdouble] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(2231), + [anon_sym_continue] = ACTIONS(2231), + [anon_sym_defer] = ACTIONS(2231), + [anon_sym_errdefer] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_else] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_AMP] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2231), + [anon_sym_false] = ACTIONS(2231), + [sym_none] = ACTIONS(2231), + [sym_undefined] = ACTIONS(2231), + [sym_sink] = ACTIONS(2231), + [sym_integer] = ACTIONS(2231), + [sym_float] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym_multiline_string] = ACTIONS(2229), + [sym_character] = ACTIONS(2229), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2227), + [sym__newline] = ACTIONS(2229), }, [STATE(1034)] = { - [ts_builtin_sym_end] = ACTIONS(2231), - [sym_identifier] = ACTIONS(2233), - [anon_sym_import] = ACTIONS(2233), - [anon_sym_func] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2231), - [anon_sym_struct] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_RPAREN] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2231), - [anon_sym_RBRACE] = ACTIONS(2231), - [anon_sym_DASH] = ACTIONS(2231), - [anon_sym_DOLLAR] = ACTIONS(2231), - [anon_sym_LBRACK] = ACTIONS(2231), - [anon_sym_void] = ACTIONS(2233), - [anon_sym_anyopaque] = ACTIONS(2233), - [anon_sym_bool] = ACTIONS(2233), - [anon_sym_int] = ACTIONS(2233), - [anon_sym_float] = ACTIONS(2233), - [anon_sym_range] = ACTIONS(2233), - [anon_sym_i8] = ACTIONS(2233), - [anon_sym_i16] = ACTIONS(2233), - [anon_sym_i32] = ACTIONS(2233), - [anon_sym_i64] = ACTIONS(2233), - [anon_sym_u8] = ACTIONS(2233), - [anon_sym_u16] = ACTIONS(2233), - [anon_sym_u32] = ACTIONS(2233), - [anon_sym_u64] = ACTIONS(2233), - [anon_sym_isize] = ACTIONS(2233), - [anon_sym_usize] = ACTIONS(2233), - [anon_sym_f32] = ACTIONS(2233), - [anon_sym_f64] = ACTIONS(2233), - [anon_sym_c_char] = ACTIONS(2233), - [anon_sym_c_schar] = ACTIONS(2233), - [anon_sym_c_uchar] = ACTIONS(2233), - [anon_sym_c_short] = ACTIONS(2233), - [anon_sym_c_ushort] = ACTIONS(2233), - [anon_sym_c_int] = ACTIONS(2233), - [anon_sym_c_uint] = ACTIONS(2233), - [anon_sym_c_long] = ACTIONS(2233), - [anon_sym_c_ulong] = ACTIONS(2233), - [anon_sym_c_longlong] = ACTIONS(2233), - [anon_sym_c_ulonglong] = ACTIONS(2233), - [anon_sym_c_float] = ACTIONS(2233), - [anon_sym_c_double] = ACTIONS(2233), - [anon_sym_c_longdouble] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_yield] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_defer] = ACTIONS(2233), - [anon_sym_errdefer] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_else] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_match] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2231), - [anon_sym_try] = ACTIONS(2233), - [anon_sym_DOT] = ACTIONS(2231), - [anon_sym_true] = ACTIONS(2233), - [anon_sym_false] = ACTIONS(2233), - [sym_none] = ACTIONS(2233), - [sym_undefined] = ACTIONS(2233), - [sym_sink] = ACTIONS(2233), - [sym_integer] = ACTIONS(2233), - [sym_float] = ACTIONS(2231), - [anon_sym_DQUOTE] = ACTIONS(2231), - [sym_multiline_string] = ACTIONS(2231), - [sym_character] = ACTIONS(2231), + [ts_builtin_sym_end] = ACTIONS(2233), + [sym_identifier] = ACTIONS(2235), + [anon_sym_import] = ACTIONS(2235), + [anon_sym_func] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2233), + [anon_sym_struct] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2233), + [anon_sym_RPAREN] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_DOLLAR] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_void] = ACTIONS(2235), + [anon_sym_anyopaque] = ACTIONS(2235), + [anon_sym_bool] = ACTIONS(2235), + [anon_sym_int] = ACTIONS(2235), + [anon_sym_float] = ACTIONS(2235), + [anon_sym_range] = ACTIONS(2235), + [anon_sym_i8] = ACTIONS(2235), + [anon_sym_i16] = ACTIONS(2235), + [anon_sym_i32] = ACTIONS(2235), + [anon_sym_i64] = ACTIONS(2235), + [anon_sym_u8] = ACTIONS(2235), + [anon_sym_u16] = ACTIONS(2235), + [anon_sym_u32] = ACTIONS(2235), + [anon_sym_u64] = ACTIONS(2235), + [anon_sym_isize] = ACTIONS(2235), + [anon_sym_usize] = ACTIONS(2235), + [anon_sym_f32] = ACTIONS(2235), + [anon_sym_f64] = ACTIONS(2235), + [anon_sym_c_char] = ACTIONS(2235), + [anon_sym_c_schar] = ACTIONS(2235), + [anon_sym_c_uchar] = ACTIONS(2235), + [anon_sym_c_short] = ACTIONS(2235), + [anon_sym_c_ushort] = ACTIONS(2235), + [anon_sym_c_int] = ACTIONS(2235), + [anon_sym_c_uint] = ACTIONS(2235), + [anon_sym_c_long] = ACTIONS(2235), + [anon_sym_c_ulong] = ACTIONS(2235), + [anon_sym_c_longlong] = ACTIONS(2235), + [anon_sym_c_ulonglong] = ACTIONS(2235), + [anon_sym_c_float] = ACTIONS(2235), + [anon_sym_c_double] = ACTIONS(2235), + [anon_sym_c_longdouble] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_yield] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_defer] = ACTIONS(2235), + [anon_sym_errdefer] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_AMP] = ACTIONS(2233), + [anon_sym_try] = ACTIONS(2235), + [anon_sym_DOT] = ACTIONS(2233), + [anon_sym_true] = ACTIONS(2235), + [anon_sym_false] = ACTIONS(2235), + [sym_none] = ACTIONS(2235), + [sym_undefined] = ACTIONS(2235), + [sym_sink] = ACTIONS(2235), + [sym_integer] = ACTIONS(2235), + [sym_float] = ACTIONS(2233), + [anon_sym_DQUOTE] = ACTIONS(2233), + [sym_multiline_string] = ACTIONS(2233), + [sym_character] = ACTIONS(2233), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2231), + [sym__newline] = ACTIONS(2233), }, [STATE(1035)] = { - [ts_builtin_sym_end] = ACTIONS(2235), - [sym_identifier] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_func] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2235), - [anon_sym_RPAREN] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_RBRACE] = ACTIONS(2235), - [anon_sym_DASH] = ACTIONS(2235), - [anon_sym_DOLLAR] = ACTIONS(2235), - [anon_sym_LBRACK] = ACTIONS(2235), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_anyopaque] = ACTIONS(2237), - [anon_sym_bool] = ACTIONS(2237), - [anon_sym_int] = ACTIONS(2237), - [anon_sym_float] = ACTIONS(2237), - [anon_sym_range] = ACTIONS(2237), - [anon_sym_i8] = ACTIONS(2237), - [anon_sym_i16] = ACTIONS(2237), - [anon_sym_i32] = ACTIONS(2237), - [anon_sym_i64] = ACTIONS(2237), - [anon_sym_u8] = ACTIONS(2237), - [anon_sym_u16] = ACTIONS(2237), - [anon_sym_u32] = ACTIONS(2237), - [anon_sym_u64] = ACTIONS(2237), - [anon_sym_isize] = ACTIONS(2237), - [anon_sym_usize] = ACTIONS(2237), - [anon_sym_f32] = ACTIONS(2237), - [anon_sym_f64] = ACTIONS(2237), - [anon_sym_c_char] = ACTIONS(2237), - [anon_sym_c_schar] = ACTIONS(2237), - [anon_sym_c_uchar] = ACTIONS(2237), - [anon_sym_c_short] = ACTIONS(2237), - [anon_sym_c_ushort] = ACTIONS(2237), - [anon_sym_c_int] = ACTIONS(2237), - [anon_sym_c_uint] = ACTIONS(2237), - [anon_sym_c_long] = ACTIONS(2237), - [anon_sym_c_ulong] = ACTIONS(2237), - [anon_sym_c_longlong] = ACTIONS(2237), - [anon_sym_c_ulonglong] = ACTIONS(2237), - [anon_sym_c_float] = ACTIONS(2237), - [anon_sym_c_double] = ACTIONS(2237), - [anon_sym_c_longdouble] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_defer] = ACTIONS(2237), - [anon_sym_errdefer] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_else] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_match] = ACTIONS(2237), - [anon_sym_AMP] = ACTIONS(2235), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_DOT] = ACTIONS(2235), - [anon_sym_true] = ACTIONS(2237), - [anon_sym_false] = ACTIONS(2237), - [sym_none] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [sym_sink] = ACTIONS(2237), - [sym_integer] = ACTIONS(2237), - [sym_float] = ACTIONS(2235), - [anon_sym_DQUOTE] = ACTIONS(2235), - [sym_multiline_string] = ACTIONS(2235), - [sym_character] = ACTIONS(2235), + [ts_builtin_sym_end] = ACTIONS(2237), + [sym_identifier] = ACTIONS(2239), + [anon_sym_import] = ACTIONS(2239), + [anon_sym_func] = ACTIONS(2239), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_RPAREN] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_DOLLAR] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2237), + [anon_sym_void] = ACTIONS(2239), + [anon_sym_anyopaque] = ACTIONS(2239), + [anon_sym_bool] = ACTIONS(2239), + [anon_sym_int] = ACTIONS(2239), + [anon_sym_float] = ACTIONS(2239), + [anon_sym_range] = ACTIONS(2239), + [anon_sym_i8] = ACTIONS(2239), + [anon_sym_i16] = ACTIONS(2239), + [anon_sym_i32] = ACTIONS(2239), + [anon_sym_i64] = ACTIONS(2239), + [anon_sym_u8] = ACTIONS(2239), + [anon_sym_u16] = ACTIONS(2239), + [anon_sym_u32] = ACTIONS(2239), + [anon_sym_u64] = ACTIONS(2239), + [anon_sym_isize] = ACTIONS(2239), + [anon_sym_usize] = ACTIONS(2239), + [anon_sym_f32] = ACTIONS(2239), + [anon_sym_f64] = ACTIONS(2239), + [anon_sym_c_char] = ACTIONS(2239), + [anon_sym_c_schar] = ACTIONS(2239), + [anon_sym_c_uchar] = ACTIONS(2239), + [anon_sym_c_short] = ACTIONS(2239), + [anon_sym_c_ushort] = ACTIONS(2239), + [anon_sym_c_int] = ACTIONS(2239), + [anon_sym_c_uint] = ACTIONS(2239), + [anon_sym_c_long] = ACTIONS(2239), + [anon_sym_c_ulong] = ACTIONS(2239), + [anon_sym_c_longlong] = ACTIONS(2239), + [anon_sym_c_ulonglong] = ACTIONS(2239), + [anon_sym_c_float] = ACTIONS(2239), + [anon_sym_c_double] = ACTIONS(2239), + [anon_sym_c_longdouble] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_yield] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_defer] = ACTIONS(2239), + [anon_sym_errdefer] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_else] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_match] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2239), + [anon_sym_DOT] = ACTIONS(2237), + [anon_sym_true] = ACTIONS(2239), + [anon_sym_false] = ACTIONS(2239), + [sym_none] = ACTIONS(2239), + [sym_undefined] = ACTIONS(2239), + [sym_sink] = ACTIONS(2239), + [sym_integer] = ACTIONS(2239), + [sym_float] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2237), + [sym_multiline_string] = ACTIONS(2237), + [sym_character] = ACTIONS(2237), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2235), + [sym__newline] = ACTIONS(2237), }, [STATE(1036)] = { - [ts_builtin_sym_end] = ACTIONS(2239), - [sym_identifier] = ACTIONS(2241), - [anon_sym_import] = ACTIONS(2241), - [anon_sym_func] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_RPAREN] = ACTIONS(2239), - [anon_sym_LBRACE] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DOLLAR] = ACTIONS(2239), - [anon_sym_LBRACK] = ACTIONS(2239), - [anon_sym_void] = ACTIONS(2241), - [anon_sym_anyopaque] = ACTIONS(2241), - [anon_sym_bool] = ACTIONS(2241), - [anon_sym_int] = ACTIONS(2241), - [anon_sym_float] = ACTIONS(2241), - [anon_sym_range] = ACTIONS(2241), - [anon_sym_i8] = ACTIONS(2241), - [anon_sym_i16] = ACTIONS(2241), - [anon_sym_i32] = ACTIONS(2241), - [anon_sym_i64] = ACTIONS(2241), - [anon_sym_u8] = ACTIONS(2241), - [anon_sym_u16] = ACTIONS(2241), - [anon_sym_u32] = ACTIONS(2241), - [anon_sym_u64] = ACTIONS(2241), - [anon_sym_isize] = ACTIONS(2241), - [anon_sym_usize] = ACTIONS(2241), - [anon_sym_f32] = ACTIONS(2241), - [anon_sym_f64] = ACTIONS(2241), - [anon_sym_c_char] = ACTIONS(2241), - [anon_sym_c_schar] = ACTIONS(2241), - [anon_sym_c_uchar] = ACTIONS(2241), - [anon_sym_c_short] = ACTIONS(2241), - [anon_sym_c_ushort] = ACTIONS(2241), - [anon_sym_c_int] = ACTIONS(2241), - [anon_sym_c_uint] = ACTIONS(2241), - [anon_sym_c_long] = ACTIONS(2241), - [anon_sym_c_ulong] = ACTIONS(2241), - [anon_sym_c_longlong] = ACTIONS(2241), - [anon_sym_c_ulonglong] = ACTIONS(2241), - [anon_sym_c_float] = ACTIONS(2241), - [anon_sym_c_double] = ACTIONS(2241), - [anon_sym_c_longdouble] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_yield] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_defer] = ACTIONS(2241), - [anon_sym_errdefer] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_else] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_match] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2239), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(2239), - [anon_sym_true] = ACTIONS(2241), - [anon_sym_false] = ACTIONS(2241), - [sym_none] = ACTIONS(2241), - [sym_undefined] = ACTIONS(2241), - [sym_sink] = ACTIONS(2241), - [sym_integer] = ACTIONS(2241), - [sym_float] = ACTIONS(2239), - [anon_sym_DQUOTE] = ACTIONS(2239), - [sym_multiline_string] = ACTIONS(2239), - [sym_character] = ACTIONS(2239), + [ts_builtin_sym_end] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2243), + [anon_sym_import] = 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_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_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_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(2239), + [sym__newline] = ACTIONS(2241), }, [STATE(1037)] = { - [ts_builtin_sym_end] = ACTIONS(2243), - [sym_identifier] = ACTIONS(2245), - [anon_sym_import] = ACTIONS(2245), - [anon_sym_func] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_struct] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_RPAREN] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_RBRACE] = ACTIONS(2243), - [anon_sym_DASH] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2243), - [anon_sym_void] = ACTIONS(2245), - [anon_sym_anyopaque] = ACTIONS(2245), - [anon_sym_bool] = ACTIONS(2245), - [anon_sym_int] = ACTIONS(2245), - [anon_sym_float] = ACTIONS(2245), - [anon_sym_range] = ACTIONS(2245), - [anon_sym_i8] = ACTIONS(2245), - [anon_sym_i16] = ACTIONS(2245), - [anon_sym_i32] = ACTIONS(2245), - [anon_sym_i64] = ACTIONS(2245), - [anon_sym_u8] = ACTIONS(2245), - [anon_sym_u16] = ACTIONS(2245), - [anon_sym_u32] = ACTIONS(2245), - [anon_sym_u64] = ACTIONS(2245), - [anon_sym_isize] = ACTIONS(2245), - [anon_sym_usize] = ACTIONS(2245), - [anon_sym_f32] = ACTIONS(2245), - [anon_sym_f64] = ACTIONS(2245), - [anon_sym_c_char] = ACTIONS(2245), - [anon_sym_c_schar] = ACTIONS(2245), - [anon_sym_c_uchar] = ACTIONS(2245), - [anon_sym_c_short] = ACTIONS(2245), - [anon_sym_c_ushort] = ACTIONS(2245), - [anon_sym_c_int] = ACTIONS(2245), - [anon_sym_c_uint] = ACTIONS(2245), - [anon_sym_c_long] = ACTIONS(2245), - [anon_sym_c_ulong] = ACTIONS(2245), - [anon_sym_c_longlong] = ACTIONS(2245), - [anon_sym_c_ulonglong] = ACTIONS(2245), - [anon_sym_c_float] = ACTIONS(2245), - [anon_sym_c_double] = ACTIONS(2245), - [anon_sym_c_longdouble] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_yield] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_defer] = ACTIONS(2245), - [anon_sym_errdefer] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_else] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_AMP] = ACTIONS(2243), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_DOT] = ACTIONS(2243), - [anon_sym_true] = ACTIONS(2245), - [anon_sym_false] = ACTIONS(2245), - [sym_none] = ACTIONS(2245), - [sym_undefined] = ACTIONS(2245), - [sym_sink] = ACTIONS(2245), - [sym_integer] = ACTIONS(2245), - [sym_float] = ACTIONS(2243), - [anon_sym_DQUOTE] = ACTIONS(2243), - [sym_multiline_string] = ACTIONS(2243), - [sym_character] = ACTIONS(2243), + [ts_builtin_sym_end] = ACTIONS(2245), + [sym_identifier] = ACTIONS(2247), + [anon_sym_import] = ACTIONS(2247), + [anon_sym_func] = ACTIONS(2247), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_struct] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_RPAREN] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_DOLLAR] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2245), + [anon_sym_void] = ACTIONS(2247), + [anon_sym_anyopaque] = ACTIONS(2247), + [anon_sym_bool] = ACTIONS(2247), + [anon_sym_int] = ACTIONS(2247), + [anon_sym_float] = ACTIONS(2247), + [anon_sym_range] = ACTIONS(2247), + [anon_sym_i8] = ACTIONS(2247), + [anon_sym_i16] = ACTIONS(2247), + [anon_sym_i32] = ACTIONS(2247), + [anon_sym_i64] = ACTIONS(2247), + [anon_sym_u8] = ACTIONS(2247), + [anon_sym_u16] = ACTIONS(2247), + [anon_sym_u32] = ACTIONS(2247), + [anon_sym_u64] = ACTIONS(2247), + [anon_sym_isize] = ACTIONS(2247), + [anon_sym_usize] = ACTIONS(2247), + [anon_sym_f32] = ACTIONS(2247), + [anon_sym_f64] = ACTIONS(2247), + [anon_sym_c_char] = ACTIONS(2247), + [anon_sym_c_schar] = ACTIONS(2247), + [anon_sym_c_uchar] = ACTIONS(2247), + [anon_sym_c_short] = ACTIONS(2247), + [anon_sym_c_ushort] = ACTIONS(2247), + [anon_sym_c_int] = ACTIONS(2247), + [anon_sym_c_uint] = ACTIONS(2247), + [anon_sym_c_long] = ACTIONS(2247), + [anon_sym_c_ulong] = ACTIONS(2247), + [anon_sym_c_longlong] = ACTIONS(2247), + [anon_sym_c_ulonglong] = ACTIONS(2247), + [anon_sym_c_float] = ACTIONS(2247), + [anon_sym_c_double] = ACTIONS(2247), + [anon_sym_c_longdouble] = ACTIONS(2247), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2247), + [anon_sym_break] = ACTIONS(2247), + [anon_sym_continue] = ACTIONS(2247), + [anon_sym_defer] = ACTIONS(2247), + [anon_sym_errdefer] = ACTIONS(2247), + [anon_sym_if] = ACTIONS(2247), + [anon_sym_else] = ACTIONS(2247), + [anon_sym_while] = ACTIONS(2247), + [anon_sym_for] = ACTIONS(2247), + [anon_sym_match] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2247), + [anon_sym_DOT] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(2247), + [anon_sym_false] = ACTIONS(2247), + [sym_none] = ACTIONS(2247), + [sym_undefined] = ACTIONS(2247), + [sym_sink] = ACTIONS(2247), + [sym_integer] = ACTIONS(2247), + [sym_float] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_multiline_string] = ACTIONS(2245), + [sym_character] = ACTIONS(2245), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2243), + [sym__newline] = ACTIONS(2245), }, [STATE(1038)] = { - [ts_builtin_sym_end] = ACTIONS(2247), - [sym_identifier] = ACTIONS(2249), - [anon_sym_import] = 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_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_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_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), + [ts_builtin_sym_end] = ACTIONS(2249), + [sym_identifier] = ACTIONS(2251), + [anon_sym_import] = ACTIONS(2251), + [anon_sym_func] = ACTIONS(2251), + [anon_sym_BANG] = ACTIONS(2249), + [anon_sym_struct] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_RPAREN] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_DOLLAR] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_void] = ACTIONS(2251), + [anon_sym_anyopaque] = ACTIONS(2251), + [anon_sym_bool] = ACTIONS(2251), + [anon_sym_int] = ACTIONS(2251), + [anon_sym_float] = ACTIONS(2251), + [anon_sym_range] = ACTIONS(2251), + [anon_sym_i8] = ACTIONS(2251), + [anon_sym_i16] = ACTIONS(2251), + [anon_sym_i32] = ACTIONS(2251), + [anon_sym_i64] = ACTIONS(2251), + [anon_sym_u8] = ACTIONS(2251), + [anon_sym_u16] = ACTIONS(2251), + [anon_sym_u32] = ACTIONS(2251), + [anon_sym_u64] = ACTIONS(2251), + [anon_sym_isize] = ACTIONS(2251), + [anon_sym_usize] = ACTIONS(2251), + [anon_sym_f32] = ACTIONS(2251), + [anon_sym_f64] = ACTIONS(2251), + [anon_sym_c_char] = ACTIONS(2251), + [anon_sym_c_schar] = ACTIONS(2251), + [anon_sym_c_uchar] = ACTIONS(2251), + [anon_sym_c_short] = ACTIONS(2251), + [anon_sym_c_ushort] = ACTIONS(2251), + [anon_sym_c_int] = ACTIONS(2251), + [anon_sym_c_uint] = ACTIONS(2251), + [anon_sym_c_long] = ACTIONS(2251), + [anon_sym_c_ulong] = ACTIONS(2251), + [anon_sym_c_longlong] = ACTIONS(2251), + [anon_sym_c_ulonglong] = ACTIONS(2251), + [anon_sym_c_float] = ACTIONS(2251), + [anon_sym_c_double] = ACTIONS(2251), + [anon_sym_c_longdouble] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_yield] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_defer] = ACTIONS(2251), + [anon_sym_errdefer] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_else] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_match] = ACTIONS(2251), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2251), + [anon_sym_DOT] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(2251), + [anon_sym_false] = ACTIONS(2251), + [sym_none] = ACTIONS(2251), + [sym_undefined] = ACTIONS(2251), + [sym_sink] = ACTIONS(2251), + [sym_integer] = ACTIONS(2251), + [sym_float] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2249), + [sym_multiline_string] = ACTIONS(2249), + [sym_character] = ACTIONS(2249), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2247), + [sym__newline] = ACTIONS(2249), }, [STATE(1039)] = { - [ts_builtin_sym_end] = ACTIONS(2251), - [sym_identifier] = ACTIONS(2253), - [anon_sym_import] = ACTIONS(2253), - [anon_sym_func] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_struct] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_RPAREN] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_DOLLAR] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_void] = ACTIONS(2253), - [anon_sym_anyopaque] = ACTIONS(2253), - [anon_sym_bool] = ACTIONS(2253), - [anon_sym_int] = ACTIONS(2253), - [anon_sym_float] = ACTIONS(2253), - [anon_sym_range] = ACTIONS(2253), - [anon_sym_i8] = ACTIONS(2253), - [anon_sym_i16] = ACTIONS(2253), - [anon_sym_i32] = ACTIONS(2253), - [anon_sym_i64] = ACTIONS(2253), - [anon_sym_u8] = ACTIONS(2253), - [anon_sym_u16] = ACTIONS(2253), - [anon_sym_u32] = ACTIONS(2253), - [anon_sym_u64] = ACTIONS(2253), - [anon_sym_isize] = ACTIONS(2253), - [anon_sym_usize] = ACTIONS(2253), - [anon_sym_f32] = ACTIONS(2253), - [anon_sym_f64] = ACTIONS(2253), - [anon_sym_c_char] = ACTIONS(2253), - [anon_sym_c_schar] = ACTIONS(2253), - [anon_sym_c_uchar] = ACTIONS(2253), - [anon_sym_c_short] = ACTIONS(2253), - [anon_sym_c_ushort] = ACTIONS(2253), - [anon_sym_c_int] = ACTIONS(2253), - [anon_sym_c_uint] = ACTIONS(2253), - [anon_sym_c_long] = ACTIONS(2253), - [anon_sym_c_ulong] = ACTIONS(2253), - [anon_sym_c_longlong] = ACTIONS(2253), - [anon_sym_c_ulonglong] = ACTIONS(2253), - [anon_sym_c_float] = ACTIONS(2253), - [anon_sym_c_double] = ACTIONS(2253), - [anon_sym_c_longdouble] = ACTIONS(2253), - [anon_sym_return] = ACTIONS(2253), - [anon_sym_yield] = ACTIONS(2253), - [anon_sym_break] = ACTIONS(2253), - [anon_sym_continue] = ACTIONS(2253), - [anon_sym_defer] = ACTIONS(2253), - [anon_sym_errdefer] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_else] = ACTIONS(2253), - [anon_sym_while] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2253), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2253), - [anon_sym_DOT] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(2253), - [anon_sym_false] = ACTIONS(2253), - [sym_none] = ACTIONS(2253), - [sym_undefined] = ACTIONS(2253), - [sym_sink] = ACTIONS(2253), - [sym_integer] = ACTIONS(2253), - [sym_float] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [sym_multiline_string] = ACTIONS(2251), - [sym_character] = ACTIONS(2251), + [ts_builtin_sym_end] = ACTIONS(2253), + [sym_identifier] = ACTIONS(2255), + [anon_sym_import] = 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_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_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_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2251), + [sym__newline] = ACTIONS(2253), }, [STATE(1040)] = { - [ts_builtin_sym_end] = ACTIONS(2255), - [sym_identifier] = ACTIONS(2257), - [anon_sym_import] = ACTIONS(2257), - [anon_sym_func] = ACTIONS(2257), - [anon_sym_BANG] = ACTIONS(2255), - [anon_sym_struct] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_RPAREN] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_DOLLAR] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_void] = ACTIONS(2257), - [anon_sym_anyopaque] = ACTIONS(2257), - [anon_sym_bool] = ACTIONS(2257), - [anon_sym_int] = ACTIONS(2257), - [anon_sym_float] = ACTIONS(2257), - [anon_sym_range] = ACTIONS(2257), - [anon_sym_i8] = ACTIONS(2257), - [anon_sym_i16] = ACTIONS(2257), - [anon_sym_i32] = ACTIONS(2257), - [anon_sym_i64] = ACTIONS(2257), - [anon_sym_u8] = ACTIONS(2257), - [anon_sym_u16] = ACTIONS(2257), - [anon_sym_u32] = ACTIONS(2257), - [anon_sym_u64] = ACTIONS(2257), - [anon_sym_isize] = ACTIONS(2257), - [anon_sym_usize] = ACTIONS(2257), - [anon_sym_f32] = ACTIONS(2257), - [anon_sym_f64] = ACTIONS(2257), - [anon_sym_c_char] = ACTIONS(2257), - [anon_sym_c_schar] = ACTIONS(2257), - [anon_sym_c_uchar] = ACTIONS(2257), - [anon_sym_c_short] = ACTIONS(2257), - [anon_sym_c_ushort] = ACTIONS(2257), - [anon_sym_c_int] = ACTIONS(2257), - [anon_sym_c_uint] = ACTIONS(2257), - [anon_sym_c_long] = ACTIONS(2257), - [anon_sym_c_ulong] = ACTIONS(2257), - [anon_sym_c_longlong] = ACTIONS(2257), - [anon_sym_c_ulonglong] = ACTIONS(2257), - [anon_sym_c_float] = ACTIONS(2257), - [anon_sym_c_double] = ACTIONS(2257), - [anon_sym_c_longdouble] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_yield] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_defer] = ACTIONS(2257), - [anon_sym_errdefer] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_else] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_match] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2255), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_DOT] = ACTIONS(2255), - [anon_sym_true] = ACTIONS(2257), - [anon_sym_false] = ACTIONS(2257), - [sym_none] = ACTIONS(2257), - [sym_undefined] = ACTIONS(2257), - [sym_sink] = ACTIONS(2257), - [sym_integer] = ACTIONS(2257), - [sym_float] = ACTIONS(2255), - [anon_sym_DQUOTE] = ACTIONS(2255), - [sym_multiline_string] = ACTIONS(2255), - [sym_character] = ACTIONS(2255), + [ts_builtin_sym_end] = ACTIONS(2257), + [sym_identifier] = ACTIONS(2259), + [anon_sym_import] = 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_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_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(2255), + [sym__newline] = ACTIONS(2257), }, [STATE(1041)] = { - [ts_builtin_sym_end] = ACTIONS(2259), - [sym_identifier] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(2261), - [anon_sym_func] = ACTIONS(2261), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_struct] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_RPAREN] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2259), - [anon_sym_DOLLAR] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_void] = ACTIONS(2261), - [anon_sym_anyopaque] = ACTIONS(2261), - [anon_sym_bool] = ACTIONS(2261), - [anon_sym_int] = ACTIONS(2261), - [anon_sym_float] = ACTIONS(2261), - [anon_sym_range] = ACTIONS(2261), - [anon_sym_i8] = ACTIONS(2261), - [anon_sym_i16] = ACTIONS(2261), - [anon_sym_i32] = ACTIONS(2261), - [anon_sym_i64] = ACTIONS(2261), - [anon_sym_u8] = ACTIONS(2261), - [anon_sym_u16] = ACTIONS(2261), - [anon_sym_u32] = ACTIONS(2261), - [anon_sym_u64] = ACTIONS(2261), - [anon_sym_isize] = ACTIONS(2261), - [anon_sym_usize] = ACTIONS(2261), - [anon_sym_f32] = ACTIONS(2261), - [anon_sym_f64] = ACTIONS(2261), - [anon_sym_c_char] = ACTIONS(2261), - [anon_sym_c_schar] = ACTIONS(2261), - [anon_sym_c_uchar] = ACTIONS(2261), - [anon_sym_c_short] = ACTIONS(2261), - [anon_sym_c_ushort] = ACTIONS(2261), - [anon_sym_c_int] = ACTIONS(2261), - [anon_sym_c_uint] = ACTIONS(2261), - [anon_sym_c_long] = ACTIONS(2261), - [anon_sym_c_ulong] = ACTIONS(2261), - [anon_sym_c_longlong] = ACTIONS(2261), - [anon_sym_c_ulonglong] = ACTIONS(2261), - [anon_sym_c_float] = ACTIONS(2261), - [anon_sym_c_double] = ACTIONS(2261), - [anon_sym_c_longdouble] = ACTIONS(2261), - [anon_sym_return] = ACTIONS(2261), - [anon_sym_yield] = ACTIONS(2261), - [anon_sym_break] = ACTIONS(2261), - [anon_sym_continue] = ACTIONS(2261), - [anon_sym_defer] = ACTIONS(2261), - [anon_sym_errdefer] = ACTIONS(2261), - [anon_sym_if] = ACTIONS(2261), - [anon_sym_else] = ACTIONS(2261), - [anon_sym_while] = ACTIONS(2261), - [anon_sym_for] = ACTIONS(2261), - [anon_sym_match] = ACTIONS(2261), - [anon_sym_AMP] = ACTIONS(2259), - [anon_sym_try] = ACTIONS(2261), - [anon_sym_DOT] = ACTIONS(2259), - [anon_sym_true] = ACTIONS(2261), - [anon_sym_false] = ACTIONS(2261), - [sym_none] = ACTIONS(2261), - [sym_undefined] = ACTIONS(2261), - [sym_sink] = ACTIONS(2261), - [sym_integer] = ACTIONS(2261), - [sym_float] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2259), - [sym_multiline_string] = ACTIONS(2259), - [sym_character] = ACTIONS(2259), + [ts_builtin_sym_end] = ACTIONS(2261), + [sym_identifier] = ACTIONS(2263), + [anon_sym_import] = 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_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_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(2259), + [sym__newline] = ACTIONS(2261), }, [STATE(1042)] = { - [ts_builtin_sym_end] = ACTIONS(2263), - [sym_identifier] = ACTIONS(2265), - [anon_sym_import] = ACTIONS(2265), - [anon_sym_func] = ACTIONS(2265), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_struct] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_RPAREN] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_RBRACE] = ACTIONS(2263), - [anon_sym_DASH] = ACTIONS(2263), - [anon_sym_DOLLAR] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_void] = ACTIONS(2265), - [anon_sym_anyopaque] = ACTIONS(2265), - [anon_sym_bool] = ACTIONS(2265), - [anon_sym_int] = ACTIONS(2265), - [anon_sym_float] = ACTIONS(2265), - [anon_sym_range] = ACTIONS(2265), - [anon_sym_i8] = ACTIONS(2265), - [anon_sym_i16] = ACTIONS(2265), - [anon_sym_i32] = ACTIONS(2265), - [anon_sym_i64] = ACTIONS(2265), - [anon_sym_u8] = ACTIONS(2265), - [anon_sym_u16] = ACTIONS(2265), - [anon_sym_u32] = ACTIONS(2265), - [anon_sym_u64] = ACTIONS(2265), - [anon_sym_isize] = ACTIONS(2265), - [anon_sym_usize] = ACTIONS(2265), - [anon_sym_f32] = ACTIONS(2265), - [anon_sym_f64] = ACTIONS(2265), - [anon_sym_c_char] = ACTIONS(2265), - [anon_sym_c_schar] = ACTIONS(2265), - [anon_sym_c_uchar] = ACTIONS(2265), - [anon_sym_c_short] = ACTIONS(2265), - [anon_sym_c_ushort] = ACTIONS(2265), - [anon_sym_c_int] = ACTIONS(2265), - [anon_sym_c_uint] = ACTIONS(2265), - [anon_sym_c_long] = ACTIONS(2265), - [anon_sym_c_ulong] = ACTIONS(2265), - [anon_sym_c_longlong] = ACTIONS(2265), - [anon_sym_c_ulonglong] = ACTIONS(2265), - [anon_sym_c_float] = ACTIONS(2265), - [anon_sym_c_double] = ACTIONS(2265), - [anon_sym_c_longdouble] = ACTIONS(2265), - [anon_sym_return] = ACTIONS(2265), - [anon_sym_yield] = ACTIONS(2265), - [anon_sym_break] = ACTIONS(2265), - [anon_sym_continue] = ACTIONS(2265), - [anon_sym_defer] = ACTIONS(2265), - [anon_sym_errdefer] = ACTIONS(2265), - [anon_sym_if] = ACTIONS(2265), - [anon_sym_else] = ACTIONS(2265), - [anon_sym_while] = ACTIONS(2265), - [anon_sym_for] = ACTIONS(2265), - [anon_sym_match] = ACTIONS(2265), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_try] = ACTIONS(2265), - [anon_sym_DOT] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2265), - [anon_sym_false] = ACTIONS(2265), - [sym_none] = ACTIONS(2265), - [sym_undefined] = ACTIONS(2265), - [sym_sink] = ACTIONS(2265), - [sym_integer] = ACTIONS(2265), - [sym_float] = ACTIONS(2263), - [anon_sym_DQUOTE] = ACTIONS(2263), - [sym_multiline_string] = ACTIONS(2263), - [sym_character] = ACTIONS(2263), + [ts_builtin_sym_end] = ACTIONS(2265), + [sym_identifier] = ACTIONS(2267), + [anon_sym_import] = 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_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_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(2263), + [sym__newline] = ACTIONS(2265), }, [STATE(1043)] = { - [ts_builtin_sym_end] = ACTIONS(2267), - [sym_identifier] = ACTIONS(2269), - [anon_sym_import] = ACTIONS(2269), - [anon_sym_func] = ACTIONS(2269), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_struct] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_RPAREN] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_DASH] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_void] = ACTIONS(2269), - [anon_sym_anyopaque] = ACTIONS(2269), - [anon_sym_bool] = ACTIONS(2269), - [anon_sym_int] = ACTIONS(2269), - [anon_sym_float] = ACTIONS(2269), - [anon_sym_range] = ACTIONS(2269), - [anon_sym_i8] = ACTIONS(2269), - [anon_sym_i16] = ACTIONS(2269), - [anon_sym_i32] = ACTIONS(2269), - [anon_sym_i64] = ACTIONS(2269), - [anon_sym_u8] = ACTIONS(2269), - [anon_sym_u16] = ACTIONS(2269), - [anon_sym_u32] = ACTIONS(2269), - [anon_sym_u64] = ACTIONS(2269), - [anon_sym_isize] = ACTIONS(2269), - [anon_sym_usize] = ACTIONS(2269), - [anon_sym_f32] = ACTIONS(2269), - [anon_sym_f64] = ACTIONS(2269), - [anon_sym_c_char] = ACTIONS(2269), - [anon_sym_c_schar] = ACTIONS(2269), - [anon_sym_c_uchar] = ACTIONS(2269), - [anon_sym_c_short] = ACTIONS(2269), - [anon_sym_c_ushort] = ACTIONS(2269), - [anon_sym_c_int] = ACTIONS(2269), - [anon_sym_c_uint] = ACTIONS(2269), - [anon_sym_c_long] = ACTIONS(2269), - [anon_sym_c_ulong] = ACTIONS(2269), - [anon_sym_c_longlong] = ACTIONS(2269), - [anon_sym_c_ulonglong] = ACTIONS(2269), - [anon_sym_c_float] = ACTIONS(2269), - [anon_sym_c_double] = ACTIONS(2269), - [anon_sym_c_longdouble] = ACTIONS(2269), - [anon_sym_return] = ACTIONS(2269), - [anon_sym_yield] = ACTIONS(2269), - [anon_sym_break] = ACTIONS(2269), - [anon_sym_continue] = ACTIONS(2269), - [anon_sym_defer] = ACTIONS(2269), - [anon_sym_errdefer] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_else] = ACTIONS(2269), - [anon_sym_while] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_match] = ACTIONS(2269), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_try] = ACTIONS(2269), - [anon_sym_DOT] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(2269), - [anon_sym_false] = ACTIONS(2269), - [sym_none] = ACTIONS(2269), - [sym_undefined] = ACTIONS(2269), - [sym_sink] = ACTIONS(2269), - [sym_integer] = ACTIONS(2269), - [sym_float] = ACTIONS(2267), - [anon_sym_DQUOTE] = ACTIONS(2267), - [sym_multiline_string] = ACTIONS(2267), - [sym_character] = ACTIONS(2267), + [ts_builtin_sym_end] = ACTIONS(2269), + [sym_identifier] = ACTIONS(2271), + [anon_sym_import] = 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_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_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(2267), + [sym__newline] = ACTIONS(2269), }, [STATE(1044)] = { - [ts_builtin_sym_end] = ACTIONS(2271), - [sym_identifier] = ACTIONS(2273), - [anon_sym_import] = ACTIONS(2273), - [anon_sym_func] = ACTIONS(2273), - [anon_sym_BANG] = ACTIONS(2271), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2271), - [anon_sym_RPAREN] = ACTIONS(2271), - [anon_sym_LBRACE] = ACTIONS(2271), - [anon_sym_RBRACE] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_DOLLAR] = ACTIONS(2271), - [anon_sym_LBRACK] = ACTIONS(2271), - [anon_sym_void] = ACTIONS(2273), - [anon_sym_anyopaque] = ACTIONS(2273), - [anon_sym_bool] = ACTIONS(2273), - [anon_sym_int] = ACTIONS(2273), - [anon_sym_float] = ACTIONS(2273), - [anon_sym_range] = ACTIONS(2273), - [anon_sym_i8] = ACTIONS(2273), - [anon_sym_i16] = ACTIONS(2273), - [anon_sym_i32] = ACTIONS(2273), - [anon_sym_i64] = ACTIONS(2273), - [anon_sym_u8] = ACTIONS(2273), - [anon_sym_u16] = ACTIONS(2273), - [anon_sym_u32] = ACTIONS(2273), - [anon_sym_u64] = ACTIONS(2273), - [anon_sym_isize] = ACTIONS(2273), - [anon_sym_usize] = ACTIONS(2273), - [anon_sym_f32] = ACTIONS(2273), - [anon_sym_f64] = ACTIONS(2273), - [anon_sym_c_char] = ACTIONS(2273), - [anon_sym_c_schar] = ACTIONS(2273), - [anon_sym_c_uchar] = ACTIONS(2273), - [anon_sym_c_short] = ACTIONS(2273), - [anon_sym_c_ushort] = ACTIONS(2273), - [anon_sym_c_int] = ACTIONS(2273), - [anon_sym_c_uint] = ACTIONS(2273), - [anon_sym_c_long] = ACTIONS(2273), - [anon_sym_c_ulong] = ACTIONS(2273), - [anon_sym_c_longlong] = ACTIONS(2273), - [anon_sym_c_ulonglong] = ACTIONS(2273), - [anon_sym_c_float] = ACTIONS(2273), - [anon_sym_c_double] = ACTIONS(2273), - [anon_sym_c_longdouble] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_yield] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_defer] = ACTIONS(2273), - [anon_sym_errdefer] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_else] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_AMP] = ACTIONS(2271), - [anon_sym_try] = ACTIONS(2273), - [anon_sym_DOT] = ACTIONS(2271), - [anon_sym_true] = ACTIONS(2273), - [anon_sym_false] = ACTIONS(2273), - [sym_none] = ACTIONS(2273), - [sym_undefined] = ACTIONS(2273), - [sym_sink] = ACTIONS(2273), - [sym_integer] = ACTIONS(2273), - [sym_float] = ACTIONS(2271), - [anon_sym_DQUOTE] = ACTIONS(2271), - [sym_multiline_string] = ACTIONS(2271), - [sym_character] = ACTIONS(2271), + [ts_builtin_sym_end] = ACTIONS(2273), + [sym_identifier] = ACTIONS(2275), + [anon_sym_import] = 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_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_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(2271), + [sym__newline] = ACTIONS(2273), }, [STATE(1045)] = { - [ts_builtin_sym_end] = ACTIONS(2275), - [sym_identifier] = ACTIONS(2277), - [anon_sym_import] = ACTIONS(2277), - [anon_sym_func] = ACTIONS(2277), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_struct] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_RPAREN] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym_DASH] = ACTIONS(2275), - [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_LBRACK] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(2277), - [anon_sym_anyopaque] = ACTIONS(2277), - [anon_sym_bool] = ACTIONS(2277), - [anon_sym_int] = ACTIONS(2277), - [anon_sym_float] = ACTIONS(2277), - [anon_sym_range] = ACTIONS(2277), - [anon_sym_i8] = ACTIONS(2277), - [anon_sym_i16] = ACTIONS(2277), - [anon_sym_i32] = ACTIONS(2277), - [anon_sym_i64] = ACTIONS(2277), - [anon_sym_u8] = ACTIONS(2277), - [anon_sym_u16] = ACTIONS(2277), - [anon_sym_u32] = ACTIONS(2277), - [anon_sym_u64] = ACTIONS(2277), - [anon_sym_isize] = ACTIONS(2277), - [anon_sym_usize] = ACTIONS(2277), - [anon_sym_f32] = ACTIONS(2277), - [anon_sym_f64] = ACTIONS(2277), - [anon_sym_c_char] = ACTIONS(2277), - [anon_sym_c_schar] = ACTIONS(2277), - [anon_sym_c_uchar] = ACTIONS(2277), - [anon_sym_c_short] = ACTIONS(2277), - [anon_sym_c_ushort] = ACTIONS(2277), - [anon_sym_c_int] = ACTIONS(2277), - [anon_sym_c_uint] = ACTIONS(2277), - [anon_sym_c_long] = ACTIONS(2277), - [anon_sym_c_ulong] = ACTIONS(2277), - [anon_sym_c_longlong] = ACTIONS(2277), - [anon_sym_c_ulonglong] = ACTIONS(2277), - [anon_sym_c_float] = ACTIONS(2277), - [anon_sym_c_double] = ACTIONS(2277), - [anon_sym_c_longdouble] = ACTIONS(2277), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_yield] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_defer] = ACTIONS(2277), - [anon_sym_errdefer] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_else] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_match] = ACTIONS(2277), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_try] = ACTIONS(2277), - [anon_sym_DOT] = ACTIONS(2275), - [anon_sym_true] = ACTIONS(2277), - [anon_sym_false] = ACTIONS(2277), - [sym_none] = ACTIONS(2277), - [sym_undefined] = ACTIONS(2277), - [sym_sink] = ACTIONS(2277), - [sym_integer] = ACTIONS(2277), - [sym_float] = ACTIONS(2275), - [anon_sym_DQUOTE] = ACTIONS(2275), - [sym_multiline_string] = ACTIONS(2275), - [sym_character] = ACTIONS(2275), + [ts_builtin_sym_end] = ACTIONS(2277), + [sym_identifier] = ACTIONS(2279), + [anon_sym_import] = 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_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_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(2275), + [sym__newline] = ACTIONS(2277), }, [STATE(1046)] = { - [ts_builtin_sym_end] = ACTIONS(2279), - [sym_identifier] = ACTIONS(2281), - [anon_sym_import] = ACTIONS(2281), - [anon_sym_func] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2279), - [anon_sym_struct] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_void] = ACTIONS(2281), - [anon_sym_anyopaque] = ACTIONS(2281), - [anon_sym_bool] = ACTIONS(2281), - [anon_sym_int] = ACTIONS(2281), - [anon_sym_float] = ACTIONS(2281), - [anon_sym_range] = ACTIONS(2281), - [anon_sym_i8] = ACTIONS(2281), - [anon_sym_i16] = ACTIONS(2281), - [anon_sym_i32] = ACTIONS(2281), - [anon_sym_i64] = ACTIONS(2281), - [anon_sym_u8] = ACTIONS(2281), - [anon_sym_u16] = ACTIONS(2281), - [anon_sym_u32] = ACTIONS(2281), - [anon_sym_u64] = ACTIONS(2281), - [anon_sym_isize] = ACTIONS(2281), - [anon_sym_usize] = ACTIONS(2281), - [anon_sym_f32] = ACTIONS(2281), - [anon_sym_f64] = ACTIONS(2281), - [anon_sym_c_char] = ACTIONS(2281), - [anon_sym_c_schar] = ACTIONS(2281), - [anon_sym_c_uchar] = ACTIONS(2281), - [anon_sym_c_short] = ACTIONS(2281), - [anon_sym_c_ushort] = ACTIONS(2281), - [anon_sym_c_int] = ACTIONS(2281), - [anon_sym_c_uint] = ACTIONS(2281), - [anon_sym_c_long] = ACTIONS(2281), - [anon_sym_c_ulong] = ACTIONS(2281), - [anon_sym_c_longlong] = ACTIONS(2281), - [anon_sym_c_ulonglong] = ACTIONS(2281), - [anon_sym_c_float] = ACTIONS(2281), - [anon_sym_c_double] = ACTIONS(2281), - [anon_sym_c_longdouble] = ACTIONS(2281), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_yield] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_defer] = ACTIONS(2281), - [anon_sym_errdefer] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_else] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_match] = ACTIONS(2281), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_try] = ACTIONS(2281), - [anon_sym_DOT] = ACTIONS(2279), - [anon_sym_true] = ACTIONS(2281), - [anon_sym_false] = ACTIONS(2281), - [sym_none] = ACTIONS(2281), - [sym_undefined] = ACTIONS(2281), - [sym_sink] = ACTIONS(2281), - [sym_integer] = ACTIONS(2281), - [sym_float] = ACTIONS(2279), - [anon_sym_DQUOTE] = ACTIONS(2279), - [sym_multiline_string] = ACTIONS(2279), - [sym_character] = ACTIONS(2279), + [ts_builtin_sym_end] = ACTIONS(2281), + [sym_identifier] = ACTIONS(2283), + [anon_sym_import] = 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_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_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(2279), + [sym__newline] = ACTIONS(2281), }, [STATE(1047)] = { - [ts_builtin_sym_end] = ACTIONS(2283), - [sym_identifier] = ACTIONS(2285), - [anon_sym_import] = ACTIONS(2285), - [anon_sym_func] = ACTIONS(2285), - [anon_sym_BANG] = ACTIONS(2283), - [anon_sym_struct] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2283), - [anon_sym_RPAREN] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(2283), - [anon_sym_RBRACE] = ACTIONS(2283), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_DOLLAR] = ACTIONS(2283), - [anon_sym_LBRACK] = ACTIONS(2283), - [anon_sym_void] = ACTIONS(2285), - [anon_sym_anyopaque] = ACTIONS(2285), - [anon_sym_bool] = ACTIONS(2285), - [anon_sym_int] = ACTIONS(2285), - [anon_sym_float] = ACTIONS(2285), - [anon_sym_range] = ACTIONS(2285), - [anon_sym_i8] = ACTIONS(2285), - [anon_sym_i16] = ACTIONS(2285), - [anon_sym_i32] = ACTIONS(2285), - [anon_sym_i64] = ACTIONS(2285), - [anon_sym_u8] = ACTIONS(2285), - [anon_sym_u16] = ACTIONS(2285), - [anon_sym_u32] = ACTIONS(2285), - [anon_sym_u64] = ACTIONS(2285), - [anon_sym_isize] = ACTIONS(2285), - [anon_sym_usize] = ACTIONS(2285), - [anon_sym_f32] = ACTIONS(2285), - [anon_sym_f64] = ACTIONS(2285), - [anon_sym_c_char] = ACTIONS(2285), - [anon_sym_c_schar] = ACTIONS(2285), - [anon_sym_c_uchar] = ACTIONS(2285), - [anon_sym_c_short] = ACTIONS(2285), - [anon_sym_c_ushort] = ACTIONS(2285), - [anon_sym_c_int] = ACTIONS(2285), - [anon_sym_c_uint] = ACTIONS(2285), - [anon_sym_c_long] = ACTIONS(2285), - [anon_sym_c_ulong] = ACTIONS(2285), - [anon_sym_c_longlong] = ACTIONS(2285), - [anon_sym_c_ulonglong] = ACTIONS(2285), - [anon_sym_c_float] = ACTIONS(2285), - [anon_sym_c_double] = ACTIONS(2285), - [anon_sym_c_longdouble] = ACTIONS(2285), - [anon_sym_return] = ACTIONS(2285), - [anon_sym_yield] = ACTIONS(2285), - [anon_sym_break] = ACTIONS(2285), - [anon_sym_continue] = ACTIONS(2285), - [anon_sym_defer] = ACTIONS(2285), - [anon_sym_errdefer] = ACTIONS(2285), - [anon_sym_if] = ACTIONS(2285), - [anon_sym_else] = ACTIONS(2285), - [anon_sym_while] = ACTIONS(2285), - [anon_sym_for] = ACTIONS(2285), - [anon_sym_match] = ACTIONS(2285), - [anon_sym_AMP] = ACTIONS(2283), - [anon_sym_try] = ACTIONS(2285), - [anon_sym_DOT] = ACTIONS(2283), - [anon_sym_true] = ACTIONS(2285), - [anon_sym_false] = ACTIONS(2285), - [sym_none] = ACTIONS(2285), - [sym_undefined] = ACTIONS(2285), - [sym_sink] = ACTIONS(2285), - [sym_integer] = ACTIONS(2285), - [sym_float] = ACTIONS(2283), - [anon_sym_DQUOTE] = ACTIONS(2283), - [sym_multiline_string] = ACTIONS(2283), - [sym_character] = ACTIONS(2283), + [ts_builtin_sym_end] = ACTIONS(2285), + [sym_identifier] = ACTIONS(2287), + [anon_sym_import] = 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_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_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(2283), + [sym__newline] = ACTIONS(2285), }, [STATE(1048)] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [sym_identifier] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_func] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_struct] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_RPAREN] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_DOLLAR] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2289), - [anon_sym_anyopaque] = ACTIONS(2289), - [anon_sym_bool] = ACTIONS(2289), - [anon_sym_int] = ACTIONS(2289), - [anon_sym_float] = ACTIONS(2289), - [anon_sym_range] = ACTIONS(2289), - [anon_sym_i8] = ACTIONS(2289), - [anon_sym_i16] = ACTIONS(2289), - [anon_sym_i32] = ACTIONS(2289), - [anon_sym_i64] = ACTIONS(2289), - [anon_sym_u8] = ACTIONS(2289), - [anon_sym_u16] = ACTIONS(2289), - [anon_sym_u32] = ACTIONS(2289), - [anon_sym_u64] = ACTIONS(2289), - [anon_sym_isize] = ACTIONS(2289), - [anon_sym_usize] = ACTIONS(2289), - [anon_sym_f32] = ACTIONS(2289), - [anon_sym_f64] = ACTIONS(2289), - [anon_sym_c_char] = ACTIONS(2289), - [anon_sym_c_schar] = ACTIONS(2289), - [anon_sym_c_uchar] = ACTIONS(2289), - [anon_sym_c_short] = ACTIONS(2289), - [anon_sym_c_ushort] = ACTIONS(2289), - [anon_sym_c_int] = ACTIONS(2289), - [anon_sym_c_uint] = ACTIONS(2289), - [anon_sym_c_long] = ACTIONS(2289), - [anon_sym_c_ulong] = ACTIONS(2289), - [anon_sym_c_longlong] = ACTIONS(2289), - [anon_sym_c_ulonglong] = ACTIONS(2289), - [anon_sym_c_float] = ACTIONS(2289), - [anon_sym_c_double] = ACTIONS(2289), - [anon_sym_c_longdouble] = ACTIONS(2289), - [anon_sym_return] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_break] = ACTIONS(2289), - [anon_sym_continue] = ACTIONS(2289), - [anon_sym_defer] = ACTIONS(2289), - [anon_sym_errdefer] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_match] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_DOT] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(2289), - [anon_sym_false] = ACTIONS(2289), - [sym_none] = ACTIONS(2289), - [sym_undefined] = ACTIONS(2289), - [sym_sink] = ACTIONS(2289), - [sym_integer] = ACTIONS(2289), - [sym_float] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [sym_multiline_string] = ACTIONS(2287), - [sym_character] = ACTIONS(2287), + [ts_builtin_sym_end] = ACTIONS(2289), + [sym_identifier] = ACTIONS(2291), + [anon_sym_import] = 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_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_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(2287), + [sym__newline] = ACTIONS(2289), }, [STATE(1049)] = { - [ts_builtin_sym_end] = ACTIONS(2291), - [sym_identifier] = ACTIONS(2293), - [anon_sym_import] = ACTIONS(2293), - [anon_sym_func] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2291), - [anon_sym_struct] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_RPAREN] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2291), - [anon_sym_RBRACE] = ACTIONS(2291), - [anon_sym_DASH] = ACTIONS(2291), - [anon_sym_DOLLAR] = ACTIONS(2291), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_void] = ACTIONS(2293), - [anon_sym_anyopaque] = ACTIONS(2293), - [anon_sym_bool] = ACTIONS(2293), - [anon_sym_int] = ACTIONS(2293), - [anon_sym_float] = ACTIONS(2293), - [anon_sym_range] = ACTIONS(2293), - [anon_sym_i8] = ACTIONS(2293), - [anon_sym_i16] = ACTIONS(2293), - [anon_sym_i32] = ACTIONS(2293), - [anon_sym_i64] = ACTIONS(2293), - [anon_sym_u8] = ACTIONS(2293), - [anon_sym_u16] = ACTIONS(2293), - [anon_sym_u32] = ACTIONS(2293), - [anon_sym_u64] = ACTIONS(2293), - [anon_sym_isize] = ACTIONS(2293), - [anon_sym_usize] = ACTIONS(2293), - [anon_sym_f32] = ACTIONS(2293), - [anon_sym_f64] = ACTIONS(2293), - [anon_sym_c_char] = ACTIONS(2293), - [anon_sym_c_schar] = ACTIONS(2293), - [anon_sym_c_uchar] = ACTIONS(2293), - [anon_sym_c_short] = ACTIONS(2293), - [anon_sym_c_ushort] = ACTIONS(2293), - [anon_sym_c_int] = ACTIONS(2293), - [anon_sym_c_uint] = ACTIONS(2293), - [anon_sym_c_long] = ACTIONS(2293), - [anon_sym_c_ulong] = ACTIONS(2293), - [anon_sym_c_longlong] = ACTIONS(2293), - [anon_sym_c_ulonglong] = ACTIONS(2293), - [anon_sym_c_float] = ACTIONS(2293), - [anon_sym_c_double] = ACTIONS(2293), - [anon_sym_c_longdouble] = ACTIONS(2293), - [anon_sym_return] = ACTIONS(2293), - [anon_sym_yield] = ACTIONS(2293), - [anon_sym_break] = ACTIONS(2293), - [anon_sym_continue] = ACTIONS(2293), - [anon_sym_defer] = ACTIONS(2293), - [anon_sym_errdefer] = ACTIONS(2293), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_else] = ACTIONS(2293), - [anon_sym_while] = ACTIONS(2293), - [anon_sym_for] = ACTIONS(2293), - [anon_sym_match] = ACTIONS(2293), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_try] = ACTIONS(2293), - [anon_sym_DOT] = ACTIONS(2291), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [sym_none] = ACTIONS(2293), - [sym_undefined] = ACTIONS(2293), - [sym_sink] = ACTIONS(2293), - [sym_integer] = ACTIONS(2293), - [sym_float] = ACTIONS(2291), - [anon_sym_DQUOTE] = ACTIONS(2291), - [sym_multiline_string] = ACTIONS(2291), - [sym_character] = ACTIONS(2291), + [ts_builtin_sym_end] = ACTIONS(2293), + [sym_identifier] = ACTIONS(2295), + [anon_sym_import] = 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_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_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(2291), + [sym__newline] = ACTIONS(2293), }, [STATE(1050)] = { - [ts_builtin_sym_end] = ACTIONS(2295), - [sym_identifier] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_func] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_struct] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_RPAREN] = ACTIONS(2295), - [anon_sym_LBRACE] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(2295), - [anon_sym_DOLLAR] = ACTIONS(2295), - [anon_sym_LBRACK] = ACTIONS(2295), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_anyopaque] = ACTIONS(2297), - [anon_sym_bool] = ACTIONS(2297), - [anon_sym_int] = ACTIONS(2297), - [anon_sym_float] = ACTIONS(2297), - [anon_sym_range] = ACTIONS(2297), - [anon_sym_i8] = ACTIONS(2297), - [anon_sym_i16] = ACTIONS(2297), - [anon_sym_i32] = ACTIONS(2297), - [anon_sym_i64] = ACTIONS(2297), - [anon_sym_u8] = ACTIONS(2297), - [anon_sym_u16] = ACTIONS(2297), - [anon_sym_u32] = ACTIONS(2297), - [anon_sym_u64] = ACTIONS(2297), - [anon_sym_isize] = ACTIONS(2297), - [anon_sym_usize] = ACTIONS(2297), - [anon_sym_f32] = ACTIONS(2297), - [anon_sym_f64] = ACTIONS(2297), - [anon_sym_c_char] = ACTIONS(2297), - [anon_sym_c_schar] = ACTIONS(2297), - [anon_sym_c_uchar] = ACTIONS(2297), - [anon_sym_c_short] = ACTIONS(2297), - [anon_sym_c_ushort] = ACTIONS(2297), - [anon_sym_c_int] = ACTIONS(2297), - [anon_sym_c_uint] = ACTIONS(2297), - [anon_sym_c_long] = ACTIONS(2297), - [anon_sym_c_ulong] = ACTIONS(2297), - [anon_sym_c_longlong] = ACTIONS(2297), - [anon_sym_c_ulonglong] = ACTIONS(2297), - [anon_sym_c_float] = ACTIONS(2297), - [anon_sym_c_double] = ACTIONS(2297), - [anon_sym_c_longdouble] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_defer] = ACTIONS(2297), - [anon_sym_errdefer] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_match] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(2297), - [anon_sym_false] = ACTIONS(2297), - [sym_none] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [sym_sink] = ACTIONS(2297), - [sym_integer] = ACTIONS(2297), - [sym_float] = ACTIONS(2295), - [anon_sym_DQUOTE] = ACTIONS(2295), - [sym_multiline_string] = ACTIONS(2295), - [sym_character] = ACTIONS(2295), + [ts_builtin_sym_end] = ACTIONS(2297), + [sym_identifier] = ACTIONS(2299), + [anon_sym_import] = 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_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_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(2295), + [sym__newline] = ACTIONS(2297), }, [STATE(1051)] = { - [ts_builtin_sym_end] = ACTIONS(2299), - [sym_identifier] = ACTIONS(2301), - [anon_sym_import] = ACTIONS(2301), - [anon_sym_func] = ACTIONS(2301), - [anon_sym_BANG] = ACTIONS(2299), - [anon_sym_struct] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2299), - [anon_sym_RPAREN] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_RBRACE] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_DOLLAR] = ACTIONS(2299), - [anon_sym_LBRACK] = ACTIONS(2299), - [anon_sym_void] = ACTIONS(2301), - [anon_sym_anyopaque] = ACTIONS(2301), - [anon_sym_bool] = ACTIONS(2301), - [anon_sym_int] = ACTIONS(2301), - [anon_sym_float] = ACTIONS(2301), - [anon_sym_range] = ACTIONS(2301), - [anon_sym_i8] = ACTIONS(2301), - [anon_sym_i16] = ACTIONS(2301), - [anon_sym_i32] = ACTIONS(2301), - [anon_sym_i64] = ACTIONS(2301), - [anon_sym_u8] = ACTIONS(2301), - [anon_sym_u16] = ACTIONS(2301), - [anon_sym_u32] = ACTIONS(2301), - [anon_sym_u64] = ACTIONS(2301), - [anon_sym_isize] = ACTIONS(2301), - [anon_sym_usize] = ACTIONS(2301), - [anon_sym_f32] = ACTIONS(2301), - [anon_sym_f64] = ACTIONS(2301), - [anon_sym_c_char] = ACTIONS(2301), - [anon_sym_c_schar] = ACTIONS(2301), - [anon_sym_c_uchar] = ACTIONS(2301), - [anon_sym_c_short] = ACTIONS(2301), - [anon_sym_c_ushort] = ACTIONS(2301), - [anon_sym_c_int] = ACTIONS(2301), - [anon_sym_c_uint] = ACTIONS(2301), - [anon_sym_c_long] = ACTIONS(2301), - [anon_sym_c_ulong] = ACTIONS(2301), - [anon_sym_c_longlong] = ACTIONS(2301), - [anon_sym_c_ulonglong] = ACTIONS(2301), - [anon_sym_c_float] = ACTIONS(2301), - [anon_sym_c_double] = ACTIONS(2301), - [anon_sym_c_longdouble] = ACTIONS(2301), - [anon_sym_return] = ACTIONS(2301), - [anon_sym_yield] = ACTIONS(2301), - [anon_sym_break] = ACTIONS(2301), - [anon_sym_continue] = ACTIONS(2301), - [anon_sym_defer] = ACTIONS(2301), - [anon_sym_errdefer] = ACTIONS(2301), - [anon_sym_if] = ACTIONS(2301), - [anon_sym_else] = ACTIONS(2301), - [anon_sym_while] = ACTIONS(2301), - [anon_sym_for] = ACTIONS(2301), - [anon_sym_match] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2299), - [anon_sym_try] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(2299), - [anon_sym_true] = ACTIONS(2301), - [anon_sym_false] = ACTIONS(2301), - [sym_none] = ACTIONS(2301), - [sym_undefined] = ACTIONS(2301), - [sym_sink] = ACTIONS(2301), - [sym_integer] = ACTIONS(2301), - [sym_float] = ACTIONS(2299), - [anon_sym_DQUOTE] = ACTIONS(2299), - [sym_multiline_string] = ACTIONS(2299), - [sym_character] = ACTIONS(2299), + [ts_builtin_sym_end] = ACTIONS(2301), + [sym_identifier] = ACTIONS(2303), + [anon_sym_import] = 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_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_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(2299), + [sym__newline] = ACTIONS(2301), }, [STATE(1052)] = { - [ts_builtin_sym_end] = ACTIONS(2303), - [sym_identifier] = ACTIONS(2305), - [anon_sym_import] = ACTIONS(2305), - [anon_sym_func] = ACTIONS(2305), - [anon_sym_BANG] = ACTIONS(2303), - [anon_sym_struct] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_RPAREN] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(2303), - [anon_sym_DASH] = ACTIONS(2303), - [anon_sym_DOLLAR] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2303), - [anon_sym_void] = ACTIONS(2305), - [anon_sym_anyopaque] = ACTIONS(2305), - [anon_sym_bool] = ACTIONS(2305), - [anon_sym_int] = ACTIONS(2305), - [anon_sym_float] = ACTIONS(2305), - [anon_sym_range] = ACTIONS(2305), - [anon_sym_i8] = ACTIONS(2305), - [anon_sym_i16] = ACTIONS(2305), - [anon_sym_i32] = ACTIONS(2305), - [anon_sym_i64] = ACTIONS(2305), - [anon_sym_u8] = ACTIONS(2305), - [anon_sym_u16] = ACTIONS(2305), - [anon_sym_u32] = ACTIONS(2305), - [anon_sym_u64] = ACTIONS(2305), - [anon_sym_isize] = ACTIONS(2305), - [anon_sym_usize] = ACTIONS(2305), - [anon_sym_f32] = ACTIONS(2305), - [anon_sym_f64] = ACTIONS(2305), - [anon_sym_c_char] = ACTIONS(2305), - [anon_sym_c_schar] = ACTIONS(2305), - [anon_sym_c_uchar] = ACTIONS(2305), - [anon_sym_c_short] = ACTIONS(2305), - [anon_sym_c_ushort] = ACTIONS(2305), - [anon_sym_c_int] = ACTIONS(2305), - [anon_sym_c_uint] = ACTIONS(2305), - [anon_sym_c_long] = ACTIONS(2305), - [anon_sym_c_ulong] = ACTIONS(2305), - [anon_sym_c_longlong] = ACTIONS(2305), - [anon_sym_c_ulonglong] = ACTIONS(2305), - [anon_sym_c_float] = ACTIONS(2305), - [anon_sym_c_double] = ACTIONS(2305), - [anon_sym_c_longdouble] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_defer] = ACTIONS(2305), - [anon_sym_errdefer] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_else] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_match] = ACTIONS(2305), - [anon_sym_AMP] = ACTIONS(2303), - [anon_sym_try] = ACTIONS(2305), - [anon_sym_DOT] = ACTIONS(2303), - [anon_sym_true] = ACTIONS(2305), - [anon_sym_false] = ACTIONS(2305), - [sym_none] = ACTIONS(2305), - [sym_undefined] = ACTIONS(2305), - [sym_sink] = ACTIONS(2305), - [sym_integer] = ACTIONS(2305), - [sym_float] = ACTIONS(2303), - [anon_sym_DQUOTE] = ACTIONS(2303), - [sym_multiline_string] = ACTIONS(2303), - [sym_character] = ACTIONS(2303), + [ts_builtin_sym_end] = ACTIONS(2305), + [sym_identifier] = ACTIONS(2307), + [anon_sym_import] = 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_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_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(2303), + [sym__newline] = ACTIONS(2305), }, [STATE(1053)] = { - [ts_builtin_sym_end] = ACTIONS(2307), - [sym_identifier] = ACTIONS(2309), - [anon_sym_import] = ACTIONS(2309), - [anon_sym_func] = ACTIONS(2309), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_struct] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_RPAREN] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_RBRACE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_DOLLAR] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_void] = ACTIONS(2309), - [anon_sym_anyopaque] = ACTIONS(2309), - [anon_sym_bool] = ACTIONS(2309), - [anon_sym_int] = ACTIONS(2309), - [anon_sym_float] = ACTIONS(2309), - [anon_sym_range] = ACTIONS(2309), - [anon_sym_i8] = ACTIONS(2309), - [anon_sym_i16] = ACTIONS(2309), - [anon_sym_i32] = ACTIONS(2309), - [anon_sym_i64] = ACTIONS(2309), - [anon_sym_u8] = ACTIONS(2309), - [anon_sym_u16] = ACTIONS(2309), - [anon_sym_u32] = ACTIONS(2309), - [anon_sym_u64] = ACTIONS(2309), - [anon_sym_isize] = ACTIONS(2309), - [anon_sym_usize] = ACTIONS(2309), - [anon_sym_f32] = ACTIONS(2309), - [anon_sym_f64] = ACTIONS(2309), - [anon_sym_c_char] = ACTIONS(2309), - [anon_sym_c_schar] = ACTIONS(2309), - [anon_sym_c_uchar] = ACTIONS(2309), - [anon_sym_c_short] = ACTIONS(2309), - [anon_sym_c_ushort] = ACTIONS(2309), - [anon_sym_c_int] = ACTIONS(2309), - [anon_sym_c_uint] = ACTIONS(2309), - [anon_sym_c_long] = ACTIONS(2309), - [anon_sym_c_ulong] = ACTIONS(2309), - [anon_sym_c_longlong] = ACTIONS(2309), - [anon_sym_c_ulonglong] = ACTIONS(2309), - [anon_sym_c_float] = ACTIONS(2309), - [anon_sym_c_double] = ACTIONS(2309), - [anon_sym_c_longdouble] = ACTIONS(2309), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_yield] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_defer] = ACTIONS(2309), - [anon_sym_errdefer] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_else] = ACTIONS(2309), - [anon_sym_while] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_match] = ACTIONS(2309), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_try] = ACTIONS(2309), - [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_true] = ACTIONS(2309), - [anon_sym_false] = ACTIONS(2309), - [sym_none] = ACTIONS(2309), - [sym_undefined] = ACTIONS(2309), - [sym_sink] = ACTIONS(2309), - [sym_integer] = ACTIONS(2309), - [sym_float] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_multiline_string] = ACTIONS(2307), - [sym_character] = ACTIONS(2307), + [ts_builtin_sym_end] = ACTIONS(2309), + [sym_identifier] = ACTIONS(2311), + [anon_sym_import] = 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_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_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(2307), + [sym__newline] = ACTIONS(2309), }, [STATE(1054)] = { - [ts_builtin_sym_end] = ACTIONS(2311), - [sym_identifier] = ACTIONS(2313), - [anon_sym_import] = ACTIONS(2313), - [anon_sym_func] = ACTIONS(2313), - [anon_sym_BANG] = ACTIONS(2311), - [anon_sym_struct] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2311), - [anon_sym_RPAREN] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(2311), - [anon_sym_RBRACE] = ACTIONS(2311), - [anon_sym_DASH] = ACTIONS(2311), - [anon_sym_DOLLAR] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2311), - [anon_sym_void] = ACTIONS(2313), - [anon_sym_anyopaque] = ACTIONS(2313), - [anon_sym_bool] = ACTIONS(2313), - [anon_sym_int] = ACTIONS(2313), - [anon_sym_float] = ACTIONS(2313), - [anon_sym_range] = ACTIONS(2313), - [anon_sym_i8] = ACTIONS(2313), - [anon_sym_i16] = ACTIONS(2313), - [anon_sym_i32] = ACTIONS(2313), - [anon_sym_i64] = ACTIONS(2313), - [anon_sym_u8] = ACTIONS(2313), - [anon_sym_u16] = ACTIONS(2313), - [anon_sym_u32] = ACTIONS(2313), - [anon_sym_u64] = ACTIONS(2313), - [anon_sym_isize] = ACTIONS(2313), - [anon_sym_usize] = ACTIONS(2313), - [anon_sym_f32] = ACTIONS(2313), - [anon_sym_f64] = ACTIONS(2313), - [anon_sym_c_char] = ACTIONS(2313), - [anon_sym_c_schar] = ACTIONS(2313), - [anon_sym_c_uchar] = ACTIONS(2313), - [anon_sym_c_short] = ACTIONS(2313), - [anon_sym_c_ushort] = ACTIONS(2313), - [anon_sym_c_int] = ACTIONS(2313), - [anon_sym_c_uint] = ACTIONS(2313), - [anon_sym_c_long] = ACTIONS(2313), - [anon_sym_c_ulong] = ACTIONS(2313), - [anon_sym_c_longlong] = ACTIONS(2313), - [anon_sym_c_ulonglong] = ACTIONS(2313), - [anon_sym_c_float] = ACTIONS(2313), - [anon_sym_c_double] = ACTIONS(2313), - [anon_sym_c_longdouble] = ACTIONS(2313), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_yield] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_defer] = ACTIONS(2313), - [anon_sym_errdefer] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_else] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_match] = ACTIONS(2313), - [anon_sym_AMP] = ACTIONS(2311), - [anon_sym_try] = ACTIONS(2313), - [anon_sym_DOT] = ACTIONS(2311), - [anon_sym_true] = ACTIONS(2313), - [anon_sym_false] = ACTIONS(2313), - [sym_none] = ACTIONS(2313), - [sym_undefined] = ACTIONS(2313), - [sym_sink] = ACTIONS(2313), - [sym_integer] = ACTIONS(2313), - [sym_float] = ACTIONS(2311), - [anon_sym_DQUOTE] = ACTIONS(2311), - [sym_multiline_string] = ACTIONS(2311), - [sym_character] = ACTIONS(2311), + [ts_builtin_sym_end] = ACTIONS(2313), + [sym_identifier] = ACTIONS(2315), + [anon_sym_import] = 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_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_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(2311), + [sym__newline] = ACTIONS(2313), }, [STATE(1055)] = { - [ts_builtin_sym_end] = ACTIONS(2315), - [sym_identifier] = ACTIONS(2317), - [anon_sym_import] = ACTIONS(2317), - [anon_sym_func] = ACTIONS(2317), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_struct] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_RPAREN] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2315), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2315), - [anon_sym_DOLLAR] = ACTIONS(2315), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_void] = ACTIONS(2317), - [anon_sym_anyopaque] = ACTIONS(2317), - [anon_sym_bool] = ACTIONS(2317), - [anon_sym_int] = ACTIONS(2317), - [anon_sym_float] = ACTIONS(2317), - [anon_sym_range] = ACTIONS(2317), - [anon_sym_i8] = ACTIONS(2317), - [anon_sym_i16] = ACTIONS(2317), - [anon_sym_i32] = ACTIONS(2317), - [anon_sym_i64] = ACTIONS(2317), - [anon_sym_u8] = ACTIONS(2317), - [anon_sym_u16] = ACTIONS(2317), - [anon_sym_u32] = ACTIONS(2317), - [anon_sym_u64] = ACTIONS(2317), - [anon_sym_isize] = ACTIONS(2317), - [anon_sym_usize] = ACTIONS(2317), - [anon_sym_f32] = ACTIONS(2317), - [anon_sym_f64] = ACTIONS(2317), - [anon_sym_c_char] = ACTIONS(2317), - [anon_sym_c_schar] = ACTIONS(2317), - [anon_sym_c_uchar] = ACTIONS(2317), - [anon_sym_c_short] = ACTIONS(2317), - [anon_sym_c_ushort] = ACTIONS(2317), - [anon_sym_c_int] = ACTIONS(2317), - [anon_sym_c_uint] = ACTIONS(2317), - [anon_sym_c_long] = ACTIONS(2317), - [anon_sym_c_ulong] = ACTIONS(2317), - [anon_sym_c_longlong] = ACTIONS(2317), - [anon_sym_c_ulonglong] = ACTIONS(2317), - [anon_sym_c_float] = ACTIONS(2317), - [anon_sym_c_double] = ACTIONS(2317), - [anon_sym_c_longdouble] = ACTIONS(2317), - [anon_sym_return] = ACTIONS(2317), - [anon_sym_yield] = ACTIONS(2317), - [anon_sym_break] = ACTIONS(2317), - [anon_sym_continue] = ACTIONS(2317), - [anon_sym_defer] = ACTIONS(2317), - [anon_sym_errdefer] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_else] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_match] = ACTIONS(2317), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_try] = ACTIONS(2317), - [anon_sym_DOT] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [sym_none] = ACTIONS(2317), - [sym_undefined] = ACTIONS(2317), - [sym_sink] = ACTIONS(2317), - [sym_integer] = ACTIONS(2317), - [sym_float] = ACTIONS(2315), - [anon_sym_DQUOTE] = ACTIONS(2315), - [sym_multiline_string] = ACTIONS(2315), - [sym_character] = ACTIONS(2315), + [ts_builtin_sym_end] = ACTIONS(2317), + [sym_identifier] = ACTIONS(2319), + [anon_sym_import] = 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_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_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(2315), + [sym__newline] = ACTIONS(2317), }, [STATE(1056)] = { - [ts_builtin_sym_end] = ACTIONS(2319), - [sym_identifier] = ACTIONS(2321), - [anon_sym_import] = ACTIONS(2321), - [anon_sym_func] = ACTIONS(2321), - [anon_sym_BANG] = ACTIONS(2319), - [anon_sym_struct] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2319), - [anon_sym_RPAREN] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_RBRACE] = ACTIONS(2319), - [anon_sym_DASH] = ACTIONS(2319), - [anon_sym_DOLLAR] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(2319), - [anon_sym_void] = ACTIONS(2321), - [anon_sym_anyopaque] = ACTIONS(2321), - [anon_sym_bool] = ACTIONS(2321), - [anon_sym_int] = ACTIONS(2321), - [anon_sym_float] = ACTIONS(2321), - [anon_sym_range] = ACTIONS(2321), - [anon_sym_i8] = ACTIONS(2321), - [anon_sym_i16] = ACTIONS(2321), - [anon_sym_i32] = ACTIONS(2321), - [anon_sym_i64] = ACTIONS(2321), - [anon_sym_u8] = ACTIONS(2321), - [anon_sym_u16] = ACTIONS(2321), - [anon_sym_u32] = ACTIONS(2321), - [anon_sym_u64] = ACTIONS(2321), - [anon_sym_isize] = ACTIONS(2321), - [anon_sym_usize] = ACTIONS(2321), - [anon_sym_f32] = ACTIONS(2321), - [anon_sym_f64] = ACTIONS(2321), - [anon_sym_c_char] = ACTIONS(2321), - [anon_sym_c_schar] = ACTIONS(2321), - [anon_sym_c_uchar] = ACTIONS(2321), - [anon_sym_c_short] = ACTIONS(2321), - [anon_sym_c_ushort] = ACTIONS(2321), - [anon_sym_c_int] = ACTIONS(2321), - [anon_sym_c_uint] = ACTIONS(2321), - [anon_sym_c_long] = ACTIONS(2321), - [anon_sym_c_ulong] = ACTIONS(2321), - [anon_sym_c_longlong] = ACTIONS(2321), - [anon_sym_c_ulonglong] = ACTIONS(2321), - [anon_sym_c_float] = ACTIONS(2321), - [anon_sym_c_double] = ACTIONS(2321), - [anon_sym_c_longdouble] = ACTIONS(2321), - [anon_sym_return] = ACTIONS(2321), - [anon_sym_yield] = ACTIONS(2321), - [anon_sym_break] = ACTIONS(2321), - [anon_sym_continue] = ACTIONS(2321), - [anon_sym_defer] = ACTIONS(2321), - [anon_sym_errdefer] = ACTIONS(2321), - [anon_sym_if] = ACTIONS(2321), - [anon_sym_else] = ACTIONS(2321), - [anon_sym_while] = ACTIONS(2321), - [anon_sym_for] = ACTIONS(2321), - [anon_sym_match] = ACTIONS(2321), - [anon_sym_AMP] = ACTIONS(2319), - [anon_sym_try] = ACTIONS(2321), - [anon_sym_DOT] = ACTIONS(2319), - [anon_sym_true] = ACTIONS(2321), - [anon_sym_false] = ACTIONS(2321), - [sym_none] = ACTIONS(2321), - [sym_undefined] = ACTIONS(2321), - [sym_sink] = ACTIONS(2321), - [sym_integer] = ACTIONS(2321), - [sym_float] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_multiline_string] = ACTIONS(2319), - [sym_character] = ACTIONS(2319), + [ts_builtin_sym_end] = ACTIONS(2321), + [sym_identifier] = ACTIONS(2323), + [anon_sym_import] = 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_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_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(2319), + [sym__newline] = ACTIONS(2321), }, [STATE(1057)] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2325), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_func] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_struct] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_RPAREN] = ACTIONS(2323), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_DOLLAR] = ACTIONS(2323), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_void] = ACTIONS(2325), - [anon_sym_anyopaque] = ACTIONS(2325), - [anon_sym_bool] = ACTIONS(2325), - [anon_sym_int] = ACTIONS(2325), - [anon_sym_float] = ACTIONS(2325), - [anon_sym_range] = ACTIONS(2325), - [anon_sym_i8] = ACTIONS(2325), - [anon_sym_i16] = ACTIONS(2325), - [anon_sym_i32] = ACTIONS(2325), - [anon_sym_i64] = ACTIONS(2325), - [anon_sym_u8] = ACTIONS(2325), - [anon_sym_u16] = ACTIONS(2325), - [anon_sym_u32] = ACTIONS(2325), - [anon_sym_u64] = ACTIONS(2325), - [anon_sym_isize] = ACTIONS(2325), - [anon_sym_usize] = ACTIONS(2325), - [anon_sym_f32] = ACTIONS(2325), - [anon_sym_f64] = ACTIONS(2325), - [anon_sym_c_char] = ACTIONS(2325), - [anon_sym_c_schar] = ACTIONS(2325), - [anon_sym_c_uchar] = ACTIONS(2325), - [anon_sym_c_short] = ACTIONS(2325), - [anon_sym_c_ushort] = ACTIONS(2325), - [anon_sym_c_int] = ACTIONS(2325), - [anon_sym_c_uint] = ACTIONS(2325), - [anon_sym_c_long] = ACTIONS(2325), - [anon_sym_c_ulong] = ACTIONS(2325), - [anon_sym_c_longlong] = ACTIONS(2325), - [anon_sym_c_ulonglong] = ACTIONS(2325), - [anon_sym_c_float] = ACTIONS(2325), - [anon_sym_c_double] = ACTIONS(2325), - [anon_sym_c_longdouble] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_defer] = ACTIONS(2325), - [anon_sym_errdefer] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_match] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2323), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_DOT] = ACTIONS(2323), - [anon_sym_true] = ACTIONS(2325), - [anon_sym_false] = ACTIONS(2325), - [sym_none] = ACTIONS(2325), - [sym_undefined] = ACTIONS(2325), - [sym_sink] = ACTIONS(2325), - [sym_integer] = ACTIONS(2325), - [sym_float] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [sym_multiline_string] = ACTIONS(2323), - [sym_character] = ACTIONS(2323), + [ts_builtin_sym_end] = ACTIONS(2325), + [sym_identifier] = ACTIONS(2327), + [anon_sym_import] = 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_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_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(2323), + [sym__newline] = ACTIONS(2325), }, [STATE(1058)] = { - [ts_builtin_sym_end] = ACTIONS(2327), - [sym_identifier] = ACTIONS(2329), - [anon_sym_import] = ACTIONS(2329), - [anon_sym_func] = ACTIONS(2329), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_struct] = ACTIONS(2329), - [anon_sym_LPAREN] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_RBRACE] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2327), - [anon_sym_DOLLAR] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(2327), - [anon_sym_void] = ACTIONS(2329), - [anon_sym_anyopaque] = ACTIONS(2329), - [anon_sym_bool] = ACTIONS(2329), - [anon_sym_int] = ACTIONS(2329), - [anon_sym_float] = ACTIONS(2329), - [anon_sym_range] = ACTIONS(2329), - [anon_sym_i8] = ACTIONS(2329), - [anon_sym_i16] = ACTIONS(2329), - [anon_sym_i32] = ACTIONS(2329), - [anon_sym_i64] = ACTIONS(2329), - [anon_sym_u8] = ACTIONS(2329), - [anon_sym_u16] = ACTIONS(2329), - [anon_sym_u32] = ACTIONS(2329), - [anon_sym_u64] = ACTIONS(2329), - [anon_sym_isize] = ACTIONS(2329), - [anon_sym_usize] = ACTIONS(2329), - [anon_sym_f32] = ACTIONS(2329), - [anon_sym_f64] = ACTIONS(2329), - [anon_sym_c_char] = ACTIONS(2329), - [anon_sym_c_schar] = ACTIONS(2329), - [anon_sym_c_uchar] = ACTIONS(2329), - [anon_sym_c_short] = ACTIONS(2329), - [anon_sym_c_ushort] = ACTIONS(2329), - [anon_sym_c_int] = ACTIONS(2329), - [anon_sym_c_uint] = ACTIONS(2329), - [anon_sym_c_long] = ACTIONS(2329), - [anon_sym_c_ulong] = ACTIONS(2329), - [anon_sym_c_longlong] = ACTIONS(2329), - [anon_sym_c_ulonglong] = ACTIONS(2329), - [anon_sym_c_float] = ACTIONS(2329), - [anon_sym_c_double] = ACTIONS(2329), - [anon_sym_c_longdouble] = ACTIONS(2329), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_yield] = ACTIONS(2329), - [anon_sym_break] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2329), - [anon_sym_defer] = ACTIONS(2329), - [anon_sym_errdefer] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_else] = ACTIONS(2329), - [anon_sym_while] = ACTIONS(2329), - [anon_sym_for] = ACTIONS(2329), - [anon_sym_match] = ACTIONS(2329), - [anon_sym_AMP] = ACTIONS(2327), - [anon_sym_try] = ACTIONS(2329), - [anon_sym_DOT] = ACTIONS(2327), - [anon_sym_true] = ACTIONS(2329), - [anon_sym_false] = ACTIONS(2329), - [sym_none] = ACTIONS(2329), - [sym_undefined] = ACTIONS(2329), - [sym_sink] = ACTIONS(2329), - [sym_integer] = ACTIONS(2329), - [sym_float] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_multiline_string] = ACTIONS(2327), - [sym_character] = ACTIONS(2327), + [ts_builtin_sym_end] = ACTIONS(2329), + [sym_identifier] = ACTIONS(2331), + [anon_sym_import] = 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_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_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(2327), + [sym__newline] = ACTIONS(2329), }, [STATE(1059)] = { - [ts_builtin_sym_end] = ACTIONS(2331), - [sym_identifier] = ACTIONS(2333), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_func] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(2331), - [anon_sym_struct] = ACTIONS(2333), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_RPAREN] = ACTIONS(2331), - [anon_sym_LBRACE] = ACTIONS(2331), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_DOLLAR] = ACTIONS(2331), - [anon_sym_LBRACK] = ACTIONS(2331), - [anon_sym_void] = ACTIONS(2333), - [anon_sym_anyopaque] = ACTIONS(2333), - [anon_sym_bool] = ACTIONS(2333), - [anon_sym_int] = ACTIONS(2333), - [anon_sym_float] = ACTIONS(2333), - [anon_sym_range] = ACTIONS(2333), - [anon_sym_i8] = ACTIONS(2333), - [anon_sym_i16] = ACTIONS(2333), - [anon_sym_i32] = ACTIONS(2333), - [anon_sym_i64] = ACTIONS(2333), - [anon_sym_u8] = ACTIONS(2333), - [anon_sym_u16] = ACTIONS(2333), - [anon_sym_u32] = ACTIONS(2333), - [anon_sym_u64] = ACTIONS(2333), - [anon_sym_isize] = ACTIONS(2333), - [anon_sym_usize] = ACTIONS(2333), - [anon_sym_f32] = ACTIONS(2333), - [anon_sym_f64] = ACTIONS(2333), - [anon_sym_c_char] = ACTIONS(2333), - [anon_sym_c_schar] = ACTIONS(2333), - [anon_sym_c_uchar] = ACTIONS(2333), - [anon_sym_c_short] = ACTIONS(2333), - [anon_sym_c_ushort] = ACTIONS(2333), - [anon_sym_c_int] = ACTIONS(2333), - [anon_sym_c_uint] = ACTIONS(2333), - [anon_sym_c_long] = ACTIONS(2333), - [anon_sym_c_ulong] = ACTIONS(2333), - [anon_sym_c_longlong] = ACTIONS(2333), - [anon_sym_c_ulonglong] = ACTIONS(2333), - [anon_sym_c_float] = ACTIONS(2333), - [anon_sym_c_double] = ACTIONS(2333), - [anon_sym_c_longdouble] = ACTIONS(2333), - [anon_sym_return] = ACTIONS(2333), - [anon_sym_yield] = ACTIONS(2333), - [anon_sym_break] = ACTIONS(2333), - [anon_sym_continue] = ACTIONS(2333), - [anon_sym_defer] = ACTIONS(2333), - [anon_sym_errdefer] = ACTIONS(2333), - [anon_sym_if] = ACTIONS(2333), - [anon_sym_else] = ACTIONS(2333), - [anon_sym_while] = ACTIONS(2333), - [anon_sym_for] = ACTIONS(2333), - [anon_sym_match] = ACTIONS(2333), - [anon_sym_AMP] = ACTIONS(2331), - [anon_sym_try] = ACTIONS(2333), - [anon_sym_DOT] = ACTIONS(2331), - [anon_sym_true] = ACTIONS(2333), - [anon_sym_false] = ACTIONS(2333), - [sym_none] = ACTIONS(2333), - [sym_undefined] = ACTIONS(2333), - [sym_sink] = ACTIONS(2333), - [sym_integer] = ACTIONS(2333), - [sym_float] = ACTIONS(2331), - [anon_sym_DQUOTE] = ACTIONS(2331), - [sym_multiline_string] = ACTIONS(2331), - [sym_character] = ACTIONS(2331), + [ts_builtin_sym_end] = ACTIONS(2333), + [sym_identifier] = ACTIONS(2335), + [anon_sym_import] = 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_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_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(2331), + [sym__newline] = ACTIONS(2333), }, [STATE(1060)] = { - [ts_builtin_sym_end] = ACTIONS(2335), - [sym_identifier] = ACTIONS(2337), - [anon_sym_import] = ACTIONS(2337), - [anon_sym_func] = ACTIONS(2337), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_struct] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_RPAREN] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2335), - [anon_sym_DOLLAR] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_void] = ACTIONS(2337), - [anon_sym_anyopaque] = ACTIONS(2337), - [anon_sym_bool] = ACTIONS(2337), - [anon_sym_int] = ACTIONS(2337), - [anon_sym_float] = ACTIONS(2337), - [anon_sym_range] = ACTIONS(2337), - [anon_sym_i8] = ACTIONS(2337), - [anon_sym_i16] = ACTIONS(2337), - [anon_sym_i32] = ACTIONS(2337), - [anon_sym_i64] = ACTIONS(2337), - [anon_sym_u8] = ACTIONS(2337), - [anon_sym_u16] = ACTIONS(2337), - [anon_sym_u32] = ACTIONS(2337), - [anon_sym_u64] = ACTIONS(2337), - [anon_sym_isize] = ACTIONS(2337), - [anon_sym_usize] = ACTIONS(2337), - [anon_sym_f32] = ACTIONS(2337), - [anon_sym_f64] = ACTIONS(2337), - [anon_sym_c_char] = ACTIONS(2337), - [anon_sym_c_schar] = ACTIONS(2337), - [anon_sym_c_uchar] = ACTIONS(2337), - [anon_sym_c_short] = ACTIONS(2337), - [anon_sym_c_ushort] = ACTIONS(2337), - [anon_sym_c_int] = ACTIONS(2337), - [anon_sym_c_uint] = ACTIONS(2337), - [anon_sym_c_long] = ACTIONS(2337), - [anon_sym_c_ulong] = ACTIONS(2337), - [anon_sym_c_longlong] = ACTIONS(2337), - [anon_sym_c_ulonglong] = ACTIONS(2337), - [anon_sym_c_float] = ACTIONS(2337), - [anon_sym_c_double] = ACTIONS(2337), - [anon_sym_c_longdouble] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_yield] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_defer] = ACTIONS(2337), - [anon_sym_errdefer] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_else] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_match] = ACTIONS(2337), - [anon_sym_AMP] = ACTIONS(2335), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_DOT] = ACTIONS(2335), - [anon_sym_true] = ACTIONS(2337), - [anon_sym_false] = ACTIONS(2337), - [sym_none] = ACTIONS(2337), - [sym_undefined] = ACTIONS(2337), - [sym_sink] = ACTIONS(2337), - [sym_integer] = ACTIONS(2337), - [sym_float] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_multiline_string] = ACTIONS(2335), - [sym_character] = ACTIONS(2335), + [ts_builtin_sym_end] = ACTIONS(2337), + [sym_identifier] = ACTIONS(2339), + [anon_sym_import] = 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_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_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(2335), + [sym__newline] = ACTIONS(2337), }, [STATE(1061)] = { - [ts_builtin_sym_end] = ACTIONS(2339), - [sym_identifier] = ACTIONS(2341), - [anon_sym_import] = ACTIONS(2341), - [anon_sym_func] = ACTIONS(2341), - [anon_sym_BANG] = ACTIONS(2339), - [anon_sym_struct] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_RPAREN] = ACTIONS(2339), - [anon_sym_LBRACE] = ACTIONS(2339), - [anon_sym_RBRACE] = ACTIONS(2339), - [anon_sym_DASH] = ACTIONS(2339), - [anon_sym_DOLLAR] = ACTIONS(2339), - [anon_sym_LBRACK] = ACTIONS(2339), - [anon_sym_void] = ACTIONS(2341), - [anon_sym_anyopaque] = ACTIONS(2341), - [anon_sym_bool] = ACTIONS(2341), - [anon_sym_int] = ACTIONS(2341), - [anon_sym_float] = ACTIONS(2341), - [anon_sym_range] = ACTIONS(2341), - [anon_sym_i8] = ACTIONS(2341), - [anon_sym_i16] = ACTIONS(2341), - [anon_sym_i32] = ACTIONS(2341), - [anon_sym_i64] = ACTIONS(2341), - [anon_sym_u8] = ACTIONS(2341), - [anon_sym_u16] = ACTIONS(2341), - [anon_sym_u32] = ACTIONS(2341), - [anon_sym_u64] = ACTIONS(2341), - [anon_sym_isize] = ACTIONS(2341), - [anon_sym_usize] = ACTIONS(2341), - [anon_sym_f32] = ACTIONS(2341), - [anon_sym_f64] = ACTIONS(2341), - [anon_sym_c_char] = ACTIONS(2341), - [anon_sym_c_schar] = ACTIONS(2341), - [anon_sym_c_uchar] = ACTIONS(2341), - [anon_sym_c_short] = ACTIONS(2341), - [anon_sym_c_ushort] = ACTIONS(2341), - [anon_sym_c_int] = ACTIONS(2341), - [anon_sym_c_uint] = ACTIONS(2341), - [anon_sym_c_long] = ACTIONS(2341), - [anon_sym_c_ulong] = ACTIONS(2341), - [anon_sym_c_longlong] = ACTIONS(2341), - [anon_sym_c_ulonglong] = ACTIONS(2341), - [anon_sym_c_float] = ACTIONS(2341), - [anon_sym_c_double] = ACTIONS(2341), - [anon_sym_c_longdouble] = ACTIONS(2341), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_yield] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_defer] = ACTIONS(2341), - [anon_sym_errdefer] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_else] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_match] = ACTIONS(2341), - [anon_sym_AMP] = ACTIONS(2339), - [anon_sym_try] = ACTIONS(2341), - [anon_sym_DOT] = ACTIONS(2339), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [sym_none] = ACTIONS(2341), - [sym_undefined] = ACTIONS(2341), - [sym_sink] = ACTIONS(2341), - [sym_integer] = ACTIONS(2341), - [sym_float] = ACTIONS(2339), - [anon_sym_DQUOTE] = ACTIONS(2339), - [sym_multiline_string] = ACTIONS(2339), - [sym_character] = ACTIONS(2339), + [ts_builtin_sym_end] = ACTIONS(2341), + [sym_identifier] = ACTIONS(2343), + [anon_sym_import] = 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_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_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(2339), + [sym__newline] = ACTIONS(2341), }, [STATE(1062)] = { - [ts_builtin_sym_end] = ACTIONS(2343), - [sym_identifier] = ACTIONS(2345), - [anon_sym_import] = ACTIONS(2345), - [anon_sym_func] = ACTIONS(2345), - [anon_sym_BANG] = ACTIONS(2343), - [anon_sym_struct] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_RPAREN] = ACTIONS(2343), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_RBRACE] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_void] = ACTIONS(2345), - [anon_sym_anyopaque] = ACTIONS(2345), - [anon_sym_bool] = ACTIONS(2345), - [anon_sym_int] = ACTIONS(2345), - [anon_sym_float] = ACTIONS(2345), - [anon_sym_range] = ACTIONS(2345), - [anon_sym_i8] = ACTIONS(2345), - [anon_sym_i16] = ACTIONS(2345), - [anon_sym_i32] = ACTIONS(2345), - [anon_sym_i64] = ACTIONS(2345), - [anon_sym_u8] = ACTIONS(2345), - [anon_sym_u16] = ACTIONS(2345), - [anon_sym_u32] = ACTIONS(2345), - [anon_sym_u64] = ACTIONS(2345), - [anon_sym_isize] = ACTIONS(2345), - [anon_sym_usize] = ACTIONS(2345), - [anon_sym_f32] = ACTIONS(2345), - [anon_sym_f64] = ACTIONS(2345), - [anon_sym_c_char] = ACTIONS(2345), - [anon_sym_c_schar] = ACTIONS(2345), - [anon_sym_c_uchar] = ACTIONS(2345), - [anon_sym_c_short] = ACTIONS(2345), - [anon_sym_c_ushort] = ACTIONS(2345), - [anon_sym_c_int] = ACTIONS(2345), - [anon_sym_c_uint] = ACTIONS(2345), - [anon_sym_c_long] = ACTIONS(2345), - [anon_sym_c_ulong] = ACTIONS(2345), - [anon_sym_c_longlong] = ACTIONS(2345), - [anon_sym_c_ulonglong] = ACTIONS(2345), - [anon_sym_c_float] = ACTIONS(2345), - [anon_sym_c_double] = ACTIONS(2345), - [anon_sym_c_longdouble] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2345), - [anon_sym_break] = ACTIONS(2345), - [anon_sym_continue] = ACTIONS(2345), - [anon_sym_defer] = ACTIONS(2345), - [anon_sym_errdefer] = ACTIONS(2345), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_else] = ACTIONS(2345), - [anon_sym_while] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2345), - [anon_sym_match] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_try] = ACTIONS(2345), - [anon_sym_DOT] = ACTIONS(2343), - [anon_sym_true] = ACTIONS(2345), - [anon_sym_false] = ACTIONS(2345), - [sym_none] = ACTIONS(2345), - [sym_undefined] = ACTIONS(2345), - [sym_sink] = ACTIONS(2345), - [sym_integer] = ACTIONS(2345), - [sym_float] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [sym_multiline_string] = ACTIONS(2343), - [sym_character] = ACTIONS(2343), + [ts_builtin_sym_end] = ACTIONS(2345), + [sym_identifier] = ACTIONS(2347), + [anon_sym_import] = 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_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_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(2343), + [sym__newline] = ACTIONS(2345), }, [STATE(1063)] = { - [ts_builtin_sym_end] = ACTIONS(2347), - [sym_identifier] = ACTIONS(2349), - [anon_sym_import] = ACTIONS(2349), - [anon_sym_func] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_RPAREN] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_DOLLAR] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_void] = ACTIONS(2349), - [anon_sym_anyopaque] = ACTIONS(2349), - [anon_sym_bool] = ACTIONS(2349), - [anon_sym_int] = ACTIONS(2349), - [anon_sym_float] = ACTIONS(2349), - [anon_sym_range] = ACTIONS(2349), - [anon_sym_i8] = ACTIONS(2349), - [anon_sym_i16] = ACTIONS(2349), - [anon_sym_i32] = ACTIONS(2349), - [anon_sym_i64] = ACTIONS(2349), - [anon_sym_u8] = ACTIONS(2349), - [anon_sym_u16] = ACTIONS(2349), - [anon_sym_u32] = ACTIONS(2349), - [anon_sym_u64] = ACTIONS(2349), - [anon_sym_isize] = ACTIONS(2349), - [anon_sym_usize] = ACTIONS(2349), - [anon_sym_f32] = ACTIONS(2349), - [anon_sym_f64] = ACTIONS(2349), - [anon_sym_c_char] = ACTIONS(2349), - [anon_sym_c_schar] = ACTIONS(2349), - [anon_sym_c_uchar] = ACTIONS(2349), - [anon_sym_c_short] = ACTIONS(2349), - [anon_sym_c_ushort] = ACTIONS(2349), - [anon_sym_c_int] = ACTIONS(2349), - [anon_sym_c_uint] = ACTIONS(2349), - [anon_sym_c_long] = ACTIONS(2349), - [anon_sym_c_ulong] = ACTIONS(2349), - [anon_sym_c_longlong] = ACTIONS(2349), - [anon_sym_c_ulonglong] = ACTIONS(2349), - [anon_sym_c_float] = ACTIONS(2349), - [anon_sym_c_double] = ACTIONS(2349), - [anon_sym_c_longdouble] = ACTIONS(2349), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_yield] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_defer] = ACTIONS(2349), - [anon_sym_errdefer] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_else] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_match] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_DOT] = ACTIONS(2347), - [anon_sym_true] = ACTIONS(2349), - [anon_sym_false] = ACTIONS(2349), - [sym_none] = ACTIONS(2349), - [sym_undefined] = ACTIONS(2349), - [sym_sink] = ACTIONS(2349), - [sym_integer] = ACTIONS(2349), - [sym_float] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [sym_multiline_string] = ACTIONS(2347), - [sym_character] = ACTIONS(2347), + [ts_builtin_sym_end] = ACTIONS(2349), + [sym_identifier] = ACTIONS(2351), + [anon_sym_import] = 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_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_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(2347), + [sym__newline] = ACTIONS(2349), }, [STATE(1064)] = { - [ts_builtin_sym_end] = ACTIONS(2351), - [sym_identifier] = ACTIONS(2353), - [anon_sym_import] = ACTIONS(2353), - [anon_sym_func] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2351), - [anon_sym_struct] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_RPAREN] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2351), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_DASH] = ACTIONS(2351), - [anon_sym_DOLLAR] = ACTIONS(2351), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_void] = ACTIONS(2353), - [anon_sym_anyopaque] = ACTIONS(2353), - [anon_sym_bool] = ACTIONS(2353), - [anon_sym_int] = ACTIONS(2353), - [anon_sym_float] = ACTIONS(2353), - [anon_sym_range] = ACTIONS(2353), - [anon_sym_i8] = ACTIONS(2353), - [anon_sym_i16] = ACTIONS(2353), - [anon_sym_i32] = ACTIONS(2353), - [anon_sym_i64] = ACTIONS(2353), - [anon_sym_u8] = ACTIONS(2353), - [anon_sym_u16] = ACTIONS(2353), - [anon_sym_u32] = ACTIONS(2353), - [anon_sym_u64] = ACTIONS(2353), - [anon_sym_isize] = ACTIONS(2353), - [anon_sym_usize] = ACTIONS(2353), - [anon_sym_f32] = ACTIONS(2353), - [anon_sym_f64] = ACTIONS(2353), - [anon_sym_c_char] = ACTIONS(2353), - [anon_sym_c_schar] = ACTIONS(2353), - [anon_sym_c_uchar] = ACTIONS(2353), - [anon_sym_c_short] = ACTIONS(2353), - [anon_sym_c_ushort] = ACTIONS(2353), - [anon_sym_c_int] = ACTIONS(2353), - [anon_sym_c_uint] = ACTIONS(2353), - [anon_sym_c_long] = ACTIONS(2353), - [anon_sym_c_ulong] = ACTIONS(2353), - [anon_sym_c_longlong] = ACTIONS(2353), - [anon_sym_c_ulonglong] = ACTIONS(2353), - [anon_sym_c_float] = ACTIONS(2353), - [anon_sym_c_double] = ACTIONS(2353), - [anon_sym_c_longdouble] = ACTIONS(2353), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_yield] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym_defer] = ACTIONS(2353), - [anon_sym_errdefer] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_else] = ACTIONS(2353), - [anon_sym_while] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_match] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2353), - [anon_sym_DOT] = ACTIONS(2351), - [anon_sym_true] = ACTIONS(2353), - [anon_sym_false] = ACTIONS(2353), - [sym_none] = ACTIONS(2353), - [sym_undefined] = ACTIONS(2353), - [sym_sink] = ACTIONS(2353), - [sym_integer] = ACTIONS(2353), - [sym_float] = ACTIONS(2351), - [anon_sym_DQUOTE] = ACTIONS(2351), - [sym_multiline_string] = ACTIONS(2351), - [sym_character] = ACTIONS(2351), + [ts_builtin_sym_end] = ACTIONS(2353), + [sym_identifier] = ACTIONS(2355), + [anon_sym_import] = 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_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_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(2351), + [sym__newline] = ACTIONS(2353), }, [STATE(1065)] = { - [ts_builtin_sym_end] = ACTIONS(2355), - [sym_identifier] = ACTIONS(2357), - [anon_sym_import] = ACTIONS(2357), - [anon_sym_func] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_RPAREN] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_void] = ACTIONS(2357), - [anon_sym_anyopaque] = ACTIONS(2357), - [anon_sym_bool] = ACTIONS(2357), - [anon_sym_int] = ACTIONS(2357), - [anon_sym_float] = ACTIONS(2357), - [anon_sym_range] = ACTIONS(2357), - [anon_sym_i8] = ACTIONS(2357), - [anon_sym_i16] = ACTIONS(2357), - [anon_sym_i32] = ACTIONS(2357), - [anon_sym_i64] = ACTIONS(2357), - [anon_sym_u8] = ACTIONS(2357), - [anon_sym_u16] = ACTIONS(2357), - [anon_sym_u32] = ACTIONS(2357), - [anon_sym_u64] = ACTIONS(2357), - [anon_sym_isize] = ACTIONS(2357), - [anon_sym_usize] = ACTIONS(2357), - [anon_sym_f32] = ACTIONS(2357), - [anon_sym_f64] = ACTIONS(2357), - [anon_sym_c_char] = ACTIONS(2357), - [anon_sym_c_schar] = ACTIONS(2357), - [anon_sym_c_uchar] = ACTIONS(2357), - [anon_sym_c_short] = ACTIONS(2357), - [anon_sym_c_ushort] = ACTIONS(2357), - [anon_sym_c_int] = ACTIONS(2357), - [anon_sym_c_uint] = ACTIONS(2357), - [anon_sym_c_long] = ACTIONS(2357), - [anon_sym_c_ulong] = ACTIONS(2357), - [anon_sym_c_longlong] = ACTIONS(2357), - [anon_sym_c_ulonglong] = ACTIONS(2357), - [anon_sym_c_float] = ACTIONS(2357), - [anon_sym_c_double] = ACTIONS(2357), - [anon_sym_c_longdouble] = ACTIONS(2357), - [anon_sym_return] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2357), - [anon_sym_break] = ACTIONS(2357), - [anon_sym_continue] = ACTIONS(2357), - [anon_sym_defer] = ACTIONS(2357), - [anon_sym_errdefer] = ACTIONS(2357), - [anon_sym_if] = ACTIONS(2357), - [anon_sym_else] = ACTIONS(2357), - [anon_sym_while] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2357), - [anon_sym_match] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2357), - [anon_sym_DOT] = ACTIONS(2355), - [anon_sym_true] = ACTIONS(2357), - [anon_sym_false] = ACTIONS(2357), - [sym_none] = ACTIONS(2357), - [sym_undefined] = ACTIONS(2357), - [sym_sink] = ACTIONS(2357), - [sym_integer] = ACTIONS(2357), - [sym_float] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_multiline_string] = ACTIONS(2355), - [sym_character] = ACTIONS(2355), + [ts_builtin_sym_end] = ACTIONS(2357), + [sym_identifier] = ACTIONS(2359), + [anon_sym_import] = 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_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_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(2355), + [sym__newline] = ACTIONS(2357), }, [STATE(1066)] = { - [ts_builtin_sym_end] = ACTIONS(2359), - [sym_identifier] = ACTIONS(2361), - [anon_sym_import] = ACTIONS(2361), - [anon_sym_func] = ACTIONS(2361), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_struct] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_RPAREN] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_void] = ACTIONS(2361), - [anon_sym_anyopaque] = ACTIONS(2361), - [anon_sym_bool] = ACTIONS(2361), - [anon_sym_int] = ACTIONS(2361), - [anon_sym_float] = ACTIONS(2361), - [anon_sym_range] = ACTIONS(2361), - [anon_sym_i8] = ACTIONS(2361), - [anon_sym_i16] = ACTIONS(2361), - [anon_sym_i32] = ACTIONS(2361), - [anon_sym_i64] = ACTIONS(2361), - [anon_sym_u8] = ACTIONS(2361), - [anon_sym_u16] = ACTIONS(2361), - [anon_sym_u32] = ACTIONS(2361), - [anon_sym_u64] = ACTIONS(2361), - [anon_sym_isize] = ACTIONS(2361), - [anon_sym_usize] = ACTIONS(2361), - [anon_sym_f32] = ACTIONS(2361), - [anon_sym_f64] = ACTIONS(2361), - [anon_sym_c_char] = ACTIONS(2361), - [anon_sym_c_schar] = ACTIONS(2361), - [anon_sym_c_uchar] = ACTIONS(2361), - [anon_sym_c_short] = ACTIONS(2361), - [anon_sym_c_ushort] = ACTIONS(2361), - [anon_sym_c_int] = ACTIONS(2361), - [anon_sym_c_uint] = ACTIONS(2361), - [anon_sym_c_long] = ACTIONS(2361), - [anon_sym_c_ulong] = ACTIONS(2361), - [anon_sym_c_longlong] = ACTIONS(2361), - [anon_sym_c_ulonglong] = ACTIONS(2361), - [anon_sym_c_float] = ACTIONS(2361), - [anon_sym_c_double] = ACTIONS(2361), - [anon_sym_c_longdouble] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_defer] = ACTIONS(2361), - [anon_sym_errdefer] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_else] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_match] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_DOT] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2361), - [anon_sym_false] = ACTIONS(2361), - [sym_none] = ACTIONS(2361), - [sym_undefined] = ACTIONS(2361), - [sym_sink] = ACTIONS(2361), - [sym_integer] = ACTIONS(2361), - [sym_float] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [sym_multiline_string] = ACTIONS(2359), - [sym_character] = ACTIONS(2359), + [ts_builtin_sym_end] = ACTIONS(2361), + [sym_identifier] = ACTIONS(2363), + [anon_sym_import] = 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_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_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(2359), + [sym__newline] = ACTIONS(2361), }, [STATE(1067)] = { - [ts_builtin_sym_end] = ACTIONS(2363), - [sym_identifier] = ACTIONS(2365), - [anon_sym_import] = ACTIONS(2365), - [anon_sym_func] = ACTIONS(2365), - [anon_sym_BANG] = ACTIONS(2363), - [anon_sym_struct] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2363), - [anon_sym_RPAREN] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2363), - [anon_sym_RBRACE] = ACTIONS(2363), - [anon_sym_DASH] = ACTIONS(2363), - [anon_sym_DOLLAR] = ACTIONS(2363), - [anon_sym_LBRACK] = ACTIONS(2363), - [anon_sym_void] = ACTIONS(2365), - [anon_sym_anyopaque] = ACTIONS(2365), - [anon_sym_bool] = ACTIONS(2365), - [anon_sym_int] = ACTIONS(2365), - [anon_sym_float] = ACTIONS(2365), - [anon_sym_range] = ACTIONS(2365), - [anon_sym_i8] = ACTIONS(2365), - [anon_sym_i16] = ACTIONS(2365), - [anon_sym_i32] = ACTIONS(2365), - [anon_sym_i64] = ACTIONS(2365), - [anon_sym_u8] = ACTIONS(2365), - [anon_sym_u16] = ACTIONS(2365), - [anon_sym_u32] = ACTIONS(2365), - [anon_sym_u64] = ACTIONS(2365), - [anon_sym_isize] = ACTIONS(2365), - [anon_sym_usize] = ACTIONS(2365), - [anon_sym_f32] = ACTIONS(2365), - [anon_sym_f64] = ACTIONS(2365), - [anon_sym_c_char] = ACTIONS(2365), - [anon_sym_c_schar] = ACTIONS(2365), - [anon_sym_c_uchar] = ACTIONS(2365), - [anon_sym_c_short] = ACTIONS(2365), - [anon_sym_c_ushort] = ACTIONS(2365), - [anon_sym_c_int] = ACTIONS(2365), - [anon_sym_c_uint] = ACTIONS(2365), - [anon_sym_c_long] = ACTIONS(2365), - [anon_sym_c_ulong] = ACTIONS(2365), - [anon_sym_c_longlong] = ACTIONS(2365), - [anon_sym_c_ulonglong] = ACTIONS(2365), - [anon_sym_c_float] = ACTIONS(2365), - [anon_sym_c_double] = ACTIONS(2365), - [anon_sym_c_longdouble] = ACTIONS(2365), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_break] = ACTIONS(2365), - [anon_sym_continue] = ACTIONS(2365), - [anon_sym_defer] = ACTIONS(2365), - [anon_sym_errdefer] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_else] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_AMP] = ACTIONS(2363), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_DOT] = ACTIONS(2363), - [anon_sym_true] = ACTIONS(2365), - [anon_sym_false] = ACTIONS(2365), - [sym_none] = ACTIONS(2365), - [sym_undefined] = ACTIONS(2365), - [sym_sink] = ACTIONS(2365), - [sym_integer] = ACTIONS(2365), - [sym_float] = ACTIONS(2363), - [anon_sym_DQUOTE] = ACTIONS(2363), - [sym_multiline_string] = ACTIONS(2363), - [sym_character] = ACTIONS(2363), + [ts_builtin_sym_end] = ACTIONS(2365), + [sym_identifier] = ACTIONS(2367), + [anon_sym_import] = 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_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_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_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2363), + [sym__newline] = ACTIONS(2365), }, [STATE(1068)] = { - [ts_builtin_sym_end] = ACTIONS(2367), - [sym_identifier] = ACTIONS(2369), - [anon_sym_import] = ACTIONS(2369), - [anon_sym_func] = ACTIONS(2369), - [anon_sym_BANG] = ACTIONS(2367), - [anon_sym_struct] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_RPAREN] = ACTIONS(2367), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_DASH] = ACTIONS(2367), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_LBRACK] = ACTIONS(2367), - [anon_sym_void] = ACTIONS(2369), - [anon_sym_anyopaque] = ACTIONS(2369), - [anon_sym_bool] = ACTIONS(2369), - [anon_sym_int] = ACTIONS(2369), - [anon_sym_float] = ACTIONS(2369), - [anon_sym_range] = ACTIONS(2369), - [anon_sym_i8] = ACTIONS(2369), - [anon_sym_i16] = ACTIONS(2369), - [anon_sym_i32] = ACTIONS(2369), - [anon_sym_i64] = ACTIONS(2369), - [anon_sym_u8] = ACTIONS(2369), - [anon_sym_u16] = ACTIONS(2369), - [anon_sym_u32] = ACTIONS(2369), - [anon_sym_u64] = ACTIONS(2369), - [anon_sym_isize] = ACTIONS(2369), - [anon_sym_usize] = ACTIONS(2369), - [anon_sym_f32] = ACTIONS(2369), - [anon_sym_f64] = ACTIONS(2369), - [anon_sym_c_char] = ACTIONS(2369), - [anon_sym_c_schar] = ACTIONS(2369), - [anon_sym_c_uchar] = ACTIONS(2369), - [anon_sym_c_short] = ACTIONS(2369), - [anon_sym_c_ushort] = ACTIONS(2369), - [anon_sym_c_int] = ACTIONS(2369), - [anon_sym_c_uint] = ACTIONS(2369), - [anon_sym_c_long] = ACTIONS(2369), - [anon_sym_c_ulong] = ACTIONS(2369), - [anon_sym_c_longlong] = ACTIONS(2369), - [anon_sym_c_ulonglong] = ACTIONS(2369), - [anon_sym_c_float] = ACTIONS(2369), - [anon_sym_c_double] = ACTIONS(2369), - [anon_sym_c_longdouble] = ACTIONS(2369), - [anon_sym_return] = ACTIONS(2369), - [anon_sym_yield] = ACTIONS(2369), - [anon_sym_break] = ACTIONS(2369), - [anon_sym_continue] = ACTIONS(2369), - [anon_sym_defer] = ACTIONS(2369), - [anon_sym_errdefer] = ACTIONS(2369), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_else] = ACTIONS(2369), - [anon_sym_while] = ACTIONS(2369), - [anon_sym_for] = ACTIONS(2369), - [anon_sym_match] = ACTIONS(2369), - [anon_sym_AMP] = ACTIONS(2367), - [anon_sym_try] = ACTIONS(2369), - [anon_sym_DOT] = ACTIONS(2367), - [anon_sym_true] = ACTIONS(2369), - [anon_sym_false] = ACTIONS(2369), - [sym_none] = ACTIONS(2369), - [sym_undefined] = ACTIONS(2369), - [sym_sink] = ACTIONS(2369), - [sym_integer] = ACTIONS(2369), - [sym_float] = ACTIONS(2367), - [anon_sym_DQUOTE] = ACTIONS(2367), - [sym_multiline_string] = ACTIONS(2367), - [sym_character] = ACTIONS(2367), + [ts_builtin_sym_end] = ACTIONS(2369), + [sym_identifier] = ACTIONS(2371), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2367), + [sym__newline] = ACTIONS(2369), }, [STATE(1069)] = { - [ts_builtin_sym_end] = ACTIONS(2371), - [sym_identifier] = ACTIONS(2373), - [anon_sym_import] = ACTIONS(2373), - [anon_sym_func] = ACTIONS(2373), - [anon_sym_BANG] = ACTIONS(2371), - [anon_sym_struct] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_RPAREN] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym_DASH] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(2371), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_void] = ACTIONS(2373), - [anon_sym_anyopaque] = ACTIONS(2373), - [anon_sym_bool] = ACTIONS(2373), - [anon_sym_int] = ACTIONS(2373), - [anon_sym_float] = ACTIONS(2373), - [anon_sym_range] = ACTIONS(2373), - [anon_sym_i8] = ACTIONS(2373), - [anon_sym_i16] = ACTIONS(2373), - [anon_sym_i32] = ACTIONS(2373), - [anon_sym_i64] = ACTIONS(2373), - [anon_sym_u8] = ACTIONS(2373), - [anon_sym_u16] = ACTIONS(2373), - [anon_sym_u32] = ACTIONS(2373), - [anon_sym_u64] = ACTIONS(2373), - [anon_sym_isize] = ACTIONS(2373), - [anon_sym_usize] = ACTIONS(2373), - [anon_sym_f32] = ACTIONS(2373), - [anon_sym_f64] = ACTIONS(2373), - [anon_sym_c_char] = ACTIONS(2373), - [anon_sym_c_schar] = ACTIONS(2373), - [anon_sym_c_uchar] = ACTIONS(2373), - [anon_sym_c_short] = ACTIONS(2373), - [anon_sym_c_ushort] = ACTIONS(2373), - [anon_sym_c_int] = ACTIONS(2373), - [anon_sym_c_uint] = ACTIONS(2373), - [anon_sym_c_long] = ACTIONS(2373), - [anon_sym_c_ulong] = ACTIONS(2373), - [anon_sym_c_longlong] = ACTIONS(2373), - [anon_sym_c_ulonglong] = ACTIONS(2373), - [anon_sym_c_float] = ACTIONS(2373), - [anon_sym_c_double] = ACTIONS(2373), - [anon_sym_c_longdouble] = ACTIONS(2373), - [anon_sym_return] = ACTIONS(2373), - [anon_sym_yield] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(2373), - [anon_sym_continue] = ACTIONS(2373), - [anon_sym_defer] = ACTIONS(2373), - [anon_sym_errdefer] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_else] = ACTIONS(2373), - [anon_sym_while] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_match] = ACTIONS(2373), - [anon_sym_AMP] = ACTIONS(2371), - [anon_sym_try] = ACTIONS(2373), - [anon_sym_DOT] = ACTIONS(2371), - [anon_sym_true] = ACTIONS(2373), - [anon_sym_false] = ACTIONS(2373), - [sym_none] = ACTIONS(2373), - [sym_undefined] = ACTIONS(2373), - [sym_sink] = ACTIONS(2373), - [sym_integer] = ACTIONS(2373), - [sym_float] = ACTIONS(2371), - [anon_sym_DQUOTE] = ACTIONS(2371), - [sym_multiline_string] = ACTIONS(2371), - [sym_character] = ACTIONS(2371), + [ts_builtin_sym_end] = ACTIONS(2373), + [sym_identifier] = ACTIONS(2375), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2371), + [sym__newline] = ACTIONS(2373), }, [STATE(1070)] = { - [ts_builtin_sym_end] = ACTIONS(2375), - [sym_identifier] = ACTIONS(2377), - [anon_sym_import] = ACTIONS(2377), - [anon_sym_func] = ACTIONS(2377), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_struct] = ACTIONS(2377), - [anon_sym_LPAREN] = ACTIONS(2375), - [anon_sym_RPAREN] = ACTIONS(2375), - [anon_sym_LBRACE] = ACTIONS(2375), - [anon_sym_RBRACE] = ACTIONS(2375), - [anon_sym_DASH] = ACTIONS(2375), - [anon_sym_DOLLAR] = ACTIONS(2375), - [anon_sym_LBRACK] = ACTIONS(2375), - [anon_sym_void] = ACTIONS(2377), - [anon_sym_anyopaque] = ACTIONS(2377), - [anon_sym_bool] = ACTIONS(2377), - [anon_sym_int] = ACTIONS(2377), - [anon_sym_float] = ACTIONS(2377), - [anon_sym_range] = ACTIONS(2377), - [anon_sym_i8] = ACTIONS(2377), - [anon_sym_i16] = ACTIONS(2377), - [anon_sym_i32] = ACTIONS(2377), - [anon_sym_i64] = ACTIONS(2377), - [anon_sym_u8] = ACTIONS(2377), - [anon_sym_u16] = ACTIONS(2377), - [anon_sym_u32] = ACTIONS(2377), - [anon_sym_u64] = ACTIONS(2377), - [anon_sym_isize] = ACTIONS(2377), - [anon_sym_usize] = ACTIONS(2377), - [anon_sym_f32] = ACTIONS(2377), - [anon_sym_f64] = ACTIONS(2377), - [anon_sym_c_char] = ACTIONS(2377), - [anon_sym_c_schar] = ACTIONS(2377), - [anon_sym_c_uchar] = ACTIONS(2377), - [anon_sym_c_short] = ACTIONS(2377), - [anon_sym_c_ushort] = ACTIONS(2377), - [anon_sym_c_int] = ACTIONS(2377), - [anon_sym_c_uint] = ACTIONS(2377), - [anon_sym_c_long] = ACTIONS(2377), - [anon_sym_c_ulong] = ACTIONS(2377), - [anon_sym_c_longlong] = ACTIONS(2377), - [anon_sym_c_ulonglong] = ACTIONS(2377), - [anon_sym_c_float] = ACTIONS(2377), - [anon_sym_c_double] = ACTIONS(2377), - [anon_sym_c_longdouble] = ACTIONS(2377), - [anon_sym_return] = ACTIONS(2377), - [anon_sym_yield] = ACTIONS(2377), - [anon_sym_break] = ACTIONS(2377), - [anon_sym_continue] = ACTIONS(2377), - [anon_sym_defer] = ACTIONS(2377), - [anon_sym_errdefer] = ACTIONS(2377), - [anon_sym_if] = ACTIONS(2377), - [anon_sym_else] = ACTIONS(2377), - [anon_sym_while] = ACTIONS(2377), - [anon_sym_for] = ACTIONS(2377), - [anon_sym_match] = ACTIONS(2377), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_try] = ACTIONS(2377), - [anon_sym_DOT] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(2377), - [anon_sym_false] = ACTIONS(2377), - [sym_none] = ACTIONS(2377), - [sym_undefined] = ACTIONS(2377), - [sym_sink] = ACTIONS(2377), - [sym_integer] = ACTIONS(2377), - [sym_float] = ACTIONS(2375), - [anon_sym_DQUOTE] = ACTIONS(2375), - [sym_multiline_string] = ACTIONS(2375), - [sym_character] = ACTIONS(2375), + [ts_builtin_sym_end] = ACTIONS(2377), + [sym_identifier] = ACTIONS(2379), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2375), + [sym__newline] = ACTIONS(2377), }, [STATE(1071)] = { - [ts_builtin_sym_end] = ACTIONS(2379), - [sym_identifier] = ACTIONS(2381), - [anon_sym_import] = ACTIONS(2381), - [anon_sym_func] = ACTIONS(2381), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_struct] = ACTIONS(2381), - [anon_sym_LPAREN] = ACTIONS(2379), - [anon_sym_RPAREN] = ACTIONS(2379), - [anon_sym_LBRACE] = ACTIONS(2379), - [anon_sym_RBRACE] = ACTIONS(2379), - [anon_sym_DASH] = ACTIONS(2379), - [anon_sym_DOLLAR] = ACTIONS(2379), - [anon_sym_LBRACK] = ACTIONS(2379), - [anon_sym_void] = ACTIONS(2381), - [anon_sym_anyopaque] = ACTIONS(2381), - [anon_sym_bool] = ACTIONS(2381), - [anon_sym_int] = ACTIONS(2381), - [anon_sym_float] = ACTIONS(2381), - [anon_sym_range] = ACTIONS(2381), - [anon_sym_i8] = ACTIONS(2381), - [anon_sym_i16] = ACTIONS(2381), - [anon_sym_i32] = ACTIONS(2381), - [anon_sym_i64] = ACTIONS(2381), - [anon_sym_u8] = ACTIONS(2381), - [anon_sym_u16] = ACTIONS(2381), - [anon_sym_u32] = ACTIONS(2381), - [anon_sym_u64] = ACTIONS(2381), - [anon_sym_isize] = ACTIONS(2381), - [anon_sym_usize] = ACTIONS(2381), - [anon_sym_f32] = ACTIONS(2381), - [anon_sym_f64] = ACTIONS(2381), - [anon_sym_c_char] = ACTIONS(2381), - [anon_sym_c_schar] = ACTIONS(2381), - [anon_sym_c_uchar] = ACTIONS(2381), - [anon_sym_c_short] = ACTIONS(2381), - [anon_sym_c_ushort] = ACTIONS(2381), - [anon_sym_c_int] = ACTIONS(2381), - [anon_sym_c_uint] = ACTIONS(2381), - [anon_sym_c_long] = ACTIONS(2381), - [anon_sym_c_ulong] = ACTIONS(2381), - [anon_sym_c_longlong] = ACTIONS(2381), - [anon_sym_c_ulonglong] = ACTIONS(2381), - [anon_sym_c_float] = ACTIONS(2381), - [anon_sym_c_double] = ACTIONS(2381), - [anon_sym_c_longdouble] = ACTIONS(2381), - [anon_sym_return] = ACTIONS(2381), - [anon_sym_yield] = ACTIONS(2381), - [anon_sym_break] = ACTIONS(2381), - [anon_sym_continue] = ACTIONS(2381), - [anon_sym_defer] = ACTIONS(2381), - [anon_sym_errdefer] = ACTIONS(2381), - [anon_sym_if] = ACTIONS(2381), - [anon_sym_else] = ACTIONS(2381), - [anon_sym_while] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(2381), - [anon_sym_match] = ACTIONS(2381), - [anon_sym_AMP] = ACTIONS(2379), - [anon_sym_try] = ACTIONS(2381), - [anon_sym_DOT] = ACTIONS(2379), - [anon_sym_true] = ACTIONS(2381), - [anon_sym_false] = ACTIONS(2381), - [sym_none] = ACTIONS(2381), - [sym_undefined] = ACTIONS(2381), - [sym_sink] = ACTIONS(2381), - [sym_integer] = ACTIONS(2381), - [sym_float] = ACTIONS(2379), - [anon_sym_DQUOTE] = ACTIONS(2379), - [sym_multiline_string] = ACTIONS(2379), - [sym_character] = ACTIONS(2379), + [ts_builtin_sym_end] = ACTIONS(2381), + [sym_identifier] = ACTIONS(2383), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2379), + [sym__newline] = ACTIONS(2381), }, [STATE(1072)] = { - [ts_builtin_sym_end] = ACTIONS(2383), - [sym_identifier] = ACTIONS(2385), - [anon_sym_import] = ACTIONS(2385), - [anon_sym_func] = ACTIONS(2385), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_struct] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_RPAREN] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_DOLLAR] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_void] = ACTIONS(2385), - [anon_sym_anyopaque] = ACTIONS(2385), - [anon_sym_bool] = ACTIONS(2385), - [anon_sym_int] = ACTIONS(2385), - [anon_sym_float] = ACTIONS(2385), - [anon_sym_range] = ACTIONS(2385), - [anon_sym_i8] = ACTIONS(2385), - [anon_sym_i16] = ACTIONS(2385), - [anon_sym_i32] = ACTIONS(2385), - [anon_sym_i64] = ACTIONS(2385), - [anon_sym_u8] = ACTIONS(2385), - [anon_sym_u16] = ACTIONS(2385), - [anon_sym_u32] = ACTIONS(2385), - [anon_sym_u64] = ACTIONS(2385), - [anon_sym_isize] = ACTIONS(2385), - [anon_sym_usize] = ACTIONS(2385), - [anon_sym_f32] = ACTIONS(2385), - [anon_sym_f64] = ACTIONS(2385), - [anon_sym_c_char] = ACTIONS(2385), - [anon_sym_c_schar] = ACTIONS(2385), - [anon_sym_c_uchar] = ACTIONS(2385), - [anon_sym_c_short] = ACTIONS(2385), - [anon_sym_c_ushort] = ACTIONS(2385), - [anon_sym_c_int] = ACTIONS(2385), - [anon_sym_c_uint] = ACTIONS(2385), - [anon_sym_c_long] = ACTIONS(2385), - [anon_sym_c_ulong] = ACTIONS(2385), - [anon_sym_c_longlong] = ACTIONS(2385), - [anon_sym_c_ulonglong] = ACTIONS(2385), - [anon_sym_c_float] = ACTIONS(2385), - [anon_sym_c_double] = ACTIONS(2385), - [anon_sym_c_longdouble] = ACTIONS(2385), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_yield] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_defer] = ACTIONS(2385), - [anon_sym_errdefer] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_else] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_match] = ACTIONS(2385), - [anon_sym_AMP] = ACTIONS(2383), - [anon_sym_try] = ACTIONS(2385), - [anon_sym_DOT] = ACTIONS(2383), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [sym_none] = ACTIONS(2385), - [sym_undefined] = ACTIONS(2385), - [sym_sink] = ACTIONS(2385), - [sym_integer] = ACTIONS(2385), - [sym_float] = ACTIONS(2383), - [anon_sym_DQUOTE] = ACTIONS(2383), - [sym_multiline_string] = ACTIONS(2383), - [sym_character] = ACTIONS(2383), + [ts_builtin_sym_end] = ACTIONS(2385), + [sym_identifier] = ACTIONS(2387), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2383), + [sym__newline] = ACTIONS(2385), }, [STATE(1073)] = { - [ts_builtin_sym_end] = ACTIONS(2387), - [sym_identifier] = ACTIONS(2389), - [anon_sym_import] = ACTIONS(2389), - [anon_sym_func] = ACTIONS(2389), - [anon_sym_BANG] = ACTIONS(2387), - [anon_sym_struct] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_RPAREN] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_void] = ACTIONS(2389), - [anon_sym_anyopaque] = ACTIONS(2389), - [anon_sym_bool] = ACTIONS(2389), - [anon_sym_int] = ACTIONS(2389), - [anon_sym_float] = ACTIONS(2389), - [anon_sym_range] = ACTIONS(2389), - [anon_sym_i8] = ACTIONS(2389), - [anon_sym_i16] = ACTIONS(2389), - [anon_sym_i32] = ACTIONS(2389), - [anon_sym_i64] = ACTIONS(2389), - [anon_sym_u8] = ACTIONS(2389), - [anon_sym_u16] = ACTIONS(2389), - [anon_sym_u32] = ACTIONS(2389), - [anon_sym_u64] = ACTIONS(2389), - [anon_sym_isize] = ACTIONS(2389), - [anon_sym_usize] = ACTIONS(2389), - [anon_sym_f32] = ACTIONS(2389), - [anon_sym_f64] = ACTIONS(2389), - [anon_sym_c_char] = ACTIONS(2389), - [anon_sym_c_schar] = ACTIONS(2389), - [anon_sym_c_uchar] = ACTIONS(2389), - [anon_sym_c_short] = ACTIONS(2389), - [anon_sym_c_ushort] = ACTIONS(2389), - [anon_sym_c_int] = ACTIONS(2389), - [anon_sym_c_uint] = ACTIONS(2389), - [anon_sym_c_long] = ACTIONS(2389), - [anon_sym_c_ulong] = ACTIONS(2389), - [anon_sym_c_longlong] = ACTIONS(2389), - [anon_sym_c_ulonglong] = ACTIONS(2389), - [anon_sym_c_float] = ACTIONS(2389), - [anon_sym_c_double] = ACTIONS(2389), - [anon_sym_c_longdouble] = ACTIONS(2389), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_yield] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_defer] = ACTIONS(2389), - [anon_sym_errdefer] = ACTIONS(2389), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_else] = ACTIONS(2389), - [anon_sym_while] = ACTIONS(2389), - [anon_sym_for] = ACTIONS(2389), - [anon_sym_match] = ACTIONS(2389), - [anon_sym_AMP] = ACTIONS(2387), - [anon_sym_try] = ACTIONS(2389), - [anon_sym_DOT] = ACTIONS(2387), - [anon_sym_true] = ACTIONS(2389), - [anon_sym_false] = ACTIONS(2389), - [sym_none] = ACTIONS(2389), - [sym_undefined] = ACTIONS(2389), - [sym_sink] = ACTIONS(2389), - [sym_integer] = ACTIONS(2389), - [sym_float] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2387), - [sym_multiline_string] = ACTIONS(2387), - [sym_character] = ACTIONS(2387), + [ts_builtin_sym_end] = ACTIONS(2389), + [sym_identifier] = ACTIONS(2391), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2387), + [sym__newline] = ACTIONS(2389), }, [STATE(1074)] = { - [ts_builtin_sym_end] = ACTIONS(2391), - [sym_identifier] = ACTIONS(2393), - [anon_sym_import] = ACTIONS(2393), - [anon_sym_func] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_struct] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_RPAREN] = ACTIONS(2391), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_DASH] = ACTIONS(2391), - [anon_sym_DOLLAR] = ACTIONS(2391), - [anon_sym_LBRACK] = ACTIONS(2391), - [anon_sym_void] = ACTIONS(2393), - [anon_sym_anyopaque] = ACTIONS(2393), - [anon_sym_bool] = ACTIONS(2393), - [anon_sym_int] = ACTIONS(2393), - [anon_sym_float] = ACTIONS(2393), - [anon_sym_range] = ACTIONS(2393), - [anon_sym_i8] = ACTIONS(2393), - [anon_sym_i16] = ACTIONS(2393), - [anon_sym_i32] = ACTIONS(2393), - [anon_sym_i64] = ACTIONS(2393), - [anon_sym_u8] = ACTIONS(2393), - [anon_sym_u16] = ACTIONS(2393), - [anon_sym_u32] = ACTIONS(2393), - [anon_sym_u64] = ACTIONS(2393), - [anon_sym_isize] = ACTIONS(2393), - [anon_sym_usize] = ACTIONS(2393), - [anon_sym_f32] = ACTIONS(2393), - [anon_sym_f64] = ACTIONS(2393), - [anon_sym_c_char] = ACTIONS(2393), - [anon_sym_c_schar] = ACTIONS(2393), - [anon_sym_c_uchar] = ACTIONS(2393), - [anon_sym_c_short] = ACTIONS(2393), - [anon_sym_c_ushort] = ACTIONS(2393), - [anon_sym_c_int] = ACTIONS(2393), - [anon_sym_c_uint] = ACTIONS(2393), - [anon_sym_c_long] = ACTIONS(2393), - [anon_sym_c_ulong] = ACTIONS(2393), - [anon_sym_c_longlong] = ACTIONS(2393), - [anon_sym_c_ulonglong] = ACTIONS(2393), - [anon_sym_c_float] = ACTIONS(2393), - [anon_sym_c_double] = ACTIONS(2393), - [anon_sym_c_longdouble] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_yield] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_defer] = ACTIONS(2393), - [anon_sym_errdefer] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_else] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_match] = ACTIONS(2393), - [anon_sym_AMP] = ACTIONS(2391), - [anon_sym_try] = ACTIONS(2393), - [anon_sym_DOT] = ACTIONS(2391), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [sym_none] = ACTIONS(2393), - [sym_undefined] = ACTIONS(2393), - [sym_sink] = ACTIONS(2393), - [sym_integer] = ACTIONS(2393), - [sym_float] = ACTIONS(2391), - [anon_sym_DQUOTE] = ACTIONS(2391), - [sym_multiline_string] = ACTIONS(2391), - [sym_character] = ACTIONS(2391), + [ts_builtin_sym_end] = ACTIONS(2393), + [sym_identifier] = ACTIONS(2395), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2391), + [sym__newline] = ACTIONS(2393), }, [STATE(1075)] = { - [ts_builtin_sym_end] = ACTIONS(2395), - [sym_identifier] = ACTIONS(2397), - [anon_sym_import] = ACTIONS(2397), - [anon_sym_func] = ACTIONS(2397), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_struct] = ACTIONS(2397), - [anon_sym_LPAREN] = ACTIONS(2395), - [anon_sym_RPAREN] = ACTIONS(2395), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_RBRACE] = ACTIONS(2395), - [anon_sym_DASH] = ACTIONS(2395), - [anon_sym_DOLLAR] = ACTIONS(2395), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_void] = ACTIONS(2397), - [anon_sym_anyopaque] = ACTIONS(2397), - [anon_sym_bool] = ACTIONS(2397), - [anon_sym_int] = ACTIONS(2397), - [anon_sym_float] = ACTIONS(2397), - [anon_sym_range] = ACTIONS(2397), - [anon_sym_i8] = ACTIONS(2397), - [anon_sym_i16] = ACTIONS(2397), - [anon_sym_i32] = ACTIONS(2397), - [anon_sym_i64] = ACTIONS(2397), - [anon_sym_u8] = ACTIONS(2397), - [anon_sym_u16] = ACTIONS(2397), - [anon_sym_u32] = ACTIONS(2397), - [anon_sym_u64] = ACTIONS(2397), - [anon_sym_isize] = ACTIONS(2397), - [anon_sym_usize] = ACTIONS(2397), - [anon_sym_f32] = ACTIONS(2397), - [anon_sym_f64] = ACTIONS(2397), - [anon_sym_c_char] = ACTIONS(2397), - [anon_sym_c_schar] = ACTIONS(2397), - [anon_sym_c_uchar] = ACTIONS(2397), - [anon_sym_c_short] = ACTIONS(2397), - [anon_sym_c_ushort] = ACTIONS(2397), - [anon_sym_c_int] = ACTIONS(2397), - [anon_sym_c_uint] = ACTIONS(2397), - [anon_sym_c_long] = ACTIONS(2397), - [anon_sym_c_ulong] = ACTIONS(2397), - [anon_sym_c_longlong] = ACTIONS(2397), - [anon_sym_c_ulonglong] = ACTIONS(2397), - [anon_sym_c_float] = ACTIONS(2397), - [anon_sym_c_double] = ACTIONS(2397), - [anon_sym_c_longdouble] = ACTIONS(2397), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_yield] = ACTIONS(2397), - [anon_sym_break] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2397), - [anon_sym_defer] = ACTIONS(2397), - [anon_sym_errdefer] = ACTIONS(2397), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_else] = ACTIONS(2397), - [anon_sym_while] = ACTIONS(2397), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_match] = ACTIONS(2397), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_try] = ACTIONS(2397), - [anon_sym_DOT] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(2397), - [anon_sym_false] = ACTIONS(2397), - [sym_none] = ACTIONS(2397), - [sym_undefined] = ACTIONS(2397), - [sym_sink] = ACTIONS(2397), - [sym_integer] = ACTIONS(2397), - [sym_float] = ACTIONS(2395), - [anon_sym_DQUOTE] = ACTIONS(2395), - [sym_multiline_string] = ACTIONS(2395), - [sym_character] = ACTIONS(2395), + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2399), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2395), + [sym__newline] = ACTIONS(2397), }, [STATE(1076)] = { - [ts_builtin_sym_end] = ACTIONS(2399), - [sym_identifier] = ACTIONS(2401), - [anon_sym_import] = ACTIONS(2401), - [anon_sym_func] = ACTIONS(2401), - [anon_sym_BANG] = ACTIONS(2399), - [anon_sym_struct] = ACTIONS(2401), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_RPAREN] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_RBRACE] = ACTIONS(2399), - [anon_sym_DASH] = ACTIONS(2399), - [anon_sym_DOLLAR] = ACTIONS(2399), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_void] = ACTIONS(2401), - [anon_sym_anyopaque] = ACTIONS(2401), - [anon_sym_bool] = ACTIONS(2401), - [anon_sym_int] = ACTIONS(2401), - [anon_sym_float] = ACTIONS(2401), - [anon_sym_range] = ACTIONS(2401), - [anon_sym_i8] = ACTIONS(2401), - [anon_sym_i16] = ACTIONS(2401), - [anon_sym_i32] = ACTIONS(2401), - [anon_sym_i64] = ACTIONS(2401), - [anon_sym_u8] = ACTIONS(2401), - [anon_sym_u16] = ACTIONS(2401), - [anon_sym_u32] = ACTIONS(2401), - [anon_sym_u64] = ACTIONS(2401), - [anon_sym_isize] = ACTIONS(2401), - [anon_sym_usize] = ACTIONS(2401), - [anon_sym_f32] = ACTIONS(2401), - [anon_sym_f64] = ACTIONS(2401), - [anon_sym_c_char] = ACTIONS(2401), - [anon_sym_c_schar] = ACTIONS(2401), - [anon_sym_c_uchar] = ACTIONS(2401), - [anon_sym_c_short] = ACTIONS(2401), - [anon_sym_c_ushort] = ACTIONS(2401), - [anon_sym_c_int] = ACTIONS(2401), - [anon_sym_c_uint] = ACTIONS(2401), - [anon_sym_c_long] = ACTIONS(2401), - [anon_sym_c_ulong] = ACTIONS(2401), - [anon_sym_c_longlong] = ACTIONS(2401), - [anon_sym_c_ulonglong] = ACTIONS(2401), - [anon_sym_c_float] = ACTIONS(2401), - [anon_sym_c_double] = ACTIONS(2401), - [anon_sym_c_longdouble] = ACTIONS(2401), - [anon_sym_return] = ACTIONS(2401), - [anon_sym_yield] = ACTIONS(2401), - [anon_sym_break] = ACTIONS(2401), - [anon_sym_continue] = ACTIONS(2401), - [anon_sym_defer] = ACTIONS(2401), - [anon_sym_errdefer] = ACTIONS(2401), - [anon_sym_if] = ACTIONS(2401), - [anon_sym_else] = ACTIONS(2401), - [anon_sym_while] = ACTIONS(2401), - [anon_sym_for] = ACTIONS(2401), - [anon_sym_match] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_try] = ACTIONS(2401), - [anon_sym_DOT] = ACTIONS(2399), - [anon_sym_true] = ACTIONS(2401), - [anon_sym_false] = ACTIONS(2401), - [sym_none] = ACTIONS(2401), - [sym_undefined] = ACTIONS(2401), - [sym_sink] = ACTIONS(2401), - [sym_integer] = ACTIONS(2401), - [sym_float] = ACTIONS(2399), - [anon_sym_DQUOTE] = ACTIONS(2399), - [sym_multiline_string] = ACTIONS(2399), - [sym_character] = ACTIONS(2399), + [ts_builtin_sym_end] = ACTIONS(2401), + [sym_identifier] = ACTIONS(2403), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2399), + [sym__newline] = ACTIONS(2401), }, [STATE(1077)] = { - [ts_builtin_sym_end] = ACTIONS(2403), - [sym_identifier] = ACTIONS(2405), - [anon_sym_import] = ACTIONS(2405), - [anon_sym_func] = ACTIONS(2405), - [anon_sym_BANG] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_RPAREN] = ACTIONS(2403), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_RBRACE] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_DOLLAR] = ACTIONS(2403), - [anon_sym_LBRACK] = ACTIONS(2403), - [anon_sym_void] = ACTIONS(2405), - [anon_sym_anyopaque] = ACTIONS(2405), - [anon_sym_bool] = ACTIONS(2405), - [anon_sym_int] = ACTIONS(2405), - [anon_sym_float] = ACTIONS(2405), - [anon_sym_range] = ACTIONS(2405), - [anon_sym_i8] = ACTIONS(2405), - [anon_sym_i16] = ACTIONS(2405), - [anon_sym_i32] = ACTIONS(2405), - [anon_sym_i64] = ACTIONS(2405), - [anon_sym_u8] = ACTIONS(2405), - [anon_sym_u16] = ACTIONS(2405), - [anon_sym_u32] = ACTIONS(2405), - [anon_sym_u64] = ACTIONS(2405), - [anon_sym_isize] = ACTIONS(2405), - [anon_sym_usize] = ACTIONS(2405), - [anon_sym_f32] = ACTIONS(2405), - [anon_sym_f64] = ACTIONS(2405), - [anon_sym_c_char] = ACTIONS(2405), - [anon_sym_c_schar] = ACTIONS(2405), - [anon_sym_c_uchar] = ACTIONS(2405), - [anon_sym_c_short] = ACTIONS(2405), - [anon_sym_c_ushort] = ACTIONS(2405), - [anon_sym_c_int] = ACTIONS(2405), - [anon_sym_c_uint] = ACTIONS(2405), - [anon_sym_c_long] = ACTIONS(2405), - [anon_sym_c_ulong] = ACTIONS(2405), - [anon_sym_c_longlong] = ACTIONS(2405), - [anon_sym_c_ulonglong] = ACTIONS(2405), - [anon_sym_c_float] = ACTIONS(2405), - [anon_sym_c_double] = ACTIONS(2405), - [anon_sym_c_longdouble] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_yield] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_defer] = ACTIONS(2405), - [anon_sym_errdefer] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_match] = ACTIONS(2405), - [anon_sym_AMP] = ACTIONS(2403), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_DOT] = ACTIONS(2403), - [anon_sym_true] = ACTIONS(2405), - [anon_sym_false] = ACTIONS(2405), - [sym_none] = ACTIONS(2405), - [sym_undefined] = ACTIONS(2405), - [sym_sink] = ACTIONS(2405), - [sym_integer] = ACTIONS(2405), - [sym_float] = ACTIONS(2403), - [anon_sym_DQUOTE] = ACTIONS(2403), - [sym_multiline_string] = ACTIONS(2403), - [sym_character] = ACTIONS(2403), + [ts_builtin_sym_end] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2407), + [anon_sym_import] = ACTIONS(2407), + [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_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_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(2403), + [sym__newline] = ACTIONS(2405), }, [STATE(1078)] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2409), - [anon_sym_import] = ACTIONS(2409), - [anon_sym_func] = ACTIONS(2409), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_struct] = ACTIONS(2409), - [anon_sym_LPAREN] = ACTIONS(2407), - [anon_sym_RPAREN] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2407), - [anon_sym_DOLLAR] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_void] = ACTIONS(2409), - [anon_sym_anyopaque] = ACTIONS(2409), - [anon_sym_bool] = ACTIONS(2409), - [anon_sym_int] = ACTIONS(2409), - [anon_sym_float] = ACTIONS(2409), - [anon_sym_range] = ACTIONS(2409), - [anon_sym_i8] = ACTIONS(2409), - [anon_sym_i16] = ACTIONS(2409), - [anon_sym_i32] = ACTIONS(2409), - [anon_sym_i64] = ACTIONS(2409), - [anon_sym_u8] = ACTIONS(2409), - [anon_sym_u16] = ACTIONS(2409), - [anon_sym_u32] = ACTIONS(2409), - [anon_sym_u64] = ACTIONS(2409), - [anon_sym_isize] = ACTIONS(2409), - [anon_sym_usize] = ACTIONS(2409), - [anon_sym_f32] = ACTIONS(2409), - [anon_sym_f64] = ACTIONS(2409), - [anon_sym_c_char] = ACTIONS(2409), - [anon_sym_c_schar] = ACTIONS(2409), - [anon_sym_c_uchar] = ACTIONS(2409), - [anon_sym_c_short] = ACTIONS(2409), - [anon_sym_c_ushort] = ACTIONS(2409), - [anon_sym_c_int] = ACTIONS(2409), - [anon_sym_c_uint] = ACTIONS(2409), - [anon_sym_c_long] = ACTIONS(2409), - [anon_sym_c_ulong] = ACTIONS(2409), - [anon_sym_c_longlong] = ACTIONS(2409), - [anon_sym_c_ulonglong] = ACTIONS(2409), - [anon_sym_c_float] = ACTIONS(2409), - [anon_sym_c_double] = ACTIONS(2409), - [anon_sym_c_longdouble] = ACTIONS(2409), - [anon_sym_return] = ACTIONS(2409), - [anon_sym_yield] = ACTIONS(2409), - [anon_sym_break] = ACTIONS(2409), - [anon_sym_continue] = ACTIONS(2409), - [anon_sym_defer] = ACTIONS(2409), - [anon_sym_errdefer] = ACTIONS(2409), - [anon_sym_if] = ACTIONS(2409), - [anon_sym_else] = ACTIONS(2409), - [anon_sym_while] = ACTIONS(2409), - [anon_sym_for] = ACTIONS(2409), - [anon_sym_match] = ACTIONS(2409), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_try] = ACTIONS(2409), - [anon_sym_DOT] = ACTIONS(2407), - [anon_sym_true] = ACTIONS(2409), - [anon_sym_false] = ACTIONS(2409), - [sym_none] = ACTIONS(2409), - [sym_undefined] = ACTIONS(2409), - [sym_sink] = ACTIONS(2409), - [sym_integer] = ACTIONS(2409), - [sym_float] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_multiline_string] = ACTIONS(2407), - [sym_character] = ACTIONS(2407), + [ts_builtin_sym_end] = ACTIONS(2409), + [sym_identifier] = ACTIONS(2411), + [anon_sym_import] = 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_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_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(2407), + [sym__newline] = ACTIONS(2409), }, [STATE(1079)] = { - [ts_builtin_sym_end] = ACTIONS(2411), - [sym_identifier] = ACTIONS(2413), - [anon_sym_import] = ACTIONS(2413), - [anon_sym_func] = ACTIONS(2413), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_struct] = ACTIONS(2413), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2411), - [anon_sym_DASH] = ACTIONS(2411), - [anon_sym_DOLLAR] = ACTIONS(2411), - [anon_sym_LBRACK] = ACTIONS(2411), - [anon_sym_void] = ACTIONS(2413), - [anon_sym_anyopaque] = ACTIONS(2413), - [anon_sym_bool] = ACTIONS(2413), - [anon_sym_int] = ACTIONS(2413), - [anon_sym_float] = ACTIONS(2413), - [anon_sym_range] = ACTIONS(2413), - [anon_sym_i8] = ACTIONS(2413), - [anon_sym_i16] = ACTIONS(2413), - [anon_sym_i32] = ACTIONS(2413), - [anon_sym_i64] = ACTIONS(2413), - [anon_sym_u8] = ACTIONS(2413), - [anon_sym_u16] = ACTIONS(2413), - [anon_sym_u32] = ACTIONS(2413), - [anon_sym_u64] = ACTIONS(2413), - [anon_sym_isize] = ACTIONS(2413), - [anon_sym_usize] = ACTIONS(2413), - [anon_sym_f32] = ACTIONS(2413), - [anon_sym_f64] = ACTIONS(2413), - [anon_sym_c_char] = ACTIONS(2413), - [anon_sym_c_schar] = ACTIONS(2413), - [anon_sym_c_uchar] = ACTIONS(2413), - [anon_sym_c_short] = ACTIONS(2413), - [anon_sym_c_ushort] = ACTIONS(2413), - [anon_sym_c_int] = ACTIONS(2413), - [anon_sym_c_uint] = ACTIONS(2413), - [anon_sym_c_long] = ACTIONS(2413), - [anon_sym_c_ulong] = ACTIONS(2413), - [anon_sym_c_longlong] = ACTIONS(2413), - [anon_sym_c_ulonglong] = ACTIONS(2413), - [anon_sym_c_float] = ACTIONS(2413), - [anon_sym_c_double] = ACTIONS(2413), - [anon_sym_c_longdouble] = ACTIONS(2413), - [anon_sym_return] = ACTIONS(2413), - [anon_sym_yield] = ACTIONS(2413), - [anon_sym_break] = ACTIONS(2413), - [anon_sym_continue] = ACTIONS(2413), - [anon_sym_defer] = ACTIONS(2413), - [anon_sym_errdefer] = ACTIONS(2413), - [anon_sym_if] = ACTIONS(2413), - [anon_sym_else] = ACTIONS(2413), - [anon_sym_while] = ACTIONS(2413), - [anon_sym_for] = ACTIONS(2413), - [anon_sym_match] = ACTIONS(2413), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_try] = ACTIONS(2413), - [anon_sym_DOT] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(2413), - [anon_sym_false] = ACTIONS(2413), - [sym_none] = ACTIONS(2413), - [sym_undefined] = ACTIONS(2413), - [sym_sink] = ACTIONS(2413), - [sym_integer] = ACTIONS(2413), - [sym_float] = ACTIONS(2411), - [anon_sym_DQUOTE] = ACTIONS(2411), - [sym_multiline_string] = ACTIONS(2411), - [sym_character] = ACTIONS(2411), + [ts_builtin_sym_end] = ACTIONS(2413), + [sym_identifier] = ACTIONS(2415), + [anon_sym_import] = 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_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_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(2411), + [sym__newline] = ACTIONS(2413), }, [STATE(1080)] = { - [ts_builtin_sym_end] = ACTIONS(2415), - [sym_identifier] = ACTIONS(2417), - [anon_sym_import] = ACTIONS(2417), - [anon_sym_func] = ACTIONS(2417), - [anon_sym_BANG] = ACTIONS(2415), - [anon_sym_struct] = ACTIONS(2417), - [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_RPAREN] = ACTIONS(2415), - [anon_sym_LBRACE] = ACTIONS(2415), - [anon_sym_RBRACE] = ACTIONS(2415), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_DOLLAR] = ACTIONS(2415), - [anon_sym_LBRACK] = ACTIONS(2415), - [anon_sym_void] = ACTIONS(2417), - [anon_sym_anyopaque] = ACTIONS(2417), - [anon_sym_bool] = ACTIONS(2417), - [anon_sym_int] = ACTIONS(2417), - [anon_sym_float] = ACTIONS(2417), - [anon_sym_range] = ACTIONS(2417), - [anon_sym_i8] = ACTIONS(2417), - [anon_sym_i16] = ACTIONS(2417), - [anon_sym_i32] = ACTIONS(2417), - [anon_sym_i64] = ACTIONS(2417), - [anon_sym_u8] = ACTIONS(2417), - [anon_sym_u16] = ACTIONS(2417), - [anon_sym_u32] = ACTIONS(2417), - [anon_sym_u64] = ACTIONS(2417), - [anon_sym_isize] = ACTIONS(2417), - [anon_sym_usize] = ACTIONS(2417), - [anon_sym_f32] = ACTIONS(2417), - [anon_sym_f64] = ACTIONS(2417), - [anon_sym_c_char] = ACTIONS(2417), - [anon_sym_c_schar] = ACTIONS(2417), - [anon_sym_c_uchar] = ACTIONS(2417), - [anon_sym_c_short] = ACTIONS(2417), - [anon_sym_c_ushort] = ACTIONS(2417), - [anon_sym_c_int] = ACTIONS(2417), - [anon_sym_c_uint] = ACTIONS(2417), - [anon_sym_c_long] = ACTIONS(2417), - [anon_sym_c_ulong] = ACTIONS(2417), - [anon_sym_c_longlong] = ACTIONS(2417), - [anon_sym_c_ulonglong] = ACTIONS(2417), - [anon_sym_c_float] = ACTIONS(2417), - [anon_sym_c_double] = ACTIONS(2417), - [anon_sym_c_longdouble] = ACTIONS(2417), - [anon_sym_return] = ACTIONS(2417), - [anon_sym_yield] = ACTIONS(2417), - [anon_sym_break] = ACTIONS(2417), - [anon_sym_continue] = ACTIONS(2417), - [anon_sym_defer] = ACTIONS(2417), - [anon_sym_errdefer] = ACTIONS(2417), - [anon_sym_if] = ACTIONS(2417), - [anon_sym_else] = ACTIONS(2417), - [anon_sym_while] = ACTIONS(2417), - [anon_sym_for] = ACTIONS(2417), - [anon_sym_match] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2415), - [anon_sym_try] = ACTIONS(2417), - [anon_sym_DOT] = ACTIONS(2415), - [anon_sym_true] = ACTIONS(2417), - [anon_sym_false] = ACTIONS(2417), - [sym_none] = ACTIONS(2417), - [sym_undefined] = ACTIONS(2417), - [sym_sink] = ACTIONS(2417), - [sym_integer] = ACTIONS(2417), - [sym_float] = ACTIONS(2415), - [anon_sym_DQUOTE] = ACTIONS(2415), - [sym_multiline_string] = ACTIONS(2415), - [sym_character] = ACTIONS(2415), + [ts_builtin_sym_end] = ACTIONS(2417), + [sym_identifier] = ACTIONS(2419), + [anon_sym_import] = 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_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_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(2415), + [sym__newline] = ACTIONS(2417), }, [STATE(1081)] = { - [ts_builtin_sym_end] = ACTIONS(2419), - [sym_identifier] = ACTIONS(2421), - [anon_sym_import] = ACTIONS(2421), - [anon_sym_func] = ACTIONS(2421), - [anon_sym_BANG] = ACTIONS(2419), - [anon_sym_struct] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_DOLLAR] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(2419), - [anon_sym_void] = ACTIONS(2421), - [anon_sym_anyopaque] = ACTIONS(2421), - [anon_sym_bool] = ACTIONS(2421), - [anon_sym_int] = ACTIONS(2421), - [anon_sym_float] = ACTIONS(2421), - [anon_sym_range] = ACTIONS(2421), - [anon_sym_i8] = ACTIONS(2421), - [anon_sym_i16] = ACTIONS(2421), - [anon_sym_i32] = ACTIONS(2421), - [anon_sym_i64] = ACTIONS(2421), - [anon_sym_u8] = ACTIONS(2421), - [anon_sym_u16] = ACTIONS(2421), - [anon_sym_u32] = ACTIONS(2421), - [anon_sym_u64] = ACTIONS(2421), - [anon_sym_isize] = ACTIONS(2421), - [anon_sym_usize] = ACTIONS(2421), - [anon_sym_f32] = ACTIONS(2421), - [anon_sym_f64] = ACTIONS(2421), - [anon_sym_c_char] = ACTIONS(2421), - [anon_sym_c_schar] = ACTIONS(2421), - [anon_sym_c_uchar] = ACTIONS(2421), - [anon_sym_c_short] = ACTIONS(2421), - [anon_sym_c_ushort] = ACTIONS(2421), - [anon_sym_c_int] = ACTIONS(2421), - [anon_sym_c_uint] = ACTIONS(2421), - [anon_sym_c_long] = ACTIONS(2421), - [anon_sym_c_ulong] = ACTIONS(2421), - [anon_sym_c_longlong] = ACTIONS(2421), - [anon_sym_c_ulonglong] = ACTIONS(2421), - [anon_sym_c_float] = ACTIONS(2421), - [anon_sym_c_double] = ACTIONS(2421), - [anon_sym_c_longdouble] = ACTIONS(2421), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_yield] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_defer] = ACTIONS(2421), - [anon_sym_errdefer] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_else] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_match] = ACTIONS(2421), - [anon_sym_AMP] = ACTIONS(2419), - [anon_sym_try] = ACTIONS(2421), - [anon_sym_DOT] = ACTIONS(2419), - [anon_sym_true] = ACTIONS(2421), - [anon_sym_false] = ACTIONS(2421), - [sym_none] = ACTIONS(2421), - [sym_undefined] = ACTIONS(2421), - [sym_sink] = ACTIONS(2421), - [sym_integer] = ACTIONS(2421), - [sym_float] = ACTIONS(2419), - [anon_sym_DQUOTE] = ACTIONS(2419), - [sym_multiline_string] = ACTIONS(2419), - [sym_character] = ACTIONS(2419), + [ts_builtin_sym_end] = ACTIONS(2421), + [sym_identifier] = ACTIONS(2423), + [anon_sym_import] = 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_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_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(2419), + [sym__newline] = ACTIONS(2421), }, [STATE(1082)] = { - [ts_builtin_sym_end] = ACTIONS(2423), - [sym_identifier] = ACTIONS(2425), - [anon_sym_import] = ACTIONS(2425), - [anon_sym_func] = ACTIONS(2425), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_struct] = ACTIONS(2425), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_RPAREN] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2423), - [anon_sym_DOLLAR] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2423), - [anon_sym_void] = ACTIONS(2425), - [anon_sym_anyopaque] = ACTIONS(2425), - [anon_sym_bool] = ACTIONS(2425), - [anon_sym_int] = ACTIONS(2425), - [anon_sym_float] = ACTIONS(2425), - [anon_sym_range] = ACTIONS(2425), - [anon_sym_i8] = ACTIONS(2425), - [anon_sym_i16] = ACTIONS(2425), - [anon_sym_i32] = ACTIONS(2425), - [anon_sym_i64] = ACTIONS(2425), - [anon_sym_u8] = ACTIONS(2425), - [anon_sym_u16] = ACTIONS(2425), - [anon_sym_u32] = ACTIONS(2425), - [anon_sym_u64] = ACTIONS(2425), - [anon_sym_isize] = ACTIONS(2425), - [anon_sym_usize] = ACTIONS(2425), - [anon_sym_f32] = ACTIONS(2425), - [anon_sym_f64] = ACTIONS(2425), - [anon_sym_c_char] = ACTIONS(2425), - [anon_sym_c_schar] = ACTIONS(2425), - [anon_sym_c_uchar] = ACTIONS(2425), - [anon_sym_c_short] = ACTIONS(2425), - [anon_sym_c_ushort] = ACTIONS(2425), - [anon_sym_c_int] = ACTIONS(2425), - [anon_sym_c_uint] = ACTIONS(2425), - [anon_sym_c_long] = ACTIONS(2425), - [anon_sym_c_ulong] = ACTIONS(2425), - [anon_sym_c_longlong] = ACTIONS(2425), - [anon_sym_c_ulonglong] = ACTIONS(2425), - [anon_sym_c_float] = ACTIONS(2425), - [anon_sym_c_double] = ACTIONS(2425), - [anon_sym_c_longdouble] = ACTIONS(2425), - [anon_sym_return] = ACTIONS(2425), - [anon_sym_yield] = ACTIONS(2425), - [anon_sym_break] = ACTIONS(2425), - [anon_sym_continue] = ACTIONS(2425), - [anon_sym_defer] = ACTIONS(2425), - [anon_sym_errdefer] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_else] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_match] = ACTIONS(2425), - [anon_sym_AMP] = ACTIONS(2423), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_DOT] = ACTIONS(2423), - [anon_sym_true] = ACTIONS(2425), - [anon_sym_false] = ACTIONS(2425), - [sym_none] = ACTIONS(2425), - [sym_undefined] = ACTIONS(2425), - [sym_sink] = ACTIONS(2425), - [sym_integer] = ACTIONS(2425), - [sym_float] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(2423), - [sym_multiline_string] = ACTIONS(2423), - [sym_character] = ACTIONS(2423), + [ts_builtin_sym_end] = ACTIONS(2425), + [sym_identifier] = ACTIONS(2427), + [anon_sym_import] = 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_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_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(2423), + [sym__newline] = ACTIONS(2425), }, [STATE(1083)] = { - [ts_builtin_sym_end] = ACTIONS(2427), - [sym_identifier] = ACTIONS(2429), - [anon_sym_import] = ACTIONS(2429), - [anon_sym_func] = ACTIONS(2429), - [anon_sym_BANG] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_RPAREN] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_RBRACE] = ACTIONS(2427), - [anon_sym_DASH] = ACTIONS(2427), - [anon_sym_DOLLAR] = ACTIONS(2427), - [anon_sym_LBRACK] = ACTIONS(2427), - [anon_sym_void] = ACTIONS(2429), - [anon_sym_anyopaque] = ACTIONS(2429), - [anon_sym_bool] = ACTIONS(2429), - [anon_sym_int] = ACTIONS(2429), - [anon_sym_float] = ACTIONS(2429), - [anon_sym_range] = ACTIONS(2429), - [anon_sym_i8] = ACTIONS(2429), - [anon_sym_i16] = ACTIONS(2429), - [anon_sym_i32] = ACTIONS(2429), - [anon_sym_i64] = ACTIONS(2429), - [anon_sym_u8] = ACTIONS(2429), - [anon_sym_u16] = ACTIONS(2429), - [anon_sym_u32] = ACTIONS(2429), - [anon_sym_u64] = ACTIONS(2429), - [anon_sym_isize] = ACTIONS(2429), - [anon_sym_usize] = ACTIONS(2429), - [anon_sym_f32] = ACTIONS(2429), - [anon_sym_f64] = ACTIONS(2429), - [anon_sym_c_char] = ACTIONS(2429), - [anon_sym_c_schar] = ACTIONS(2429), - [anon_sym_c_uchar] = ACTIONS(2429), - [anon_sym_c_short] = ACTIONS(2429), - [anon_sym_c_ushort] = ACTIONS(2429), - [anon_sym_c_int] = ACTIONS(2429), - [anon_sym_c_uint] = ACTIONS(2429), - [anon_sym_c_long] = ACTIONS(2429), - [anon_sym_c_ulong] = ACTIONS(2429), - [anon_sym_c_longlong] = ACTIONS(2429), - [anon_sym_c_ulonglong] = ACTIONS(2429), - [anon_sym_c_float] = ACTIONS(2429), - [anon_sym_c_double] = ACTIONS(2429), - [anon_sym_c_longdouble] = ACTIONS(2429), - [anon_sym_return] = ACTIONS(2429), - [anon_sym_yield] = ACTIONS(2429), - [anon_sym_break] = ACTIONS(2429), - [anon_sym_continue] = ACTIONS(2429), - [anon_sym_defer] = ACTIONS(2429), - [anon_sym_errdefer] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_else] = ACTIONS(2429), - [anon_sym_while] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2429), - [anon_sym_match] = ACTIONS(2429), - [anon_sym_AMP] = ACTIONS(2427), - [anon_sym_try] = ACTIONS(2429), - [anon_sym_DOT] = ACTIONS(2427), - [anon_sym_true] = ACTIONS(2429), - [anon_sym_false] = ACTIONS(2429), - [sym_none] = ACTIONS(2429), - [sym_undefined] = ACTIONS(2429), - [sym_sink] = ACTIONS(2429), - [sym_integer] = ACTIONS(2429), - [sym_float] = ACTIONS(2427), - [anon_sym_DQUOTE] = ACTIONS(2427), - [sym_multiline_string] = ACTIONS(2427), - [sym_character] = ACTIONS(2427), + [ts_builtin_sym_end] = ACTIONS(2429), + [sym_identifier] = ACTIONS(2431), + [anon_sym_import] = 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_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_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(2427), + [sym__newline] = ACTIONS(2429), }, [STATE(1084)] = { - [ts_builtin_sym_end] = ACTIONS(2431), - [sym_identifier] = ACTIONS(2433), - [anon_sym_import] = ACTIONS(2433), - [anon_sym_func] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_RPAREN] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_DASH] = ACTIONS(2431), - [anon_sym_DOLLAR] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_void] = ACTIONS(2433), - [anon_sym_anyopaque] = ACTIONS(2433), - [anon_sym_bool] = ACTIONS(2433), - [anon_sym_int] = ACTIONS(2433), - [anon_sym_float] = ACTIONS(2433), - [anon_sym_range] = ACTIONS(2433), - [anon_sym_i8] = ACTIONS(2433), - [anon_sym_i16] = ACTIONS(2433), - [anon_sym_i32] = ACTIONS(2433), - [anon_sym_i64] = ACTIONS(2433), - [anon_sym_u8] = ACTIONS(2433), - [anon_sym_u16] = ACTIONS(2433), - [anon_sym_u32] = ACTIONS(2433), - [anon_sym_u64] = ACTIONS(2433), - [anon_sym_isize] = ACTIONS(2433), - [anon_sym_usize] = ACTIONS(2433), - [anon_sym_f32] = ACTIONS(2433), - [anon_sym_f64] = ACTIONS(2433), - [anon_sym_c_char] = ACTIONS(2433), - [anon_sym_c_schar] = ACTIONS(2433), - [anon_sym_c_uchar] = ACTIONS(2433), - [anon_sym_c_short] = ACTIONS(2433), - [anon_sym_c_ushort] = ACTIONS(2433), - [anon_sym_c_int] = ACTIONS(2433), - [anon_sym_c_uint] = ACTIONS(2433), - [anon_sym_c_long] = ACTIONS(2433), - [anon_sym_c_ulong] = ACTIONS(2433), - [anon_sym_c_longlong] = ACTIONS(2433), - [anon_sym_c_ulonglong] = ACTIONS(2433), - [anon_sym_c_float] = ACTIONS(2433), - [anon_sym_c_double] = ACTIONS(2433), - [anon_sym_c_longdouble] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_yield] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_defer] = ACTIONS(2433), - [anon_sym_errdefer] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_else] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_try] = ACTIONS(2433), - [anon_sym_DOT] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(2433), - [anon_sym_false] = ACTIONS(2433), - [sym_none] = ACTIONS(2433), - [sym_undefined] = ACTIONS(2433), - [sym_sink] = ACTIONS(2433), - [sym_integer] = ACTIONS(2433), - [sym_float] = ACTIONS(2431), - [anon_sym_DQUOTE] = ACTIONS(2431), - [sym_multiline_string] = ACTIONS(2431), - [sym_character] = ACTIONS(2431), + [ts_builtin_sym_end] = ACTIONS(2433), + [sym_identifier] = ACTIONS(2435), + [anon_sym_import] = 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_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_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(2431), + [sym__newline] = ACTIONS(2433), }, [STATE(1085)] = { - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), - [anon_sym_import] = ACTIONS(2437), - [anon_sym_func] = ACTIONS(2437), - [anon_sym_BANG] = ACTIONS(2435), - [anon_sym_struct] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2435), - [anon_sym_DOLLAR] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_void] = ACTIONS(2437), - [anon_sym_anyopaque] = ACTIONS(2437), - [anon_sym_bool] = ACTIONS(2437), - [anon_sym_int] = ACTIONS(2437), - [anon_sym_float] = ACTIONS(2437), - [anon_sym_range] = ACTIONS(2437), - [anon_sym_i8] = ACTIONS(2437), - [anon_sym_i16] = ACTIONS(2437), - [anon_sym_i32] = ACTIONS(2437), - [anon_sym_i64] = ACTIONS(2437), - [anon_sym_u8] = ACTIONS(2437), - [anon_sym_u16] = ACTIONS(2437), - [anon_sym_u32] = ACTIONS(2437), - [anon_sym_u64] = ACTIONS(2437), - [anon_sym_isize] = ACTIONS(2437), - [anon_sym_usize] = ACTIONS(2437), - [anon_sym_f32] = ACTIONS(2437), - [anon_sym_f64] = ACTIONS(2437), - [anon_sym_c_char] = ACTIONS(2437), - [anon_sym_c_schar] = ACTIONS(2437), - [anon_sym_c_uchar] = ACTIONS(2437), - [anon_sym_c_short] = ACTIONS(2437), - [anon_sym_c_ushort] = ACTIONS(2437), - [anon_sym_c_int] = ACTIONS(2437), - [anon_sym_c_uint] = ACTIONS(2437), - [anon_sym_c_long] = ACTIONS(2437), - [anon_sym_c_ulong] = ACTIONS(2437), - [anon_sym_c_longlong] = ACTIONS(2437), - [anon_sym_c_ulonglong] = ACTIONS(2437), - [anon_sym_c_float] = ACTIONS(2437), - [anon_sym_c_double] = ACTIONS(2437), - [anon_sym_c_longdouble] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_defer] = ACTIONS(2437), - [anon_sym_errdefer] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_else] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2435), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [sym_none] = ACTIONS(2437), - [sym_undefined] = ACTIONS(2437), - [sym_sink] = ACTIONS(2437), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [anon_sym_DQUOTE] = ACTIONS(2435), - [sym_multiline_string] = ACTIONS(2435), - [sym_character] = ACTIONS(2435), + [ts_builtin_sym_end] = ACTIONS(2437), + [sym_identifier] = ACTIONS(2439), + [anon_sym_import] = 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_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_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_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(2435), + [sym__newline] = ACTIONS(2437), }, [STATE(1086)] = { - [ts_builtin_sym_end] = ACTIONS(2439), - [sym_identifier] = ACTIONS(2441), - [anon_sym_import] = ACTIONS(2441), - [anon_sym_func] = ACTIONS(2441), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_RPAREN] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2439), - [anon_sym_DOLLAR] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2439), - [anon_sym_void] = ACTIONS(2441), - [anon_sym_anyopaque] = ACTIONS(2441), - [anon_sym_bool] = ACTIONS(2441), - [anon_sym_int] = ACTIONS(2441), - [anon_sym_float] = ACTIONS(2441), - [anon_sym_range] = ACTIONS(2441), - [anon_sym_i8] = ACTIONS(2441), - [anon_sym_i16] = ACTIONS(2441), - [anon_sym_i32] = ACTIONS(2441), - [anon_sym_i64] = ACTIONS(2441), - [anon_sym_u8] = ACTIONS(2441), - [anon_sym_u16] = ACTIONS(2441), - [anon_sym_u32] = ACTIONS(2441), - [anon_sym_u64] = ACTIONS(2441), - [anon_sym_isize] = ACTIONS(2441), - [anon_sym_usize] = ACTIONS(2441), - [anon_sym_f32] = ACTIONS(2441), - [anon_sym_f64] = ACTIONS(2441), - [anon_sym_c_char] = ACTIONS(2441), - [anon_sym_c_schar] = ACTIONS(2441), - [anon_sym_c_uchar] = ACTIONS(2441), - [anon_sym_c_short] = ACTIONS(2441), - [anon_sym_c_ushort] = ACTIONS(2441), - [anon_sym_c_int] = ACTIONS(2441), - [anon_sym_c_uint] = ACTIONS(2441), - [anon_sym_c_long] = ACTIONS(2441), - [anon_sym_c_ulong] = ACTIONS(2441), - [anon_sym_c_longlong] = ACTIONS(2441), - [anon_sym_c_ulonglong] = ACTIONS(2441), - [anon_sym_c_float] = ACTIONS(2441), - [anon_sym_c_double] = ACTIONS(2441), - [anon_sym_c_longdouble] = ACTIONS(2441), - [anon_sym_return] = ACTIONS(2441), - [anon_sym_yield] = ACTIONS(2441), - [anon_sym_break] = ACTIONS(2441), - [anon_sym_continue] = ACTIONS(2441), - [anon_sym_defer] = ACTIONS(2441), - [anon_sym_errdefer] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2441), - [anon_sym_else] = ACTIONS(2441), - [anon_sym_while] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2441), - [anon_sym_match] = ACTIONS(2441), - [anon_sym_AMP] = ACTIONS(2439), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_DOT] = ACTIONS(2439), - [anon_sym_true] = ACTIONS(2441), - [anon_sym_false] = ACTIONS(2441), - [sym_none] = ACTIONS(2441), - [sym_undefined] = ACTIONS(2441), - [sym_sink] = ACTIONS(2441), - [sym_integer] = ACTIONS(2441), - [sym_float] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(2439), - [sym_multiline_string] = ACTIONS(2439), - [sym_character] = ACTIONS(2439), + [ts_builtin_sym_end] = ACTIONS(2441), + [sym_identifier] = ACTIONS(2443), + [anon_sym_import] = 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_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_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(2439), + [sym__newline] = ACTIONS(2441), }, [STATE(1087)] = { - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_identifier] = ACTIONS(2445), - [anon_sym_import] = ACTIONS(2445), - [anon_sym_func] = ACTIONS(2445), - [anon_sym_BANG] = ACTIONS(2443), - [anon_sym_struct] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2443), - [anon_sym_DOLLAR] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_void] = ACTIONS(2445), - [anon_sym_anyopaque] = ACTIONS(2445), - [anon_sym_bool] = ACTIONS(2445), - [anon_sym_int] = ACTIONS(2445), - [anon_sym_float] = ACTIONS(2445), - [anon_sym_range] = ACTIONS(2445), - [anon_sym_i8] = ACTIONS(2445), - [anon_sym_i16] = ACTIONS(2445), - [anon_sym_i32] = ACTIONS(2445), - [anon_sym_i64] = ACTIONS(2445), - [anon_sym_u8] = ACTIONS(2445), - [anon_sym_u16] = ACTIONS(2445), - [anon_sym_u32] = ACTIONS(2445), - [anon_sym_u64] = ACTIONS(2445), - [anon_sym_isize] = ACTIONS(2445), - [anon_sym_usize] = ACTIONS(2445), - [anon_sym_f32] = ACTIONS(2445), - [anon_sym_f64] = ACTIONS(2445), - [anon_sym_c_char] = ACTIONS(2445), - [anon_sym_c_schar] = ACTIONS(2445), - [anon_sym_c_uchar] = ACTIONS(2445), - [anon_sym_c_short] = ACTIONS(2445), - [anon_sym_c_ushort] = ACTIONS(2445), - [anon_sym_c_int] = ACTIONS(2445), - [anon_sym_c_uint] = ACTIONS(2445), - [anon_sym_c_long] = ACTIONS(2445), - [anon_sym_c_ulong] = ACTIONS(2445), - [anon_sym_c_longlong] = ACTIONS(2445), - [anon_sym_c_ulonglong] = ACTIONS(2445), - [anon_sym_c_float] = ACTIONS(2445), - [anon_sym_c_double] = ACTIONS(2445), - [anon_sym_c_longdouble] = ACTIONS(2445), - [anon_sym_return] = ACTIONS(2445), - [anon_sym_yield] = ACTIONS(2445), - [anon_sym_break] = ACTIONS(2445), - [anon_sym_continue] = ACTIONS(2445), - [anon_sym_defer] = ACTIONS(2445), - [anon_sym_errdefer] = ACTIONS(2445), - [anon_sym_if] = ACTIONS(2445), - [anon_sym_else] = ACTIONS(2445), - [anon_sym_while] = ACTIONS(2445), - [anon_sym_for] = ACTIONS(2445), - [anon_sym_match] = ACTIONS(2445), - [anon_sym_AMP] = ACTIONS(2443), - [anon_sym_try] = ACTIONS(2445), - [anon_sym_DOT] = ACTIONS(2443), - [anon_sym_true] = ACTIONS(2445), - [anon_sym_false] = ACTIONS(2445), - [sym_none] = ACTIONS(2445), - [sym_undefined] = ACTIONS(2445), - [sym_sink] = ACTIONS(2445), - [sym_integer] = ACTIONS(2445), - [sym_float] = ACTIONS(2443), - [anon_sym_DQUOTE] = ACTIONS(2443), - [sym_multiline_string] = ACTIONS(2443), - [sym_character] = ACTIONS(2443), + [ts_builtin_sym_end] = ACTIONS(2445), + [sym_identifier] = ACTIONS(2447), + [anon_sym_import] = 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_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_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_float] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(2445), + [sym_multiline_string] = ACTIONS(2445), + [sym_character] = ACTIONS(2445), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2443), + [sym__newline] = ACTIONS(2445), }, [STATE(1088)] = { - [ts_builtin_sym_end] = ACTIONS(2447), - [sym_identifier] = ACTIONS(2449), - [anon_sym_import] = ACTIONS(2449), - [anon_sym_func] = ACTIONS(2449), - [anon_sym_BANG] = ACTIONS(2447), - [anon_sym_struct] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_RPAREN] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2447), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_void] = ACTIONS(2449), - [anon_sym_anyopaque] = ACTIONS(2449), - [anon_sym_bool] = ACTIONS(2449), - [anon_sym_int] = ACTIONS(2449), - [anon_sym_float] = ACTIONS(2449), - [anon_sym_range] = ACTIONS(2449), - [anon_sym_i8] = ACTIONS(2449), - [anon_sym_i16] = ACTIONS(2449), - [anon_sym_i32] = ACTIONS(2449), - [anon_sym_i64] = ACTIONS(2449), - [anon_sym_u8] = ACTIONS(2449), - [anon_sym_u16] = ACTIONS(2449), - [anon_sym_u32] = ACTIONS(2449), - [anon_sym_u64] = ACTIONS(2449), - [anon_sym_isize] = ACTIONS(2449), - [anon_sym_usize] = ACTIONS(2449), - [anon_sym_f32] = ACTIONS(2449), - [anon_sym_f64] = ACTIONS(2449), - [anon_sym_c_char] = ACTIONS(2449), - [anon_sym_c_schar] = ACTIONS(2449), - [anon_sym_c_uchar] = ACTIONS(2449), - [anon_sym_c_short] = ACTIONS(2449), - [anon_sym_c_ushort] = ACTIONS(2449), - [anon_sym_c_int] = ACTIONS(2449), - [anon_sym_c_uint] = ACTIONS(2449), - [anon_sym_c_long] = ACTIONS(2449), - [anon_sym_c_ulong] = ACTIONS(2449), - [anon_sym_c_longlong] = ACTIONS(2449), - [anon_sym_c_ulonglong] = ACTIONS(2449), - [anon_sym_c_float] = ACTIONS(2449), - [anon_sym_c_double] = ACTIONS(2449), - [anon_sym_c_longdouble] = ACTIONS(2449), - [anon_sym_return] = ACTIONS(2449), - [anon_sym_yield] = ACTIONS(2449), - [anon_sym_break] = ACTIONS(2449), - [anon_sym_continue] = ACTIONS(2449), - [anon_sym_defer] = ACTIONS(2449), - [anon_sym_errdefer] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_else] = ACTIONS(2449), - [anon_sym_while] = ACTIONS(2449), - [anon_sym_for] = ACTIONS(2449), - [anon_sym_match] = ACTIONS(2449), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_try] = ACTIONS(2449), - [anon_sym_DOT] = ACTIONS(2447), - [anon_sym_true] = ACTIONS(2449), - [anon_sym_false] = ACTIONS(2449), - [sym_none] = ACTIONS(2449), - [sym_undefined] = ACTIONS(2449), - [sym_sink] = ACTIONS(2449), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2447), - [anon_sym_DQUOTE] = ACTIONS(2447), - [sym_multiline_string] = ACTIONS(2447), - [sym_character] = ACTIONS(2447), + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2447), + [sym__newline] = ACTIONS(2449), }, [STATE(1089)] = { - [ts_builtin_sym_end] = ACTIONS(2451), - [sym_identifier] = ACTIONS(2453), - [anon_sym_import] = ACTIONS(2453), - [anon_sym_func] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(2451), - [anon_sym_struct] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_RPAREN] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_DOLLAR] = ACTIONS(2451), - [anon_sym_LBRACK] = ACTIONS(2451), - [anon_sym_void] = ACTIONS(2453), - [anon_sym_anyopaque] = ACTIONS(2453), - [anon_sym_bool] = ACTIONS(2453), - [anon_sym_int] = ACTIONS(2453), - [anon_sym_float] = ACTIONS(2453), - [anon_sym_range] = ACTIONS(2453), - [anon_sym_i8] = ACTIONS(2453), - [anon_sym_i16] = ACTIONS(2453), - [anon_sym_i32] = ACTIONS(2453), - [anon_sym_i64] = ACTIONS(2453), - [anon_sym_u8] = ACTIONS(2453), - [anon_sym_u16] = ACTIONS(2453), - [anon_sym_u32] = ACTIONS(2453), - [anon_sym_u64] = ACTIONS(2453), - [anon_sym_isize] = ACTIONS(2453), - [anon_sym_usize] = ACTIONS(2453), - [anon_sym_f32] = ACTIONS(2453), - [anon_sym_f64] = ACTIONS(2453), - [anon_sym_c_char] = ACTIONS(2453), - [anon_sym_c_schar] = ACTIONS(2453), - [anon_sym_c_uchar] = ACTIONS(2453), - [anon_sym_c_short] = ACTIONS(2453), - [anon_sym_c_ushort] = ACTIONS(2453), - [anon_sym_c_int] = ACTIONS(2453), - [anon_sym_c_uint] = ACTIONS(2453), - [anon_sym_c_long] = ACTIONS(2453), - [anon_sym_c_ulong] = ACTIONS(2453), - [anon_sym_c_longlong] = ACTIONS(2453), - [anon_sym_c_ulonglong] = ACTIONS(2453), - [anon_sym_c_float] = ACTIONS(2453), - [anon_sym_c_double] = ACTIONS(2453), - [anon_sym_c_longdouble] = ACTIONS(2453), - [anon_sym_return] = ACTIONS(2453), - [anon_sym_yield] = ACTIONS(2453), - [anon_sym_break] = ACTIONS(2453), - [anon_sym_continue] = ACTIONS(2453), - [anon_sym_defer] = ACTIONS(2453), - [anon_sym_errdefer] = ACTIONS(2453), - [anon_sym_if] = ACTIONS(2453), - [anon_sym_else] = ACTIONS(2453), - [anon_sym_while] = ACTIONS(2453), - [anon_sym_for] = ACTIONS(2453), - [anon_sym_match] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(2451), - [anon_sym_try] = ACTIONS(2453), - [anon_sym_DOT] = ACTIONS(2451), - [anon_sym_true] = ACTIONS(2453), - [anon_sym_false] = ACTIONS(2453), - [sym_none] = ACTIONS(2453), - [sym_undefined] = ACTIONS(2453), - [sym_sink] = ACTIONS(2453), - [sym_integer] = ACTIONS(2453), - [sym_float] = ACTIONS(2451), - [anon_sym_DQUOTE] = ACTIONS(2451), - [sym_multiline_string] = ACTIONS(2451), - [sym_character] = ACTIONS(2451), + [ts_builtin_sym_end] = ACTIONS(2453), + [sym_identifier] = ACTIONS(2455), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2451), + [sym__newline] = ACTIONS(2453), }, [STATE(1090)] = { - [ts_builtin_sym_end] = ACTIONS(2455), - [sym_identifier] = ACTIONS(2457), - [anon_sym_import] = ACTIONS(2457), - [anon_sym_func] = ACTIONS(2457), - [anon_sym_BANG] = ACTIONS(2455), - [anon_sym_struct] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2455), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(2455), - [anon_sym_DOLLAR] = ACTIONS(2455), - [anon_sym_LBRACK] = ACTIONS(2455), - [anon_sym_void] = ACTIONS(2457), - [anon_sym_anyopaque] = ACTIONS(2457), - [anon_sym_bool] = ACTIONS(2457), - [anon_sym_int] = ACTIONS(2457), - [anon_sym_float] = ACTIONS(2457), - [anon_sym_range] = ACTIONS(2457), - [anon_sym_i8] = ACTIONS(2457), - [anon_sym_i16] = ACTIONS(2457), - [anon_sym_i32] = ACTIONS(2457), - [anon_sym_i64] = ACTIONS(2457), - [anon_sym_u8] = ACTIONS(2457), - [anon_sym_u16] = ACTIONS(2457), - [anon_sym_u32] = ACTIONS(2457), - [anon_sym_u64] = ACTIONS(2457), - [anon_sym_isize] = ACTIONS(2457), - [anon_sym_usize] = ACTIONS(2457), - [anon_sym_f32] = ACTIONS(2457), - [anon_sym_f64] = ACTIONS(2457), - [anon_sym_c_char] = ACTIONS(2457), - [anon_sym_c_schar] = ACTIONS(2457), - [anon_sym_c_uchar] = ACTIONS(2457), - [anon_sym_c_short] = ACTIONS(2457), - [anon_sym_c_ushort] = ACTIONS(2457), - [anon_sym_c_int] = ACTIONS(2457), - [anon_sym_c_uint] = ACTIONS(2457), - [anon_sym_c_long] = ACTIONS(2457), - [anon_sym_c_ulong] = ACTIONS(2457), - [anon_sym_c_longlong] = ACTIONS(2457), - [anon_sym_c_ulonglong] = ACTIONS(2457), - [anon_sym_c_float] = ACTIONS(2457), - [anon_sym_c_double] = ACTIONS(2457), - [anon_sym_c_longdouble] = ACTIONS(2457), - [anon_sym_return] = ACTIONS(2457), - [anon_sym_yield] = ACTIONS(2457), - [anon_sym_break] = ACTIONS(2457), - [anon_sym_continue] = ACTIONS(2457), - [anon_sym_defer] = ACTIONS(2457), - [anon_sym_errdefer] = ACTIONS(2457), - [anon_sym_if] = ACTIONS(2457), - [anon_sym_else] = ACTIONS(2457), - [anon_sym_while] = ACTIONS(2457), - [anon_sym_for] = ACTIONS(2457), - [anon_sym_match] = ACTIONS(2457), - [anon_sym_AMP] = ACTIONS(2455), - [anon_sym_try] = ACTIONS(2457), - [anon_sym_DOT] = ACTIONS(2455), - [anon_sym_true] = ACTIONS(2457), - [anon_sym_false] = ACTIONS(2457), - [sym_none] = ACTIONS(2457), - [sym_undefined] = ACTIONS(2457), - [sym_sink] = ACTIONS(2457), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2455), - [anon_sym_DQUOTE] = ACTIONS(2455), - [sym_multiline_string] = ACTIONS(2455), - [sym_character] = ACTIONS(2455), + [ts_builtin_sym_end] = ACTIONS(2457), + [sym_identifier] = ACTIONS(2459), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2455), + [sym__newline] = ACTIONS(2457), }, [STATE(1091)] = { - [ts_builtin_sym_end] = ACTIONS(2459), - [sym_identifier] = ACTIONS(2461), - [anon_sym_import] = ACTIONS(2461), - [anon_sym_func] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_RPAREN] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [anon_sym_RBRACE] = ACTIONS(2459), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_DOLLAR] = ACTIONS(2459), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_void] = ACTIONS(2461), - [anon_sym_anyopaque] = ACTIONS(2461), - [anon_sym_bool] = ACTIONS(2461), - [anon_sym_int] = ACTIONS(2461), - [anon_sym_float] = ACTIONS(2461), - [anon_sym_range] = ACTIONS(2461), - [anon_sym_i8] = ACTIONS(2461), - [anon_sym_i16] = ACTIONS(2461), - [anon_sym_i32] = ACTIONS(2461), - [anon_sym_i64] = ACTIONS(2461), - [anon_sym_u8] = ACTIONS(2461), - [anon_sym_u16] = ACTIONS(2461), - [anon_sym_u32] = ACTIONS(2461), - [anon_sym_u64] = ACTIONS(2461), - [anon_sym_isize] = ACTIONS(2461), - [anon_sym_usize] = ACTIONS(2461), - [anon_sym_f32] = ACTIONS(2461), - [anon_sym_f64] = ACTIONS(2461), - [anon_sym_c_char] = ACTIONS(2461), - [anon_sym_c_schar] = ACTIONS(2461), - [anon_sym_c_uchar] = ACTIONS(2461), - [anon_sym_c_short] = ACTIONS(2461), - [anon_sym_c_ushort] = ACTIONS(2461), - [anon_sym_c_int] = ACTIONS(2461), - [anon_sym_c_uint] = ACTIONS(2461), - [anon_sym_c_long] = ACTIONS(2461), - [anon_sym_c_ulong] = ACTIONS(2461), - [anon_sym_c_longlong] = ACTIONS(2461), - [anon_sym_c_ulonglong] = ACTIONS(2461), - [anon_sym_c_float] = ACTIONS(2461), - [anon_sym_c_double] = ACTIONS(2461), - [anon_sym_c_longdouble] = ACTIONS(2461), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2461), - [anon_sym_break] = ACTIONS(2461), - [anon_sym_continue] = ACTIONS(2461), - [anon_sym_defer] = ACTIONS(2461), - [anon_sym_errdefer] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_else] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_match] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_DOT] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [sym_none] = ACTIONS(2461), - [sym_undefined] = ACTIONS(2461), - [sym_sink] = ACTIONS(2461), - [sym_integer] = ACTIONS(2461), - [sym_float] = ACTIONS(2459), - [anon_sym_DQUOTE] = ACTIONS(2459), - [sym_multiline_string] = ACTIONS(2459), - [sym_character] = ACTIONS(2459), + [ts_builtin_sym_end] = ACTIONS(2461), + [sym_identifier] = ACTIONS(2463), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2459), + [sym__newline] = ACTIONS(2461), }, [STATE(1092)] = { - [ts_builtin_sym_end] = ACTIONS(2463), - [sym_identifier] = ACTIONS(2465), - [anon_sym_import] = ACTIONS(2465), - [anon_sym_func] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_RPAREN] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2463), - [anon_sym_RBRACE] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(2463), - [anon_sym_DOLLAR] = ACTIONS(2463), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_void] = ACTIONS(2465), - [anon_sym_anyopaque] = ACTIONS(2465), - [anon_sym_bool] = ACTIONS(2465), - [anon_sym_int] = ACTIONS(2465), - [anon_sym_float] = ACTIONS(2465), - [anon_sym_range] = ACTIONS(2465), - [anon_sym_i8] = ACTIONS(2465), - [anon_sym_i16] = ACTIONS(2465), - [anon_sym_i32] = ACTIONS(2465), - [anon_sym_i64] = ACTIONS(2465), - [anon_sym_u8] = ACTIONS(2465), - [anon_sym_u16] = ACTIONS(2465), - [anon_sym_u32] = ACTIONS(2465), - [anon_sym_u64] = ACTIONS(2465), - [anon_sym_isize] = ACTIONS(2465), - [anon_sym_usize] = ACTIONS(2465), - [anon_sym_f32] = ACTIONS(2465), - [anon_sym_f64] = ACTIONS(2465), - [anon_sym_c_char] = ACTIONS(2465), - [anon_sym_c_schar] = ACTIONS(2465), - [anon_sym_c_uchar] = ACTIONS(2465), - [anon_sym_c_short] = ACTIONS(2465), - [anon_sym_c_ushort] = ACTIONS(2465), - [anon_sym_c_int] = ACTIONS(2465), - [anon_sym_c_uint] = ACTIONS(2465), - [anon_sym_c_long] = ACTIONS(2465), - [anon_sym_c_ulong] = ACTIONS(2465), - [anon_sym_c_longlong] = ACTIONS(2465), - [anon_sym_c_ulonglong] = ACTIONS(2465), - [anon_sym_c_float] = ACTIONS(2465), - [anon_sym_c_double] = ACTIONS(2465), - [anon_sym_c_longdouble] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_yield] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_defer] = ACTIONS(2465), - [anon_sym_errdefer] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2463), - [anon_sym_try] = ACTIONS(2465), - [anon_sym_DOT] = ACTIONS(2463), - [anon_sym_true] = ACTIONS(2465), - [anon_sym_false] = ACTIONS(2465), - [sym_none] = ACTIONS(2465), - [sym_undefined] = ACTIONS(2465), - [sym_sink] = ACTIONS(2465), - [sym_integer] = ACTIONS(2465), - [sym_float] = ACTIONS(2463), - [anon_sym_DQUOTE] = ACTIONS(2463), - [sym_multiline_string] = ACTIONS(2463), - [sym_character] = ACTIONS(2463), + [ts_builtin_sym_end] = ACTIONS(2465), + [sym_identifier] = ACTIONS(2467), + [anon_sym_import] = 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_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_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(2463), + [sym__newline] = ACTIONS(2465), }, [STATE(1093)] = { - [ts_builtin_sym_end] = ACTIONS(2467), - [sym_identifier] = ACTIONS(2469), - [anon_sym_import] = ACTIONS(2469), - [anon_sym_func] = ACTIONS(2469), - [anon_sym_BANG] = ACTIONS(2467), - [anon_sym_struct] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_RPAREN] = ACTIONS(2467), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_RBRACE] = ACTIONS(2467), - [anon_sym_DASH] = ACTIONS(2467), - [anon_sym_DOLLAR] = ACTIONS(2467), - [anon_sym_LBRACK] = ACTIONS(2467), - [anon_sym_void] = ACTIONS(2469), - [anon_sym_anyopaque] = ACTIONS(2469), - [anon_sym_bool] = ACTIONS(2469), - [anon_sym_int] = ACTIONS(2469), - [anon_sym_float] = ACTIONS(2469), - [anon_sym_range] = ACTIONS(2469), - [anon_sym_i8] = ACTIONS(2469), - [anon_sym_i16] = ACTIONS(2469), - [anon_sym_i32] = ACTIONS(2469), - [anon_sym_i64] = ACTIONS(2469), - [anon_sym_u8] = ACTIONS(2469), - [anon_sym_u16] = ACTIONS(2469), - [anon_sym_u32] = ACTIONS(2469), - [anon_sym_u64] = ACTIONS(2469), - [anon_sym_isize] = ACTIONS(2469), - [anon_sym_usize] = ACTIONS(2469), - [anon_sym_f32] = ACTIONS(2469), - [anon_sym_f64] = ACTIONS(2469), - [anon_sym_c_char] = ACTIONS(2469), - [anon_sym_c_schar] = ACTIONS(2469), - [anon_sym_c_uchar] = ACTIONS(2469), - [anon_sym_c_short] = ACTIONS(2469), - [anon_sym_c_ushort] = ACTIONS(2469), - [anon_sym_c_int] = ACTIONS(2469), - [anon_sym_c_uint] = ACTIONS(2469), - [anon_sym_c_long] = ACTIONS(2469), - [anon_sym_c_ulong] = ACTIONS(2469), - [anon_sym_c_longlong] = ACTIONS(2469), - [anon_sym_c_ulonglong] = ACTIONS(2469), - [anon_sym_c_float] = ACTIONS(2469), - [anon_sym_c_double] = ACTIONS(2469), - [anon_sym_c_longdouble] = ACTIONS(2469), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_yield] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_defer] = ACTIONS(2469), - [anon_sym_errdefer] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_else] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_match] = ACTIONS(2469), - [anon_sym_AMP] = ACTIONS(2467), - [anon_sym_try] = ACTIONS(2469), - [anon_sym_DOT] = ACTIONS(2467), - [anon_sym_true] = ACTIONS(2469), - [anon_sym_false] = ACTIONS(2469), - [sym_none] = ACTIONS(2469), - [sym_undefined] = ACTIONS(2469), - [sym_sink] = ACTIONS(2469), - [sym_integer] = ACTIONS(2469), - [sym_float] = ACTIONS(2467), - [anon_sym_DQUOTE] = ACTIONS(2467), - [sym_multiline_string] = ACTIONS(2467), - [sym_character] = ACTIONS(2467), + [ts_builtin_sym_end] = ACTIONS(2469), + [sym_identifier] = ACTIONS(2471), + [anon_sym_import] = 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_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_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), + [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_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2467), + [sym__newline] = ACTIONS(2469), }, [STATE(1094)] = { - [ts_builtin_sym_end] = ACTIONS(2471), - [sym_identifier] = ACTIONS(2473), - [anon_sym_import] = ACTIONS(2473), - [anon_sym_func] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(2471), - [anon_sym_struct] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_RPAREN] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_RBRACE] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_DOLLAR] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(2471), - [anon_sym_void] = ACTIONS(2473), - [anon_sym_anyopaque] = ACTIONS(2473), - [anon_sym_bool] = ACTIONS(2473), - [anon_sym_int] = ACTIONS(2473), - [anon_sym_float] = ACTIONS(2473), - [anon_sym_range] = ACTIONS(2473), - [anon_sym_i8] = ACTIONS(2473), - [anon_sym_i16] = ACTIONS(2473), - [anon_sym_i32] = ACTIONS(2473), - [anon_sym_i64] = ACTIONS(2473), - [anon_sym_u8] = ACTIONS(2473), - [anon_sym_u16] = ACTIONS(2473), - [anon_sym_u32] = ACTIONS(2473), - [anon_sym_u64] = ACTIONS(2473), - [anon_sym_isize] = ACTIONS(2473), - [anon_sym_usize] = ACTIONS(2473), - [anon_sym_f32] = ACTIONS(2473), - [anon_sym_f64] = ACTIONS(2473), - [anon_sym_c_char] = ACTIONS(2473), - [anon_sym_c_schar] = ACTIONS(2473), - [anon_sym_c_uchar] = ACTIONS(2473), - [anon_sym_c_short] = ACTIONS(2473), - [anon_sym_c_ushort] = ACTIONS(2473), - [anon_sym_c_int] = ACTIONS(2473), - [anon_sym_c_uint] = ACTIONS(2473), - [anon_sym_c_long] = ACTIONS(2473), - [anon_sym_c_ulong] = ACTIONS(2473), - [anon_sym_c_longlong] = ACTIONS(2473), - [anon_sym_c_ulonglong] = ACTIONS(2473), - [anon_sym_c_float] = ACTIONS(2473), - [anon_sym_c_double] = ACTIONS(2473), - [anon_sym_c_longdouble] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_break] = ACTIONS(2473), - [anon_sym_continue] = ACTIONS(2473), - [anon_sym_defer] = ACTIONS(2473), - [anon_sym_errdefer] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_else] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2471), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_DOT] = ACTIONS(2471), - [anon_sym_true] = ACTIONS(2473), - [anon_sym_false] = ACTIONS(2473), - [sym_none] = ACTIONS(2473), - [sym_undefined] = ACTIONS(2473), - [sym_sink] = ACTIONS(2473), - [sym_integer] = ACTIONS(2473), - [sym_float] = ACTIONS(2471), - [anon_sym_DQUOTE] = ACTIONS(2471), - [sym_multiline_string] = ACTIONS(2471), - [sym_character] = ACTIONS(2471), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2475), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2471), + [sym__newline] = ACTIONS(2473), }, [STATE(1095)] = { - [ts_builtin_sym_end] = ACTIONS(2475), - [sym_identifier] = ACTIONS(2477), - [anon_sym_import] = ACTIONS(2477), - [anon_sym_func] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_struct] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_RPAREN] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_RBRACE] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_DOLLAR] = ACTIONS(2475), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_void] = ACTIONS(2477), - [anon_sym_anyopaque] = ACTIONS(2477), - [anon_sym_bool] = ACTIONS(2477), - [anon_sym_int] = ACTIONS(2477), - [anon_sym_float] = ACTIONS(2477), - [anon_sym_range] = ACTIONS(2477), - [anon_sym_i8] = ACTIONS(2477), - [anon_sym_i16] = ACTIONS(2477), - [anon_sym_i32] = ACTIONS(2477), - [anon_sym_i64] = ACTIONS(2477), - [anon_sym_u8] = ACTIONS(2477), - [anon_sym_u16] = ACTIONS(2477), - [anon_sym_u32] = ACTIONS(2477), - [anon_sym_u64] = ACTIONS(2477), - [anon_sym_isize] = ACTIONS(2477), - [anon_sym_usize] = ACTIONS(2477), - [anon_sym_f32] = ACTIONS(2477), - [anon_sym_f64] = ACTIONS(2477), - [anon_sym_c_char] = ACTIONS(2477), - [anon_sym_c_schar] = ACTIONS(2477), - [anon_sym_c_uchar] = ACTIONS(2477), - [anon_sym_c_short] = ACTIONS(2477), - [anon_sym_c_ushort] = ACTIONS(2477), - [anon_sym_c_int] = ACTIONS(2477), - [anon_sym_c_uint] = ACTIONS(2477), - [anon_sym_c_long] = ACTIONS(2477), - [anon_sym_c_ulong] = ACTIONS(2477), - [anon_sym_c_longlong] = ACTIONS(2477), - [anon_sym_c_ulonglong] = ACTIONS(2477), - [anon_sym_c_float] = ACTIONS(2477), - [anon_sym_c_double] = ACTIONS(2477), - [anon_sym_c_longdouble] = ACTIONS(2477), - [anon_sym_return] = ACTIONS(2477), - [anon_sym_yield] = ACTIONS(2477), - [anon_sym_break] = ACTIONS(2477), - [anon_sym_continue] = ACTIONS(2477), - [anon_sym_defer] = ACTIONS(2477), - [anon_sym_errdefer] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2477), - [anon_sym_else] = ACTIONS(2477), - [anon_sym_while] = ACTIONS(2477), - [anon_sym_for] = ACTIONS(2477), - [anon_sym_match] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_DOT] = ACTIONS(2475), - [anon_sym_true] = ACTIONS(2477), - [anon_sym_false] = ACTIONS(2477), - [sym_none] = ACTIONS(2477), - [sym_undefined] = ACTIONS(2477), - [sym_sink] = ACTIONS(2477), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2475), - [anon_sym_DQUOTE] = ACTIONS(2475), - [sym_multiline_string] = ACTIONS(2475), - [sym_character] = ACTIONS(2475), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2479), + [anon_sym_import] = 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), + [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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2475), + [sym__newline] = ACTIONS(2477), }, [STATE(1096)] = { - [ts_builtin_sym_end] = ACTIONS(2479), - [sym_identifier] = ACTIONS(2481), - [anon_sym_import] = ACTIONS(2481), - [anon_sym_func] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_struct] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_RPAREN] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_RBRACE] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_DOLLAR] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_void] = ACTIONS(2481), - [anon_sym_anyopaque] = ACTIONS(2481), - [anon_sym_bool] = ACTIONS(2481), - [anon_sym_int] = ACTIONS(2481), - [anon_sym_float] = ACTIONS(2481), - [anon_sym_range] = ACTIONS(2481), - [anon_sym_i8] = ACTIONS(2481), - [anon_sym_i16] = ACTIONS(2481), - [anon_sym_i32] = ACTIONS(2481), - [anon_sym_i64] = ACTIONS(2481), - [anon_sym_u8] = ACTIONS(2481), - [anon_sym_u16] = ACTIONS(2481), - [anon_sym_u32] = ACTIONS(2481), - [anon_sym_u64] = ACTIONS(2481), - [anon_sym_isize] = ACTIONS(2481), - [anon_sym_usize] = ACTIONS(2481), - [anon_sym_f32] = ACTIONS(2481), - [anon_sym_f64] = ACTIONS(2481), - [anon_sym_c_char] = ACTIONS(2481), - [anon_sym_c_schar] = ACTIONS(2481), - [anon_sym_c_uchar] = ACTIONS(2481), - [anon_sym_c_short] = ACTIONS(2481), - [anon_sym_c_ushort] = ACTIONS(2481), - [anon_sym_c_int] = ACTIONS(2481), - [anon_sym_c_uint] = ACTIONS(2481), - [anon_sym_c_long] = ACTIONS(2481), - [anon_sym_c_ulong] = ACTIONS(2481), - [anon_sym_c_longlong] = ACTIONS(2481), - [anon_sym_c_ulonglong] = ACTIONS(2481), - [anon_sym_c_float] = ACTIONS(2481), - [anon_sym_c_double] = ACTIONS(2481), - [anon_sym_c_longdouble] = ACTIONS(2481), - [anon_sym_return] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2481), - [anon_sym_break] = ACTIONS(2481), - [anon_sym_continue] = ACTIONS(2481), - [anon_sym_defer] = ACTIONS(2481), - [anon_sym_errdefer] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(2481), - [anon_sym_while] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2481), - [anon_sym_match] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2481), - [anon_sym_DOT] = ACTIONS(2479), - [anon_sym_true] = ACTIONS(2481), - [anon_sym_false] = ACTIONS(2481), - [sym_none] = ACTIONS(2481), - [sym_undefined] = ACTIONS(2481), - [sym_sink] = ACTIONS(2481), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [sym_multiline_string] = ACTIONS(2479), - [sym_character] = ACTIONS(2479), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [anon_sym_import] = ACTIONS(2483), + [anon_sym_func] = ACTIONS(2483), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(2483), + [anon_sym_LPAREN] = ACTIONS(2481), + [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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2479), + [sym__newline] = ACTIONS(2481), }, [STATE(1097)] = { - [ts_builtin_sym_end] = ACTIONS(2483), - [sym_identifier] = ACTIONS(2485), - [anon_sym_import] = ACTIONS(2485), - [anon_sym_func] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2485), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_RPAREN] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_RBRACE] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_void] = ACTIONS(2485), - [anon_sym_anyopaque] = ACTIONS(2485), - [anon_sym_bool] = ACTIONS(2485), - [anon_sym_int] = ACTIONS(2485), - [anon_sym_float] = ACTIONS(2485), - [anon_sym_range] = ACTIONS(2485), - [anon_sym_i8] = ACTIONS(2485), - [anon_sym_i16] = ACTIONS(2485), - [anon_sym_i32] = ACTIONS(2485), - [anon_sym_i64] = ACTIONS(2485), - [anon_sym_u8] = ACTIONS(2485), - [anon_sym_u16] = ACTIONS(2485), - [anon_sym_u32] = ACTIONS(2485), - [anon_sym_u64] = ACTIONS(2485), - [anon_sym_isize] = ACTIONS(2485), - [anon_sym_usize] = ACTIONS(2485), - [anon_sym_f32] = ACTIONS(2485), - [anon_sym_f64] = ACTIONS(2485), - [anon_sym_c_char] = ACTIONS(2485), - [anon_sym_c_schar] = ACTIONS(2485), - [anon_sym_c_uchar] = ACTIONS(2485), - [anon_sym_c_short] = ACTIONS(2485), - [anon_sym_c_ushort] = ACTIONS(2485), - [anon_sym_c_int] = ACTIONS(2485), - [anon_sym_c_uint] = ACTIONS(2485), - [anon_sym_c_long] = ACTIONS(2485), - [anon_sym_c_ulong] = ACTIONS(2485), - [anon_sym_c_longlong] = ACTIONS(2485), - [anon_sym_c_ulonglong] = ACTIONS(2485), - [anon_sym_c_float] = ACTIONS(2485), - [anon_sym_c_double] = ACTIONS(2485), - [anon_sym_c_longdouble] = ACTIONS(2485), - [anon_sym_return] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2485), - [anon_sym_break] = ACTIONS(2485), - [anon_sym_continue] = ACTIONS(2485), - [anon_sym_defer] = ACTIONS(2485), - [anon_sym_errdefer] = ACTIONS(2485), - [anon_sym_if] = ACTIONS(2485), - [anon_sym_else] = ACTIONS(2485), - [anon_sym_while] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2485), - [anon_sym_match] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_true] = ACTIONS(2485), - [anon_sym_false] = ACTIONS(2485), - [sym_none] = ACTIONS(2485), - [sym_undefined] = ACTIONS(2485), - [sym_sink] = ACTIONS(2485), - [sym_integer] = ACTIONS(2485), - [sym_float] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [sym_multiline_string] = ACTIONS(2483), - [sym_character] = ACTIONS(2483), + [ts_builtin_sym_end] = ACTIONS(2485), + [sym_identifier] = ACTIONS(2487), + [anon_sym_import] = 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), + [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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2483), + [sym__newline] = ACTIONS(2485), }, [STATE(1098)] = { - [ts_builtin_sym_end] = ACTIONS(2487), - [sym_identifier] = ACTIONS(2489), - [anon_sym_import] = ACTIONS(2489), - [anon_sym_func] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2487), - [anon_sym_struct] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_RPAREN] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_RBRACE] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_LBRACK] = ACTIONS(2487), - [anon_sym_void] = ACTIONS(2489), - [anon_sym_anyopaque] = ACTIONS(2489), - [anon_sym_bool] = ACTIONS(2489), - [anon_sym_int] = ACTIONS(2489), - [anon_sym_float] = ACTIONS(2489), - [anon_sym_range] = ACTIONS(2489), - [anon_sym_i8] = ACTIONS(2489), - [anon_sym_i16] = ACTIONS(2489), - [anon_sym_i32] = ACTIONS(2489), - [anon_sym_i64] = ACTIONS(2489), - [anon_sym_u8] = ACTIONS(2489), - [anon_sym_u16] = ACTIONS(2489), - [anon_sym_u32] = ACTIONS(2489), - [anon_sym_u64] = ACTIONS(2489), - [anon_sym_isize] = ACTIONS(2489), - [anon_sym_usize] = ACTIONS(2489), - [anon_sym_f32] = ACTIONS(2489), - [anon_sym_f64] = ACTIONS(2489), - [anon_sym_c_char] = ACTIONS(2489), - [anon_sym_c_schar] = ACTIONS(2489), - [anon_sym_c_uchar] = ACTIONS(2489), - [anon_sym_c_short] = ACTIONS(2489), - [anon_sym_c_ushort] = ACTIONS(2489), - [anon_sym_c_int] = ACTIONS(2489), - [anon_sym_c_uint] = ACTIONS(2489), - [anon_sym_c_long] = ACTIONS(2489), - [anon_sym_c_ulong] = ACTIONS(2489), - [anon_sym_c_longlong] = ACTIONS(2489), - [anon_sym_c_ulonglong] = ACTIONS(2489), - [anon_sym_c_float] = ACTIONS(2489), - [anon_sym_c_double] = ACTIONS(2489), - [anon_sym_c_longdouble] = ACTIONS(2489), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_yield] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_defer] = ACTIONS(2489), - [anon_sym_errdefer] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_else] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_match] = ACTIONS(2489), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2489), - [anon_sym_DOT] = ACTIONS(2487), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [sym_none] = ACTIONS(2489), - [sym_undefined] = ACTIONS(2489), - [sym_sink] = ACTIONS(2489), - [sym_integer] = ACTIONS(2489), - [sym_float] = ACTIONS(2487), - [anon_sym_DQUOTE] = ACTIONS(2487), - [sym_multiline_string] = ACTIONS(2487), - [sym_character] = ACTIONS(2487), + [ts_builtin_sym_end] = ACTIONS(2489), + [sym_identifier] = ACTIONS(2491), + [anon_sym_import] = 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), + [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_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_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(2487), + [sym__newline] = ACTIONS(2489), }, [STATE(1099)] = { - [ts_builtin_sym_end] = ACTIONS(2491), - [sym_identifier] = ACTIONS(2493), - [anon_sym_import] = ACTIONS(2493), - [anon_sym_func] = ACTIONS(2493), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_struct] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_RPAREN] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_RBRACE] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_DOLLAR] = ACTIONS(2491), - [anon_sym_LBRACK] = ACTIONS(2491), - [anon_sym_void] = ACTIONS(2493), - [anon_sym_anyopaque] = ACTIONS(2493), - [anon_sym_bool] = ACTIONS(2493), - [anon_sym_int] = ACTIONS(2493), - [anon_sym_float] = ACTIONS(2493), - [anon_sym_range] = ACTIONS(2493), - [anon_sym_i8] = ACTIONS(2493), - [anon_sym_i16] = ACTIONS(2493), - [anon_sym_i32] = ACTIONS(2493), - [anon_sym_i64] = ACTIONS(2493), - [anon_sym_u8] = ACTIONS(2493), - [anon_sym_u16] = ACTIONS(2493), - [anon_sym_u32] = ACTIONS(2493), - [anon_sym_u64] = ACTIONS(2493), - [anon_sym_isize] = ACTIONS(2493), - [anon_sym_usize] = ACTIONS(2493), - [anon_sym_f32] = ACTIONS(2493), - [anon_sym_f64] = ACTIONS(2493), - [anon_sym_c_char] = ACTIONS(2493), - [anon_sym_c_schar] = ACTIONS(2493), - [anon_sym_c_uchar] = ACTIONS(2493), - [anon_sym_c_short] = ACTIONS(2493), - [anon_sym_c_ushort] = ACTIONS(2493), - [anon_sym_c_int] = ACTIONS(2493), - [anon_sym_c_uint] = ACTIONS(2493), - [anon_sym_c_long] = ACTIONS(2493), - [anon_sym_c_ulong] = ACTIONS(2493), - [anon_sym_c_longlong] = ACTIONS(2493), - [anon_sym_c_ulonglong] = ACTIONS(2493), - [anon_sym_c_float] = ACTIONS(2493), - [anon_sym_c_double] = ACTIONS(2493), - [anon_sym_c_longdouble] = ACTIONS(2493), - [anon_sym_return] = ACTIONS(2493), - [anon_sym_yield] = ACTIONS(2493), - [anon_sym_break] = ACTIONS(2493), - [anon_sym_continue] = ACTIONS(2493), - [anon_sym_defer] = ACTIONS(2493), - [anon_sym_errdefer] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_DOT] = ACTIONS(2491), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [sym_none] = ACTIONS(2493), - [sym_undefined] = ACTIONS(2493), - [sym_sink] = ACTIONS(2493), - [sym_integer] = ACTIONS(2493), - [sym_float] = ACTIONS(2491), - [anon_sym_DQUOTE] = ACTIONS(2491), - [sym_multiline_string] = ACTIONS(2491), - [sym_character] = ACTIONS(2491), + [ts_builtin_sym_end] = ACTIONS(2493), + [sym_identifier] = ACTIONS(2495), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2491), + [sym__newline] = ACTIONS(2493), }, [STATE(1100)] = { - [ts_builtin_sym_end] = ACTIONS(2495), - [sym_identifier] = ACTIONS(2497), - [anon_sym_import] = ACTIONS(2497), - [anon_sym_func] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_struct] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_RPAREN] = ACTIONS(2495), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_RBRACE] = ACTIONS(2495), - [anon_sym_DASH] = ACTIONS(2495), - [anon_sym_DOLLAR] = ACTIONS(2495), - [anon_sym_LBRACK] = ACTIONS(2495), - [anon_sym_void] = ACTIONS(2497), - [anon_sym_anyopaque] = ACTIONS(2497), - [anon_sym_bool] = ACTIONS(2497), - [anon_sym_int] = ACTIONS(2497), - [anon_sym_float] = ACTIONS(2497), - [anon_sym_range] = ACTIONS(2497), - [anon_sym_i8] = ACTIONS(2497), - [anon_sym_i16] = ACTIONS(2497), - [anon_sym_i32] = ACTIONS(2497), - [anon_sym_i64] = ACTIONS(2497), - [anon_sym_u8] = ACTIONS(2497), - [anon_sym_u16] = ACTIONS(2497), - [anon_sym_u32] = ACTIONS(2497), - [anon_sym_u64] = ACTIONS(2497), - [anon_sym_isize] = ACTIONS(2497), - [anon_sym_usize] = ACTIONS(2497), - [anon_sym_f32] = ACTIONS(2497), - [anon_sym_f64] = ACTIONS(2497), - [anon_sym_c_char] = ACTIONS(2497), - [anon_sym_c_schar] = ACTIONS(2497), - [anon_sym_c_uchar] = ACTIONS(2497), - [anon_sym_c_short] = ACTIONS(2497), - [anon_sym_c_ushort] = ACTIONS(2497), - [anon_sym_c_int] = ACTIONS(2497), - [anon_sym_c_uint] = ACTIONS(2497), - [anon_sym_c_long] = ACTIONS(2497), - [anon_sym_c_ulong] = ACTIONS(2497), - [anon_sym_c_longlong] = ACTIONS(2497), - [anon_sym_c_ulonglong] = ACTIONS(2497), - [anon_sym_c_float] = ACTIONS(2497), - [anon_sym_c_double] = ACTIONS(2497), - [anon_sym_c_longdouble] = ACTIONS(2497), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_yield] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_defer] = ACTIONS(2497), - [anon_sym_errdefer] = ACTIONS(2497), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_else] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_match] = ACTIONS(2497), - [anon_sym_AMP] = ACTIONS(2495), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_DOT] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2497), - [anon_sym_false] = ACTIONS(2497), - [sym_none] = ACTIONS(2497), - [sym_undefined] = ACTIONS(2497), - [sym_sink] = ACTIONS(2497), - [sym_integer] = ACTIONS(2497), - [sym_float] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2495), - [sym_multiline_string] = ACTIONS(2495), - [sym_character] = ACTIONS(2495), + [ts_builtin_sym_end] = ACTIONS(2497), + [sym_identifier] = ACTIONS(2499), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2495), + [sym__newline] = ACTIONS(2497), }, [STATE(1101)] = { - [ts_builtin_sym_end] = ACTIONS(2499), - [sym_identifier] = ACTIONS(2501), - [anon_sym_import] = ACTIONS(2501), - [anon_sym_func] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_struct] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_RBRACE] = ACTIONS(2499), - [anon_sym_DASH] = ACTIONS(2499), - [anon_sym_DOLLAR] = ACTIONS(2499), - [anon_sym_LBRACK] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(2501), - [anon_sym_anyopaque] = ACTIONS(2501), - [anon_sym_bool] = ACTIONS(2501), - [anon_sym_int] = ACTIONS(2501), - [anon_sym_float] = ACTIONS(2501), - [anon_sym_range] = ACTIONS(2501), - [anon_sym_i8] = ACTIONS(2501), - [anon_sym_i16] = ACTIONS(2501), - [anon_sym_i32] = ACTIONS(2501), - [anon_sym_i64] = ACTIONS(2501), - [anon_sym_u8] = ACTIONS(2501), - [anon_sym_u16] = ACTIONS(2501), - [anon_sym_u32] = ACTIONS(2501), - [anon_sym_u64] = ACTIONS(2501), - [anon_sym_isize] = ACTIONS(2501), - [anon_sym_usize] = ACTIONS(2501), - [anon_sym_f32] = ACTIONS(2501), - [anon_sym_f64] = ACTIONS(2501), - [anon_sym_c_char] = ACTIONS(2501), - [anon_sym_c_schar] = ACTIONS(2501), - [anon_sym_c_uchar] = ACTIONS(2501), - [anon_sym_c_short] = ACTIONS(2501), - [anon_sym_c_ushort] = ACTIONS(2501), - [anon_sym_c_int] = ACTIONS(2501), - [anon_sym_c_uint] = ACTIONS(2501), - [anon_sym_c_long] = ACTIONS(2501), - [anon_sym_c_ulong] = ACTIONS(2501), - [anon_sym_c_longlong] = ACTIONS(2501), - [anon_sym_c_ulonglong] = ACTIONS(2501), - [anon_sym_c_float] = ACTIONS(2501), - [anon_sym_c_double] = ACTIONS(2501), - [anon_sym_c_longdouble] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_yield] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_defer] = ACTIONS(2501), - [anon_sym_errdefer] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_else] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_match] = ACTIONS(2501), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_DOT] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(2501), - [anon_sym_false] = ACTIONS(2501), - [sym_none] = ACTIONS(2501), - [sym_undefined] = ACTIONS(2501), - [sym_sink] = ACTIONS(2501), - [sym_integer] = ACTIONS(2501), - [sym_float] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(2499), - [sym_multiline_string] = ACTIONS(2499), - [sym_character] = ACTIONS(2499), + [ts_builtin_sym_end] = ACTIONS(2501), + [sym_identifier] = ACTIONS(2503), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2499), + [sym__newline] = ACTIONS(2501), }, [STATE(1102)] = { - [ts_builtin_sym_end] = ACTIONS(2503), - [sym_identifier] = ACTIONS(2505), - [anon_sym_import] = ACTIONS(2505), - [anon_sym_func] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2503), - [anon_sym_struct] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_RPAREN] = ACTIONS(2503), - [anon_sym_LBRACE] = ACTIONS(2503), - [anon_sym_RBRACE] = ACTIONS(2503), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_DOLLAR] = ACTIONS(2503), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_void] = ACTIONS(2505), - [anon_sym_anyopaque] = ACTIONS(2505), - [anon_sym_bool] = ACTIONS(2505), - [anon_sym_int] = ACTIONS(2505), - [anon_sym_float] = ACTIONS(2505), - [anon_sym_range] = ACTIONS(2505), - [anon_sym_i8] = ACTIONS(2505), - [anon_sym_i16] = ACTIONS(2505), - [anon_sym_i32] = ACTIONS(2505), - [anon_sym_i64] = ACTIONS(2505), - [anon_sym_u8] = ACTIONS(2505), - [anon_sym_u16] = ACTIONS(2505), - [anon_sym_u32] = ACTIONS(2505), - [anon_sym_u64] = ACTIONS(2505), - [anon_sym_isize] = ACTIONS(2505), - [anon_sym_usize] = ACTIONS(2505), - [anon_sym_f32] = ACTIONS(2505), - [anon_sym_f64] = ACTIONS(2505), - [anon_sym_c_char] = ACTIONS(2505), - [anon_sym_c_schar] = ACTIONS(2505), - [anon_sym_c_uchar] = ACTIONS(2505), - [anon_sym_c_short] = ACTIONS(2505), - [anon_sym_c_ushort] = ACTIONS(2505), - [anon_sym_c_int] = ACTIONS(2505), - [anon_sym_c_uint] = ACTIONS(2505), - [anon_sym_c_long] = ACTIONS(2505), - [anon_sym_c_ulong] = ACTIONS(2505), - [anon_sym_c_longlong] = ACTIONS(2505), - [anon_sym_c_ulonglong] = ACTIONS(2505), - [anon_sym_c_float] = ACTIONS(2505), - [anon_sym_c_double] = ACTIONS(2505), - [anon_sym_c_longdouble] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_yield] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_defer] = ACTIONS(2505), - [anon_sym_errdefer] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_match] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2503), - [anon_sym_try] = ACTIONS(2505), - [anon_sym_DOT] = ACTIONS(2503), - [anon_sym_true] = ACTIONS(2505), - [anon_sym_false] = ACTIONS(2505), - [sym_none] = ACTIONS(2505), - [sym_undefined] = ACTIONS(2505), - [sym_sink] = ACTIONS(2505), - [sym_integer] = ACTIONS(2505), - [sym_float] = ACTIONS(2503), - [anon_sym_DQUOTE] = ACTIONS(2503), - [sym_multiline_string] = ACTIONS(2503), - [sym_character] = ACTIONS(2503), + [ts_builtin_sym_end] = ACTIONS(2505), + [sym_identifier] = ACTIONS(2507), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2503), + [sym__newline] = ACTIONS(2505), }, [STATE(1103)] = { - [ts_builtin_sym_end] = ACTIONS(2507), - [sym_identifier] = ACTIONS(2509), - [anon_sym_import] = ACTIONS(2509), - [anon_sym_func] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_RPAREN] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_RBRACE] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_DOLLAR] = ACTIONS(2507), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_void] = ACTIONS(2509), - [anon_sym_anyopaque] = ACTIONS(2509), - [anon_sym_bool] = ACTIONS(2509), - [anon_sym_int] = ACTIONS(2509), - [anon_sym_float] = ACTIONS(2509), - [anon_sym_range] = ACTIONS(2509), - [anon_sym_i8] = ACTIONS(2509), - [anon_sym_i16] = ACTIONS(2509), - [anon_sym_i32] = ACTIONS(2509), - [anon_sym_i64] = ACTIONS(2509), - [anon_sym_u8] = ACTIONS(2509), - [anon_sym_u16] = ACTIONS(2509), - [anon_sym_u32] = ACTIONS(2509), - [anon_sym_u64] = ACTIONS(2509), - [anon_sym_isize] = ACTIONS(2509), - [anon_sym_usize] = ACTIONS(2509), - [anon_sym_f32] = ACTIONS(2509), - [anon_sym_f64] = ACTIONS(2509), - [anon_sym_c_char] = ACTIONS(2509), - [anon_sym_c_schar] = ACTIONS(2509), - [anon_sym_c_uchar] = ACTIONS(2509), - [anon_sym_c_short] = ACTIONS(2509), - [anon_sym_c_ushort] = ACTIONS(2509), - [anon_sym_c_int] = ACTIONS(2509), - [anon_sym_c_uint] = ACTIONS(2509), - [anon_sym_c_long] = ACTIONS(2509), - [anon_sym_c_ulong] = ACTIONS(2509), - [anon_sym_c_longlong] = ACTIONS(2509), - [anon_sym_c_ulonglong] = ACTIONS(2509), - [anon_sym_c_float] = ACTIONS(2509), - [anon_sym_c_double] = ACTIONS(2509), - [anon_sym_c_longdouble] = ACTIONS(2509), - [anon_sym_return] = ACTIONS(2509), - [anon_sym_yield] = ACTIONS(2509), - [anon_sym_break] = ACTIONS(2509), - [anon_sym_continue] = ACTIONS(2509), - [anon_sym_defer] = ACTIONS(2509), - [anon_sym_errdefer] = ACTIONS(2509), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_else] = ACTIONS(2509), - [anon_sym_while] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2509), - [anon_sym_match] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_DOT] = ACTIONS(2507), - [anon_sym_true] = ACTIONS(2509), - [anon_sym_false] = ACTIONS(2509), - [sym_none] = ACTIONS(2509), - [sym_undefined] = ACTIONS(2509), - [sym_sink] = ACTIONS(2509), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2507), - [anon_sym_DQUOTE] = ACTIONS(2507), - [sym_multiline_string] = ACTIONS(2507), - [sym_character] = ACTIONS(2507), + [ts_builtin_sym_end] = ACTIONS(2509), + [sym_identifier] = ACTIONS(2511), + [anon_sym_import] = ACTIONS(2511), + [anon_sym_func] = ACTIONS(2511), + [anon_sym_BANG] = ACTIONS(2509), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2509), + [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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2507), + [sym__newline] = ACTIONS(2509), }, [STATE(1104)] = { - [ts_builtin_sym_end] = ACTIONS(2511), - [sym_identifier] = ACTIONS(2513), - [anon_sym_import] = ACTIONS(2513), - [anon_sym_func] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_RPAREN] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_DOLLAR] = ACTIONS(2511), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_void] = ACTIONS(2513), - [anon_sym_anyopaque] = ACTIONS(2513), - [anon_sym_bool] = ACTIONS(2513), - [anon_sym_int] = ACTIONS(2513), - [anon_sym_float] = ACTIONS(2513), - [anon_sym_range] = ACTIONS(2513), - [anon_sym_i8] = ACTIONS(2513), - [anon_sym_i16] = ACTIONS(2513), - [anon_sym_i32] = ACTIONS(2513), - [anon_sym_i64] = ACTIONS(2513), - [anon_sym_u8] = ACTIONS(2513), - [anon_sym_u16] = ACTIONS(2513), - [anon_sym_u32] = ACTIONS(2513), - [anon_sym_u64] = ACTIONS(2513), - [anon_sym_isize] = ACTIONS(2513), - [anon_sym_usize] = ACTIONS(2513), - [anon_sym_f32] = ACTIONS(2513), - [anon_sym_f64] = ACTIONS(2513), - [anon_sym_c_char] = ACTIONS(2513), - [anon_sym_c_schar] = ACTIONS(2513), - [anon_sym_c_uchar] = ACTIONS(2513), - [anon_sym_c_short] = ACTIONS(2513), - [anon_sym_c_ushort] = ACTIONS(2513), - [anon_sym_c_int] = ACTIONS(2513), - [anon_sym_c_uint] = ACTIONS(2513), - [anon_sym_c_long] = ACTIONS(2513), - [anon_sym_c_ulong] = ACTIONS(2513), - [anon_sym_c_longlong] = ACTIONS(2513), - [anon_sym_c_ulonglong] = ACTIONS(2513), - [anon_sym_c_float] = ACTIONS(2513), - [anon_sym_c_double] = ACTIONS(2513), - [anon_sym_c_longdouble] = ACTIONS(2513), - [anon_sym_return] = ACTIONS(2513), - [anon_sym_yield] = ACTIONS(2513), - [anon_sym_break] = ACTIONS(2513), - [anon_sym_continue] = ACTIONS(2513), - [anon_sym_defer] = ACTIONS(2513), - [anon_sym_errdefer] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_else] = ACTIONS(2513), - [anon_sym_while] = ACTIONS(2513), - [anon_sym_for] = ACTIONS(2513), - [anon_sym_match] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2513), - [anon_sym_DOT] = ACTIONS(2511), - [anon_sym_true] = ACTIONS(2513), - [anon_sym_false] = ACTIONS(2513), - [sym_none] = ACTIONS(2513), - [sym_undefined] = ACTIONS(2513), - [sym_sink] = ACTIONS(2513), - [sym_integer] = ACTIONS(2513), - [sym_float] = ACTIONS(2511), - [anon_sym_DQUOTE] = ACTIONS(2511), - [sym_multiline_string] = ACTIONS(2511), - [sym_character] = ACTIONS(2511), + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2515), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2511), + [sym__newline] = ACTIONS(2513), }, [STATE(1105)] = { - [ts_builtin_sym_end] = ACTIONS(2515), - [sym_identifier] = ACTIONS(2517), - [anon_sym_import] = ACTIONS(2517), - [anon_sym_func] = ACTIONS(2517), - [anon_sym_BANG] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym_RPAREN] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2515), - [anon_sym_RBRACE] = ACTIONS(2515), - [anon_sym_DASH] = ACTIONS(2515), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_LBRACK] = ACTIONS(2515), - [anon_sym_void] = ACTIONS(2517), - [anon_sym_anyopaque] = ACTIONS(2517), - [anon_sym_bool] = ACTIONS(2517), - [anon_sym_int] = ACTIONS(2517), - [anon_sym_float] = ACTIONS(2517), - [anon_sym_range] = ACTIONS(2517), - [anon_sym_i8] = ACTIONS(2517), - [anon_sym_i16] = ACTIONS(2517), - [anon_sym_i32] = ACTIONS(2517), - [anon_sym_i64] = ACTIONS(2517), - [anon_sym_u8] = ACTIONS(2517), - [anon_sym_u16] = ACTIONS(2517), - [anon_sym_u32] = ACTIONS(2517), - [anon_sym_u64] = ACTIONS(2517), - [anon_sym_isize] = ACTIONS(2517), - [anon_sym_usize] = ACTIONS(2517), - [anon_sym_f32] = ACTIONS(2517), - [anon_sym_f64] = ACTIONS(2517), - [anon_sym_c_char] = ACTIONS(2517), - [anon_sym_c_schar] = ACTIONS(2517), - [anon_sym_c_uchar] = ACTIONS(2517), - [anon_sym_c_short] = ACTIONS(2517), - [anon_sym_c_ushort] = ACTIONS(2517), - [anon_sym_c_int] = ACTIONS(2517), - [anon_sym_c_uint] = ACTIONS(2517), - [anon_sym_c_long] = ACTIONS(2517), - [anon_sym_c_ulong] = ACTIONS(2517), - [anon_sym_c_longlong] = ACTIONS(2517), - [anon_sym_c_ulonglong] = ACTIONS(2517), - [anon_sym_c_float] = ACTIONS(2517), - [anon_sym_c_double] = ACTIONS(2517), - [anon_sym_c_longdouble] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2517), - [anon_sym_yield] = ACTIONS(2517), - [anon_sym_break] = ACTIONS(2517), - [anon_sym_continue] = ACTIONS(2517), - [anon_sym_defer] = ACTIONS(2517), - [anon_sym_errdefer] = ACTIONS(2517), - [anon_sym_if] = ACTIONS(2517), - [anon_sym_else] = ACTIONS(2517), - [anon_sym_while] = ACTIONS(2517), - [anon_sym_for] = ACTIONS(2517), - [anon_sym_match] = ACTIONS(2517), - [anon_sym_AMP] = ACTIONS(2515), - [anon_sym_try] = ACTIONS(2517), - [anon_sym_DOT] = ACTIONS(2515), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [sym_none] = ACTIONS(2517), - [sym_undefined] = ACTIONS(2517), - [sym_sink] = ACTIONS(2517), - [sym_integer] = ACTIONS(2517), - [sym_float] = ACTIONS(2515), - [anon_sym_DQUOTE] = ACTIONS(2515), - [sym_multiline_string] = ACTIONS(2515), - [sym_character] = ACTIONS(2515), + [ts_builtin_sym_end] = ACTIONS(2517), + [sym_identifier] = ACTIONS(2519), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2515), + [sym__newline] = ACTIONS(2517), }, [STATE(1106)] = { - [ts_builtin_sym_end] = ACTIONS(2519), - [sym_identifier] = ACTIONS(2521), - [anon_sym_import] = ACTIONS(2521), - [anon_sym_func] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2519), - [anon_sym_struct] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2519), - [anon_sym_RPAREN] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_RBRACE] = ACTIONS(2519), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_DOLLAR] = ACTIONS(2519), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_void] = ACTIONS(2521), - [anon_sym_anyopaque] = ACTIONS(2521), - [anon_sym_bool] = ACTIONS(2521), - [anon_sym_int] = ACTIONS(2521), - [anon_sym_float] = ACTIONS(2521), - [anon_sym_range] = ACTIONS(2521), - [anon_sym_i8] = ACTIONS(2521), - [anon_sym_i16] = ACTIONS(2521), - [anon_sym_i32] = ACTIONS(2521), - [anon_sym_i64] = ACTIONS(2521), - [anon_sym_u8] = ACTIONS(2521), - [anon_sym_u16] = ACTIONS(2521), - [anon_sym_u32] = ACTIONS(2521), - [anon_sym_u64] = ACTIONS(2521), - [anon_sym_isize] = ACTIONS(2521), - [anon_sym_usize] = ACTIONS(2521), - [anon_sym_f32] = ACTIONS(2521), - [anon_sym_f64] = ACTIONS(2521), - [anon_sym_c_char] = ACTIONS(2521), - [anon_sym_c_schar] = ACTIONS(2521), - [anon_sym_c_uchar] = ACTIONS(2521), - [anon_sym_c_short] = ACTIONS(2521), - [anon_sym_c_ushort] = ACTIONS(2521), - [anon_sym_c_int] = ACTIONS(2521), - [anon_sym_c_uint] = ACTIONS(2521), - [anon_sym_c_long] = ACTIONS(2521), - [anon_sym_c_ulong] = ACTIONS(2521), - [anon_sym_c_longlong] = ACTIONS(2521), - [anon_sym_c_ulonglong] = ACTIONS(2521), - [anon_sym_c_float] = ACTIONS(2521), - [anon_sym_c_double] = ACTIONS(2521), - [anon_sym_c_longdouble] = ACTIONS(2521), - [anon_sym_return] = ACTIONS(2521), - [anon_sym_yield] = ACTIONS(2521), - [anon_sym_break] = ACTIONS(2521), - [anon_sym_continue] = ACTIONS(2521), - [anon_sym_defer] = ACTIONS(2521), - [anon_sym_errdefer] = ACTIONS(2521), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_else] = ACTIONS(2521), - [anon_sym_while] = ACTIONS(2521), - [anon_sym_for] = ACTIONS(2521), - [anon_sym_match] = ACTIONS(2521), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_try] = ACTIONS(2521), - [anon_sym_DOT] = ACTIONS(2519), - [anon_sym_true] = ACTIONS(2521), - [anon_sym_false] = ACTIONS(2521), - [sym_none] = ACTIONS(2521), - [sym_undefined] = ACTIONS(2521), - [sym_sink] = ACTIONS(2521), - [sym_integer] = ACTIONS(2521), - [sym_float] = ACTIONS(2519), - [anon_sym_DQUOTE] = ACTIONS(2519), - [sym_multiline_string] = ACTIONS(2519), - [sym_character] = ACTIONS(2519), + [ts_builtin_sym_end] = ACTIONS(2521), + [sym_identifier] = ACTIONS(2523), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2519), + [sym__newline] = ACTIONS(2521), }, [STATE(1107)] = { - [ts_builtin_sym_end] = ACTIONS(2523), - [sym_identifier] = ACTIONS(2525), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_func] = ACTIONS(2525), - [anon_sym_BANG] = ACTIONS(2523), - [anon_sym_struct] = ACTIONS(2525), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_RPAREN] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_DASH] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2523), - [anon_sym_LBRACK] = ACTIONS(2523), - [anon_sym_void] = ACTIONS(2525), - [anon_sym_anyopaque] = ACTIONS(2525), - [anon_sym_bool] = ACTIONS(2525), - [anon_sym_int] = ACTIONS(2525), - [anon_sym_float] = ACTIONS(2525), - [anon_sym_range] = ACTIONS(2525), - [anon_sym_i8] = ACTIONS(2525), - [anon_sym_i16] = ACTIONS(2525), - [anon_sym_i32] = ACTIONS(2525), - [anon_sym_i64] = ACTIONS(2525), - [anon_sym_u8] = ACTIONS(2525), - [anon_sym_u16] = ACTIONS(2525), - [anon_sym_u32] = ACTIONS(2525), - [anon_sym_u64] = ACTIONS(2525), - [anon_sym_isize] = ACTIONS(2525), - [anon_sym_usize] = ACTIONS(2525), - [anon_sym_f32] = ACTIONS(2525), - [anon_sym_f64] = ACTIONS(2525), - [anon_sym_c_char] = ACTIONS(2525), - [anon_sym_c_schar] = ACTIONS(2525), - [anon_sym_c_uchar] = ACTIONS(2525), - [anon_sym_c_short] = ACTIONS(2525), - [anon_sym_c_ushort] = ACTIONS(2525), - [anon_sym_c_int] = ACTIONS(2525), - [anon_sym_c_uint] = ACTIONS(2525), - [anon_sym_c_long] = ACTIONS(2525), - [anon_sym_c_ulong] = ACTIONS(2525), - [anon_sym_c_longlong] = ACTIONS(2525), - [anon_sym_c_ulonglong] = ACTIONS(2525), - [anon_sym_c_float] = ACTIONS(2525), - [anon_sym_c_double] = ACTIONS(2525), - [anon_sym_c_longdouble] = ACTIONS(2525), - [anon_sym_return] = ACTIONS(2525), - [anon_sym_yield] = ACTIONS(2525), - [anon_sym_break] = ACTIONS(2525), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_defer] = ACTIONS(2525), - [anon_sym_errdefer] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_else] = ACTIONS(2525), - [anon_sym_while] = ACTIONS(2525), - [anon_sym_for] = ACTIONS(2525), - [anon_sym_match] = ACTIONS(2525), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_try] = ACTIONS(2525), - [anon_sym_DOT] = ACTIONS(2523), - [anon_sym_true] = ACTIONS(2525), - [anon_sym_false] = ACTIONS(2525), - [sym_none] = ACTIONS(2525), - [sym_undefined] = ACTIONS(2525), - [sym_sink] = ACTIONS(2525), - [sym_integer] = ACTIONS(2525), - [sym_float] = ACTIONS(2523), - [anon_sym_DQUOTE] = ACTIONS(2523), - [sym_multiline_string] = ACTIONS(2523), - [sym_character] = ACTIONS(2523), + [ts_builtin_sym_end] = ACTIONS(2525), + [sym_identifier] = ACTIONS(2527), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2523), + [sym__newline] = ACTIONS(2525), }, [STATE(1108)] = { - [ts_builtin_sym_end] = ACTIONS(2527), - [sym_identifier] = ACTIONS(2529), - [anon_sym_import] = ACTIONS(2529), - [anon_sym_func] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2527), - [anon_sym_struct] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2527), - [anon_sym_RPAREN] = ACTIONS(2527), - [anon_sym_LBRACE] = ACTIONS(2527), - [anon_sym_RBRACE] = ACTIONS(2527), - [anon_sym_DASH] = ACTIONS(2527), - [anon_sym_DOLLAR] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2527), - [anon_sym_void] = ACTIONS(2529), - [anon_sym_anyopaque] = ACTIONS(2529), - [anon_sym_bool] = ACTIONS(2529), - [anon_sym_int] = ACTIONS(2529), - [anon_sym_float] = ACTIONS(2529), - [anon_sym_range] = ACTIONS(2529), - [anon_sym_i8] = ACTIONS(2529), - [anon_sym_i16] = ACTIONS(2529), - [anon_sym_i32] = ACTIONS(2529), - [anon_sym_i64] = ACTIONS(2529), - [anon_sym_u8] = ACTIONS(2529), - [anon_sym_u16] = ACTIONS(2529), - [anon_sym_u32] = ACTIONS(2529), - [anon_sym_u64] = ACTIONS(2529), - [anon_sym_isize] = ACTIONS(2529), - [anon_sym_usize] = ACTIONS(2529), - [anon_sym_f32] = ACTIONS(2529), - [anon_sym_f64] = ACTIONS(2529), - [anon_sym_c_char] = ACTIONS(2529), - [anon_sym_c_schar] = ACTIONS(2529), - [anon_sym_c_uchar] = ACTIONS(2529), - [anon_sym_c_short] = ACTIONS(2529), - [anon_sym_c_ushort] = ACTIONS(2529), - [anon_sym_c_int] = ACTIONS(2529), - [anon_sym_c_uint] = ACTIONS(2529), - [anon_sym_c_long] = ACTIONS(2529), - [anon_sym_c_ulong] = ACTIONS(2529), - [anon_sym_c_longlong] = ACTIONS(2529), - [anon_sym_c_ulonglong] = ACTIONS(2529), - [anon_sym_c_float] = ACTIONS(2529), - [anon_sym_c_double] = ACTIONS(2529), - [anon_sym_c_longdouble] = ACTIONS(2529), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_defer] = ACTIONS(2529), - [anon_sym_errdefer] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_match] = ACTIONS(2529), - [anon_sym_AMP] = ACTIONS(2527), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_DOT] = ACTIONS(2527), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [sym_none] = ACTIONS(2529), - [sym_undefined] = ACTIONS(2529), - [sym_sink] = ACTIONS(2529), - [sym_integer] = ACTIONS(2529), - [sym_float] = ACTIONS(2527), - [anon_sym_DQUOTE] = ACTIONS(2527), - [sym_multiline_string] = ACTIONS(2527), - [sym_character] = ACTIONS(2527), + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2531), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2527), + [sym__newline] = ACTIONS(2529), }, [STATE(1109)] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2533), - [anon_sym_import] = ACTIONS(2533), - [anon_sym_func] = ACTIONS(2533), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_struct] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_RPAREN] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_DOLLAR] = ACTIONS(2531), - [anon_sym_LBRACK] = ACTIONS(2531), - [anon_sym_void] = ACTIONS(2533), - [anon_sym_anyopaque] = ACTIONS(2533), - [anon_sym_bool] = ACTIONS(2533), - [anon_sym_int] = ACTIONS(2533), - [anon_sym_float] = ACTIONS(2533), - [anon_sym_range] = ACTIONS(2533), - [anon_sym_i8] = ACTIONS(2533), - [anon_sym_i16] = ACTIONS(2533), - [anon_sym_i32] = ACTIONS(2533), - [anon_sym_i64] = ACTIONS(2533), - [anon_sym_u8] = ACTIONS(2533), - [anon_sym_u16] = ACTIONS(2533), - [anon_sym_u32] = ACTIONS(2533), - [anon_sym_u64] = ACTIONS(2533), - [anon_sym_isize] = ACTIONS(2533), - [anon_sym_usize] = ACTIONS(2533), - [anon_sym_f32] = ACTIONS(2533), - [anon_sym_f64] = ACTIONS(2533), - [anon_sym_c_char] = ACTIONS(2533), - [anon_sym_c_schar] = ACTIONS(2533), - [anon_sym_c_uchar] = ACTIONS(2533), - [anon_sym_c_short] = ACTIONS(2533), - [anon_sym_c_ushort] = ACTIONS(2533), - [anon_sym_c_int] = ACTIONS(2533), - [anon_sym_c_uint] = ACTIONS(2533), - [anon_sym_c_long] = ACTIONS(2533), - [anon_sym_c_ulong] = ACTIONS(2533), - [anon_sym_c_longlong] = ACTIONS(2533), - [anon_sym_c_ulonglong] = ACTIONS(2533), - [anon_sym_c_float] = ACTIONS(2533), - [anon_sym_c_double] = ACTIONS(2533), - [anon_sym_c_longdouble] = ACTIONS(2533), - [anon_sym_return] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2533), - [anon_sym_break] = ACTIONS(2533), - [anon_sym_continue] = ACTIONS(2533), - [anon_sym_defer] = ACTIONS(2533), - [anon_sym_errdefer] = ACTIONS(2533), - [anon_sym_if] = ACTIONS(2533), - [anon_sym_else] = ACTIONS(2533), - [anon_sym_while] = ACTIONS(2533), - [anon_sym_for] = ACTIONS(2533), - [anon_sym_match] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2531), - [anon_sym_try] = ACTIONS(2533), - [anon_sym_DOT] = ACTIONS(2531), - [anon_sym_true] = ACTIONS(2533), - [anon_sym_false] = ACTIONS(2533), - [sym_none] = ACTIONS(2533), - [sym_undefined] = ACTIONS(2533), - [sym_sink] = ACTIONS(2533), - [sym_integer] = ACTIONS(2533), - [sym_float] = ACTIONS(2531), - [anon_sym_DQUOTE] = ACTIONS(2531), - [sym_multiline_string] = ACTIONS(2531), - [sym_character] = ACTIONS(2531), + [ts_builtin_sym_end] = ACTIONS(2533), + [sym_identifier] = ACTIONS(2535), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2531), + [sym__newline] = ACTIONS(2533), }, [STATE(1110)] = { - [ts_builtin_sym_end] = ACTIONS(2535), - [sym_identifier] = ACTIONS(2537), - [anon_sym_import] = ACTIONS(2537), - [anon_sym_func] = ACTIONS(2537), - [anon_sym_BANG] = ACTIONS(2535), - [anon_sym_struct] = ACTIONS(2537), - [anon_sym_LPAREN] = ACTIONS(2535), - [anon_sym_RPAREN] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(2535), - [anon_sym_RBRACE] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_DOLLAR] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2535), - [anon_sym_void] = ACTIONS(2537), - [anon_sym_anyopaque] = ACTIONS(2537), - [anon_sym_bool] = ACTIONS(2537), - [anon_sym_int] = ACTIONS(2537), - [anon_sym_float] = ACTIONS(2537), - [anon_sym_range] = ACTIONS(2537), - [anon_sym_i8] = ACTIONS(2537), - [anon_sym_i16] = ACTIONS(2537), - [anon_sym_i32] = ACTIONS(2537), - [anon_sym_i64] = ACTIONS(2537), - [anon_sym_u8] = ACTIONS(2537), - [anon_sym_u16] = ACTIONS(2537), - [anon_sym_u32] = ACTIONS(2537), - [anon_sym_u64] = ACTIONS(2537), - [anon_sym_isize] = ACTIONS(2537), - [anon_sym_usize] = ACTIONS(2537), - [anon_sym_f32] = ACTIONS(2537), - [anon_sym_f64] = ACTIONS(2537), - [anon_sym_c_char] = ACTIONS(2537), - [anon_sym_c_schar] = ACTIONS(2537), - [anon_sym_c_uchar] = ACTIONS(2537), - [anon_sym_c_short] = ACTIONS(2537), - [anon_sym_c_ushort] = ACTIONS(2537), - [anon_sym_c_int] = ACTIONS(2537), - [anon_sym_c_uint] = ACTIONS(2537), - [anon_sym_c_long] = ACTIONS(2537), - [anon_sym_c_ulong] = ACTIONS(2537), - [anon_sym_c_longlong] = ACTIONS(2537), - [anon_sym_c_ulonglong] = ACTIONS(2537), - [anon_sym_c_float] = ACTIONS(2537), - [anon_sym_c_double] = ACTIONS(2537), - [anon_sym_c_longdouble] = ACTIONS(2537), - [anon_sym_return] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2537), - [anon_sym_break] = ACTIONS(2537), - [anon_sym_continue] = ACTIONS(2537), - [anon_sym_defer] = ACTIONS(2537), - [anon_sym_errdefer] = ACTIONS(2537), - [anon_sym_if] = ACTIONS(2537), - [anon_sym_else] = ACTIONS(2537), - [anon_sym_while] = ACTIONS(2537), - [anon_sym_for] = ACTIONS(2537), - [anon_sym_match] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2535), - [anon_sym_try] = ACTIONS(2537), - [anon_sym_DOT] = ACTIONS(2535), - [anon_sym_true] = ACTIONS(2537), - [anon_sym_false] = ACTIONS(2537), - [sym_none] = ACTIONS(2537), - [sym_undefined] = ACTIONS(2537), - [sym_sink] = ACTIONS(2537), - [sym_integer] = ACTIONS(2537), - [sym_float] = ACTIONS(2535), - [anon_sym_DQUOTE] = ACTIONS(2535), - [sym_multiline_string] = ACTIONS(2535), - [sym_character] = ACTIONS(2535), + [ts_builtin_sym_end] = ACTIONS(2537), + [sym_identifier] = ACTIONS(2539), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2535), + [sym__newline] = ACTIONS(2537), }, [STATE(1111)] = { - [ts_builtin_sym_end] = ACTIONS(2539), - [sym_identifier] = ACTIONS(2541), - [anon_sym_import] = ACTIONS(2541), - [anon_sym_func] = ACTIONS(2541), - [anon_sym_BANG] = ACTIONS(2539), - [anon_sym_struct] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2539), - [anon_sym_RPAREN] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2539), - [anon_sym_RBRACE] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2539), - [anon_sym_DOLLAR] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2539), - [anon_sym_void] = ACTIONS(2541), - [anon_sym_anyopaque] = ACTIONS(2541), - [anon_sym_bool] = ACTIONS(2541), - [anon_sym_int] = ACTIONS(2541), - [anon_sym_float] = ACTIONS(2541), - [anon_sym_range] = ACTIONS(2541), - [anon_sym_i8] = ACTIONS(2541), - [anon_sym_i16] = ACTIONS(2541), - [anon_sym_i32] = ACTIONS(2541), - [anon_sym_i64] = ACTIONS(2541), - [anon_sym_u8] = ACTIONS(2541), - [anon_sym_u16] = ACTIONS(2541), - [anon_sym_u32] = ACTIONS(2541), - [anon_sym_u64] = ACTIONS(2541), - [anon_sym_isize] = ACTIONS(2541), - [anon_sym_usize] = ACTIONS(2541), - [anon_sym_f32] = ACTIONS(2541), - [anon_sym_f64] = ACTIONS(2541), - [anon_sym_c_char] = ACTIONS(2541), - [anon_sym_c_schar] = ACTIONS(2541), - [anon_sym_c_uchar] = ACTIONS(2541), - [anon_sym_c_short] = ACTIONS(2541), - [anon_sym_c_ushort] = ACTIONS(2541), - [anon_sym_c_int] = ACTIONS(2541), - [anon_sym_c_uint] = ACTIONS(2541), - [anon_sym_c_long] = ACTIONS(2541), - [anon_sym_c_ulong] = ACTIONS(2541), - [anon_sym_c_longlong] = ACTIONS(2541), - [anon_sym_c_ulonglong] = ACTIONS(2541), - [anon_sym_c_float] = ACTIONS(2541), - [anon_sym_c_double] = ACTIONS(2541), - [anon_sym_c_longdouble] = ACTIONS(2541), - [anon_sym_return] = ACTIONS(2541), - [anon_sym_yield] = ACTIONS(2541), - [anon_sym_break] = ACTIONS(2541), - [anon_sym_continue] = ACTIONS(2541), - [anon_sym_defer] = ACTIONS(2541), - [anon_sym_errdefer] = ACTIONS(2541), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_else] = ACTIONS(2541), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_AMP] = ACTIONS(2539), - [anon_sym_try] = ACTIONS(2541), - [anon_sym_DOT] = ACTIONS(2539), - [anon_sym_true] = ACTIONS(2541), - [anon_sym_false] = ACTIONS(2541), - [sym_none] = ACTIONS(2541), - [sym_undefined] = ACTIONS(2541), - [sym_sink] = ACTIONS(2541), - [sym_integer] = ACTIONS(2541), - [sym_float] = ACTIONS(2539), - [anon_sym_DQUOTE] = ACTIONS(2539), - [sym_multiline_string] = ACTIONS(2539), - [sym_character] = ACTIONS(2539), + [ts_builtin_sym_end] = ACTIONS(2541), + [sym_identifier] = ACTIONS(2543), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2539), + [sym__newline] = ACTIONS(2541), }, [STATE(1112)] = { - [ts_builtin_sym_end] = ACTIONS(2543), - [sym_identifier] = ACTIONS(2545), - [anon_sym_import] = ACTIONS(2545), - [anon_sym_func] = ACTIONS(2545), - [anon_sym_BANG] = ACTIONS(2543), - [anon_sym_struct] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(2543), - [anon_sym_LBRACE] = ACTIONS(2543), - [anon_sym_RBRACE] = ACTIONS(2543), - [anon_sym_DASH] = ACTIONS(2543), - [anon_sym_DOLLAR] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_void] = ACTIONS(2545), - [anon_sym_anyopaque] = ACTIONS(2545), - [anon_sym_bool] = ACTIONS(2545), - [anon_sym_int] = ACTIONS(2545), - [anon_sym_float] = ACTIONS(2545), - [anon_sym_range] = ACTIONS(2545), - [anon_sym_i8] = ACTIONS(2545), - [anon_sym_i16] = ACTIONS(2545), - [anon_sym_i32] = ACTIONS(2545), - [anon_sym_i64] = ACTIONS(2545), - [anon_sym_u8] = ACTIONS(2545), - [anon_sym_u16] = ACTIONS(2545), - [anon_sym_u32] = ACTIONS(2545), - [anon_sym_u64] = ACTIONS(2545), - [anon_sym_isize] = ACTIONS(2545), - [anon_sym_usize] = ACTIONS(2545), - [anon_sym_f32] = ACTIONS(2545), - [anon_sym_f64] = ACTIONS(2545), - [anon_sym_c_char] = ACTIONS(2545), - [anon_sym_c_schar] = ACTIONS(2545), - [anon_sym_c_uchar] = ACTIONS(2545), - [anon_sym_c_short] = ACTIONS(2545), - [anon_sym_c_ushort] = ACTIONS(2545), - [anon_sym_c_int] = ACTIONS(2545), - [anon_sym_c_uint] = ACTIONS(2545), - [anon_sym_c_long] = ACTIONS(2545), - [anon_sym_c_ulong] = ACTIONS(2545), - [anon_sym_c_longlong] = ACTIONS(2545), - [anon_sym_c_ulonglong] = ACTIONS(2545), - [anon_sym_c_float] = ACTIONS(2545), - [anon_sym_c_double] = ACTIONS(2545), - [anon_sym_c_longdouble] = ACTIONS(2545), - [anon_sym_return] = ACTIONS(2545), - [anon_sym_yield] = ACTIONS(2545), - [anon_sym_break] = ACTIONS(2545), - [anon_sym_continue] = ACTIONS(2545), - [anon_sym_defer] = ACTIONS(2545), - [anon_sym_errdefer] = ACTIONS(2545), - [anon_sym_if] = ACTIONS(2545), - [anon_sym_else] = ACTIONS(2545), - [anon_sym_while] = ACTIONS(2545), - [anon_sym_for] = ACTIONS(2545), - [anon_sym_match] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2543), - [anon_sym_try] = ACTIONS(2545), - [anon_sym_DOT] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2545), - [anon_sym_false] = ACTIONS(2545), - [sym_none] = ACTIONS(2545), - [sym_undefined] = ACTIONS(2545), - [sym_sink] = ACTIONS(2545), - [sym_integer] = ACTIONS(2545), - [sym_float] = ACTIONS(2543), - [anon_sym_DQUOTE] = ACTIONS(2543), - [sym_multiline_string] = ACTIONS(2543), - [sym_character] = ACTIONS(2543), + [ts_builtin_sym_end] = ACTIONS(2545), + [sym_identifier] = ACTIONS(2547), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2543), + [sym__newline] = ACTIONS(2545), }, [STATE(1113)] = { - [ts_builtin_sym_end] = ACTIONS(2547), - [sym_identifier] = ACTIONS(2549), - [anon_sym_import] = ACTIONS(2549), - [anon_sym_func] = ACTIONS(2549), - [anon_sym_BANG] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2549), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_void] = ACTIONS(2549), - [anon_sym_anyopaque] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_int] = ACTIONS(2549), - [anon_sym_float] = ACTIONS(2549), - [anon_sym_range] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_c_char] = ACTIONS(2549), - [anon_sym_c_schar] = ACTIONS(2549), - [anon_sym_c_uchar] = ACTIONS(2549), - [anon_sym_c_short] = ACTIONS(2549), - [anon_sym_c_ushort] = ACTIONS(2549), - [anon_sym_c_int] = ACTIONS(2549), - [anon_sym_c_uint] = ACTIONS(2549), - [anon_sym_c_long] = ACTIONS(2549), - [anon_sym_c_ulong] = ACTIONS(2549), - [anon_sym_c_longlong] = ACTIONS(2549), - [anon_sym_c_ulonglong] = ACTIONS(2549), - [anon_sym_c_float] = ACTIONS(2549), - [anon_sym_c_double] = ACTIONS(2549), - [anon_sym_c_longdouble] = ACTIONS(2549), - [anon_sym_return] = ACTIONS(2549), - [anon_sym_yield] = ACTIONS(2549), - [anon_sym_break] = ACTIONS(2549), - [anon_sym_continue] = ACTIONS(2549), - [anon_sym_defer] = ACTIONS(2549), - [anon_sym_errdefer] = ACTIONS(2549), - [anon_sym_if] = ACTIONS(2549), - [anon_sym_else] = ACTIONS(2549), - [anon_sym_while] = ACTIONS(2549), - [anon_sym_for] = ACTIONS(2549), - [anon_sym_match] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2549), - [anon_sym_DOT] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2549), - [anon_sym_false] = ACTIONS(2549), - [sym_none] = ACTIONS(2549), - [sym_undefined] = ACTIONS(2549), - [sym_sink] = ACTIONS(2549), - [sym_integer] = ACTIONS(2549), - [sym_float] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym_multiline_string] = ACTIONS(2547), - [sym_character] = ACTIONS(2547), + [ts_builtin_sym_end] = ACTIONS(2549), + [sym_identifier] = ACTIONS(2551), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2547), + [sym__newline] = ACTIONS(2549), }, [STATE(1114)] = { - [ts_builtin_sym_end] = ACTIONS(2551), - [sym_identifier] = ACTIONS(2553), - [anon_sym_import] = ACTIONS(2553), - [anon_sym_func] = ACTIONS(2553), - [anon_sym_BANG] = ACTIONS(2551), - [anon_sym_struct] = ACTIONS(2553), - [anon_sym_LPAREN] = ACTIONS(2551), - [anon_sym_RPAREN] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_DASH] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2551), - [anon_sym_LBRACK] = ACTIONS(2551), - [anon_sym_void] = ACTIONS(2553), - [anon_sym_anyopaque] = ACTIONS(2553), - [anon_sym_bool] = ACTIONS(2553), - [anon_sym_int] = ACTIONS(2553), - [anon_sym_float] = ACTIONS(2553), - [anon_sym_range] = ACTIONS(2553), - [anon_sym_i8] = ACTIONS(2553), - [anon_sym_i16] = ACTIONS(2553), - [anon_sym_i32] = ACTIONS(2553), - [anon_sym_i64] = ACTIONS(2553), - [anon_sym_u8] = ACTIONS(2553), - [anon_sym_u16] = ACTIONS(2553), - [anon_sym_u32] = ACTIONS(2553), - [anon_sym_u64] = ACTIONS(2553), - [anon_sym_isize] = ACTIONS(2553), - [anon_sym_usize] = ACTIONS(2553), - [anon_sym_f32] = ACTIONS(2553), - [anon_sym_f64] = ACTIONS(2553), - [anon_sym_c_char] = ACTIONS(2553), - [anon_sym_c_schar] = ACTIONS(2553), - [anon_sym_c_uchar] = ACTIONS(2553), - [anon_sym_c_short] = ACTIONS(2553), - [anon_sym_c_ushort] = ACTIONS(2553), - [anon_sym_c_int] = ACTIONS(2553), - [anon_sym_c_uint] = ACTIONS(2553), - [anon_sym_c_long] = ACTIONS(2553), - [anon_sym_c_ulong] = ACTIONS(2553), - [anon_sym_c_longlong] = ACTIONS(2553), - [anon_sym_c_ulonglong] = ACTIONS(2553), - [anon_sym_c_float] = ACTIONS(2553), - [anon_sym_c_double] = ACTIONS(2553), - [anon_sym_c_longdouble] = ACTIONS(2553), - [anon_sym_return] = ACTIONS(2553), - [anon_sym_yield] = ACTIONS(2553), - [anon_sym_break] = ACTIONS(2553), - [anon_sym_continue] = ACTIONS(2553), - [anon_sym_defer] = ACTIONS(2553), - [anon_sym_errdefer] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2553), - [anon_sym_else] = ACTIONS(2553), - [anon_sym_while] = ACTIONS(2553), - [anon_sym_for] = ACTIONS(2553), - [anon_sym_match] = ACTIONS(2553), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_try] = ACTIONS(2553), - [anon_sym_DOT] = ACTIONS(2551), - [anon_sym_true] = ACTIONS(2553), - [anon_sym_false] = ACTIONS(2553), - [sym_none] = ACTIONS(2553), - [sym_undefined] = ACTIONS(2553), - [sym_sink] = ACTIONS(2553), - [sym_integer] = ACTIONS(2553), - [sym_float] = ACTIONS(2551), - [anon_sym_DQUOTE] = ACTIONS(2551), - [sym_multiline_string] = ACTIONS(2551), - [sym_character] = ACTIONS(2551), + [ts_builtin_sym_end] = ACTIONS(2553), + [sym_identifier] = ACTIONS(2555), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2551), + [sym__newline] = ACTIONS(2553), }, [STATE(1115)] = { - [ts_builtin_sym_end] = ACTIONS(2555), - [sym_identifier] = ACTIONS(2557), - [anon_sym_import] = ACTIONS(2557), - [anon_sym_func] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2555), - [anon_sym_struct] = ACTIONS(2557), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_RPAREN] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2555), - [anon_sym_RBRACE] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_DOLLAR] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_void] = ACTIONS(2557), - [anon_sym_anyopaque] = ACTIONS(2557), - [anon_sym_bool] = ACTIONS(2557), - [anon_sym_int] = ACTIONS(2557), - [anon_sym_float] = ACTIONS(2557), - [anon_sym_range] = ACTIONS(2557), - [anon_sym_i8] = ACTIONS(2557), - [anon_sym_i16] = ACTIONS(2557), - [anon_sym_i32] = ACTIONS(2557), - [anon_sym_i64] = ACTIONS(2557), - [anon_sym_u8] = ACTIONS(2557), - [anon_sym_u16] = ACTIONS(2557), - [anon_sym_u32] = ACTIONS(2557), - [anon_sym_u64] = ACTIONS(2557), - [anon_sym_isize] = ACTIONS(2557), - [anon_sym_usize] = ACTIONS(2557), - [anon_sym_f32] = ACTIONS(2557), - [anon_sym_f64] = ACTIONS(2557), - [anon_sym_c_char] = ACTIONS(2557), - [anon_sym_c_schar] = ACTIONS(2557), - [anon_sym_c_uchar] = ACTIONS(2557), - [anon_sym_c_short] = ACTIONS(2557), - [anon_sym_c_ushort] = ACTIONS(2557), - [anon_sym_c_int] = ACTIONS(2557), - [anon_sym_c_uint] = ACTIONS(2557), - [anon_sym_c_long] = ACTIONS(2557), - [anon_sym_c_ulong] = ACTIONS(2557), - [anon_sym_c_longlong] = ACTIONS(2557), - [anon_sym_c_ulonglong] = ACTIONS(2557), - [anon_sym_c_float] = ACTIONS(2557), - [anon_sym_c_double] = ACTIONS(2557), - [anon_sym_c_longdouble] = ACTIONS(2557), - [anon_sym_return] = ACTIONS(2557), - [anon_sym_yield] = ACTIONS(2557), - [anon_sym_break] = ACTIONS(2557), - [anon_sym_continue] = ACTIONS(2557), - [anon_sym_defer] = ACTIONS(2557), - [anon_sym_errdefer] = ACTIONS(2557), - [anon_sym_if] = ACTIONS(2557), - [anon_sym_else] = ACTIONS(2557), - [anon_sym_while] = ACTIONS(2557), - [anon_sym_for] = ACTIONS(2557), - [anon_sym_match] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2555), - [anon_sym_try] = ACTIONS(2557), - [anon_sym_DOT] = ACTIONS(2555), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [sym_none] = ACTIONS(2557), - [sym_undefined] = ACTIONS(2557), - [sym_sink] = ACTIONS(2557), - [sym_integer] = ACTIONS(2557), - [sym_float] = ACTIONS(2555), - [anon_sym_DQUOTE] = ACTIONS(2555), - [sym_multiline_string] = ACTIONS(2555), - [sym_character] = ACTIONS(2555), + [ts_builtin_sym_end] = ACTIONS(2557), + [sym_identifier] = ACTIONS(2559), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2555), + [sym__newline] = ACTIONS(2557), }, [STATE(1116)] = { - [ts_builtin_sym_end] = ACTIONS(2559), - [sym_identifier] = ACTIONS(2561), - [anon_sym_import] = ACTIONS(2561), - [anon_sym_func] = ACTIONS(2561), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_struct] = ACTIONS(2561), - [anon_sym_LPAREN] = ACTIONS(2559), - [anon_sym_RPAREN] = ACTIONS(2559), - [anon_sym_LBRACE] = ACTIONS(2559), - [anon_sym_RBRACE] = ACTIONS(2559), - [anon_sym_DASH] = ACTIONS(2559), - [anon_sym_DOLLAR] = ACTIONS(2559), - [anon_sym_LBRACK] = ACTIONS(2559), - [anon_sym_void] = ACTIONS(2561), - [anon_sym_anyopaque] = ACTIONS(2561), - [anon_sym_bool] = ACTIONS(2561), - [anon_sym_int] = ACTIONS(2561), - [anon_sym_float] = ACTIONS(2561), - [anon_sym_range] = ACTIONS(2561), - [anon_sym_i8] = ACTIONS(2561), - [anon_sym_i16] = ACTIONS(2561), - [anon_sym_i32] = ACTIONS(2561), - [anon_sym_i64] = ACTIONS(2561), - [anon_sym_u8] = ACTIONS(2561), - [anon_sym_u16] = ACTIONS(2561), - [anon_sym_u32] = ACTIONS(2561), - [anon_sym_u64] = ACTIONS(2561), - [anon_sym_isize] = ACTIONS(2561), - [anon_sym_usize] = ACTIONS(2561), - [anon_sym_f32] = ACTIONS(2561), - [anon_sym_f64] = ACTIONS(2561), - [anon_sym_c_char] = ACTIONS(2561), - [anon_sym_c_schar] = ACTIONS(2561), - [anon_sym_c_uchar] = ACTIONS(2561), - [anon_sym_c_short] = ACTIONS(2561), - [anon_sym_c_ushort] = ACTIONS(2561), - [anon_sym_c_int] = ACTIONS(2561), - [anon_sym_c_uint] = ACTIONS(2561), - [anon_sym_c_long] = ACTIONS(2561), - [anon_sym_c_ulong] = ACTIONS(2561), - [anon_sym_c_longlong] = ACTIONS(2561), - [anon_sym_c_ulonglong] = ACTIONS(2561), - [anon_sym_c_float] = ACTIONS(2561), - [anon_sym_c_double] = ACTIONS(2561), - [anon_sym_c_longdouble] = ACTIONS(2561), - [anon_sym_return] = ACTIONS(2561), - [anon_sym_yield] = ACTIONS(2561), - [anon_sym_break] = ACTIONS(2561), - [anon_sym_continue] = ACTIONS(2561), - [anon_sym_defer] = ACTIONS(2561), - [anon_sym_errdefer] = ACTIONS(2561), - [anon_sym_if] = ACTIONS(2561), - [anon_sym_else] = ACTIONS(2561), - [anon_sym_while] = ACTIONS(2561), - [anon_sym_for] = ACTIONS(2561), - [anon_sym_match] = ACTIONS(2561), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_try] = ACTIONS(2561), - [anon_sym_DOT] = ACTIONS(2559), - [anon_sym_true] = ACTIONS(2561), - [anon_sym_false] = ACTIONS(2561), - [sym_none] = ACTIONS(2561), - [sym_undefined] = ACTIONS(2561), - [sym_sink] = ACTIONS(2561), - [sym_integer] = ACTIONS(2561), - [sym_float] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2559), - [sym_multiline_string] = ACTIONS(2559), - [sym_character] = ACTIONS(2559), + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2563), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2559), + [sym__newline] = ACTIONS(2561), }, [STATE(1117)] = { - [ts_builtin_sym_end] = ACTIONS(2563), - [sym_identifier] = ACTIONS(2565), - [anon_sym_import] = ACTIONS(2565), - [anon_sym_func] = ACTIONS(2565), - [anon_sym_BANG] = ACTIONS(2563), - [anon_sym_struct] = ACTIONS(2565), - [anon_sym_LPAREN] = ACTIONS(2563), - [anon_sym_RPAREN] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_RBRACE] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(2563), - [anon_sym_void] = ACTIONS(2565), - [anon_sym_anyopaque] = ACTIONS(2565), - [anon_sym_bool] = ACTIONS(2565), - [anon_sym_int] = ACTIONS(2565), - [anon_sym_float] = ACTIONS(2565), - [anon_sym_range] = ACTIONS(2565), - [anon_sym_i8] = ACTIONS(2565), - [anon_sym_i16] = ACTIONS(2565), - [anon_sym_i32] = ACTIONS(2565), - [anon_sym_i64] = ACTIONS(2565), - [anon_sym_u8] = ACTIONS(2565), - [anon_sym_u16] = ACTIONS(2565), - [anon_sym_u32] = ACTIONS(2565), - [anon_sym_u64] = ACTIONS(2565), - [anon_sym_isize] = ACTIONS(2565), - [anon_sym_usize] = ACTIONS(2565), - [anon_sym_f32] = ACTIONS(2565), - [anon_sym_f64] = ACTIONS(2565), - [anon_sym_c_char] = ACTIONS(2565), - [anon_sym_c_schar] = ACTIONS(2565), - [anon_sym_c_uchar] = ACTIONS(2565), - [anon_sym_c_short] = ACTIONS(2565), - [anon_sym_c_ushort] = ACTIONS(2565), - [anon_sym_c_int] = ACTIONS(2565), - [anon_sym_c_uint] = ACTIONS(2565), - [anon_sym_c_long] = ACTIONS(2565), - [anon_sym_c_ulong] = ACTIONS(2565), - [anon_sym_c_longlong] = ACTIONS(2565), - [anon_sym_c_ulonglong] = ACTIONS(2565), - [anon_sym_c_float] = ACTIONS(2565), - [anon_sym_c_double] = ACTIONS(2565), - [anon_sym_c_longdouble] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_defer] = ACTIONS(2565), - [anon_sym_errdefer] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_else] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_match] = ACTIONS(2565), - [anon_sym_AMP] = ACTIONS(2563), - [anon_sym_try] = ACTIONS(2565), - [anon_sym_DOT] = ACTIONS(2563), - [anon_sym_true] = ACTIONS(2565), - [anon_sym_false] = ACTIONS(2565), - [sym_none] = ACTIONS(2565), - [sym_undefined] = ACTIONS(2565), - [sym_sink] = ACTIONS(2565), - [sym_integer] = ACTIONS(2565), - [sym_float] = ACTIONS(2563), - [anon_sym_DQUOTE] = ACTIONS(2563), - [sym_multiline_string] = ACTIONS(2563), - [sym_character] = ACTIONS(2563), + [ts_builtin_sym_end] = ACTIONS(2565), + [sym_identifier] = ACTIONS(2567), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2563), + [sym__newline] = ACTIONS(2565), }, [STATE(1118)] = { - [ts_builtin_sym_end] = ACTIONS(2567), - [sym_identifier] = ACTIONS(2569), - [anon_sym_import] = ACTIONS(2569), - [anon_sym_func] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2567), - [anon_sym_struct] = ACTIONS(2569), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_RPAREN] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2567), - [anon_sym_DASH] = ACTIONS(2567), - [anon_sym_DOLLAR] = ACTIONS(2567), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_void] = ACTIONS(2569), - [anon_sym_anyopaque] = ACTIONS(2569), - [anon_sym_bool] = ACTIONS(2569), - [anon_sym_int] = ACTIONS(2569), - [anon_sym_float] = ACTIONS(2569), - [anon_sym_range] = ACTIONS(2569), - [anon_sym_i8] = ACTIONS(2569), - [anon_sym_i16] = ACTIONS(2569), - [anon_sym_i32] = ACTIONS(2569), - [anon_sym_i64] = ACTIONS(2569), - [anon_sym_u8] = ACTIONS(2569), - [anon_sym_u16] = ACTIONS(2569), - [anon_sym_u32] = ACTIONS(2569), - [anon_sym_u64] = ACTIONS(2569), - [anon_sym_isize] = ACTIONS(2569), - [anon_sym_usize] = ACTIONS(2569), - [anon_sym_f32] = ACTIONS(2569), - [anon_sym_f64] = ACTIONS(2569), - [anon_sym_c_char] = ACTIONS(2569), - [anon_sym_c_schar] = ACTIONS(2569), - [anon_sym_c_uchar] = ACTIONS(2569), - [anon_sym_c_short] = ACTIONS(2569), - [anon_sym_c_ushort] = ACTIONS(2569), - [anon_sym_c_int] = ACTIONS(2569), - [anon_sym_c_uint] = ACTIONS(2569), - [anon_sym_c_long] = ACTIONS(2569), - [anon_sym_c_ulong] = ACTIONS(2569), - [anon_sym_c_longlong] = ACTIONS(2569), - [anon_sym_c_ulonglong] = ACTIONS(2569), - [anon_sym_c_float] = ACTIONS(2569), - [anon_sym_c_double] = ACTIONS(2569), - [anon_sym_c_longdouble] = ACTIONS(2569), - [anon_sym_return] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2569), - [anon_sym_break] = ACTIONS(2569), - [anon_sym_continue] = ACTIONS(2569), - [anon_sym_defer] = ACTIONS(2569), - [anon_sym_errdefer] = ACTIONS(2569), - [anon_sym_if] = ACTIONS(2569), - [anon_sym_else] = ACTIONS(2569), - [anon_sym_while] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2569), - [anon_sym_match] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2567), - [anon_sym_try] = ACTIONS(2569), - [anon_sym_DOT] = ACTIONS(2567), - [anon_sym_true] = ACTIONS(2569), - [anon_sym_false] = ACTIONS(2569), - [sym_none] = ACTIONS(2569), - [sym_undefined] = ACTIONS(2569), - [sym_sink] = ACTIONS(2569), - [sym_integer] = ACTIONS(2569), - [sym_float] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2567), - [sym_multiline_string] = ACTIONS(2567), - [sym_character] = ACTIONS(2567), + [ts_builtin_sym_end] = ACTIONS(2569), + [sym_identifier] = ACTIONS(2571), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2567), + [sym__newline] = ACTIONS(2569), }, [STATE(1119)] = { - [ts_builtin_sym_end] = ACTIONS(2571), - [sym_identifier] = ACTIONS(2573), - [anon_sym_import] = ACTIONS(2573), - [anon_sym_func] = ACTIONS(2573), - [anon_sym_BANG] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_RPAREN] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_RBRACE] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2571), - [anon_sym_void] = ACTIONS(2573), - [anon_sym_anyopaque] = ACTIONS(2573), - [anon_sym_bool] = ACTIONS(2573), - [anon_sym_int] = ACTIONS(2573), - [anon_sym_float] = ACTIONS(2573), - [anon_sym_range] = ACTIONS(2573), - [anon_sym_i8] = ACTIONS(2573), - [anon_sym_i16] = ACTIONS(2573), - [anon_sym_i32] = ACTIONS(2573), - [anon_sym_i64] = ACTIONS(2573), - [anon_sym_u8] = ACTIONS(2573), - [anon_sym_u16] = ACTIONS(2573), - [anon_sym_u32] = ACTIONS(2573), - [anon_sym_u64] = ACTIONS(2573), - [anon_sym_isize] = ACTIONS(2573), - [anon_sym_usize] = ACTIONS(2573), - [anon_sym_f32] = ACTIONS(2573), - [anon_sym_f64] = ACTIONS(2573), - [anon_sym_c_char] = ACTIONS(2573), - [anon_sym_c_schar] = ACTIONS(2573), - [anon_sym_c_uchar] = ACTIONS(2573), - [anon_sym_c_short] = ACTIONS(2573), - [anon_sym_c_ushort] = ACTIONS(2573), - [anon_sym_c_int] = ACTIONS(2573), - [anon_sym_c_uint] = ACTIONS(2573), - [anon_sym_c_long] = ACTIONS(2573), - [anon_sym_c_ulong] = ACTIONS(2573), - [anon_sym_c_longlong] = ACTIONS(2573), - [anon_sym_c_ulonglong] = ACTIONS(2573), - [anon_sym_c_float] = ACTIONS(2573), - [anon_sym_c_double] = ACTIONS(2573), - [anon_sym_c_longdouble] = ACTIONS(2573), - [anon_sym_return] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2573), - [anon_sym_break] = ACTIONS(2573), - [anon_sym_continue] = ACTIONS(2573), - [anon_sym_defer] = ACTIONS(2573), - [anon_sym_errdefer] = ACTIONS(2573), - [anon_sym_if] = ACTIONS(2573), - [anon_sym_else] = ACTIONS(2573), - [anon_sym_while] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2573), - [anon_sym_match] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(2571), - [anon_sym_try] = ACTIONS(2573), - [anon_sym_DOT] = ACTIONS(2571), - [anon_sym_true] = ACTIONS(2573), - [anon_sym_false] = ACTIONS(2573), - [sym_none] = ACTIONS(2573), - [sym_undefined] = ACTIONS(2573), - [sym_sink] = ACTIONS(2573), - [sym_integer] = ACTIONS(2573), - [sym_float] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2571), - [sym_multiline_string] = ACTIONS(2571), - [sym_character] = ACTIONS(2571), + [ts_builtin_sym_end] = ACTIONS(2573), + [sym_identifier] = ACTIONS(2575), + [anon_sym_import] = 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_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_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_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2571), + [sym__newline] = ACTIONS(2573), }, [STATE(1120)] = { - [ts_builtin_sym_end] = ACTIONS(2575), - [sym_identifier] = ACTIONS(2577), - [anon_sym_import] = ACTIONS(2577), - [anon_sym_func] = ACTIONS(2577), - [anon_sym_BANG] = ACTIONS(2575), - [anon_sym_struct] = ACTIONS(2577), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_RPAREN] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_DOLLAR] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2575), - [anon_sym_void] = ACTIONS(2577), - [anon_sym_anyopaque] = ACTIONS(2577), - [anon_sym_bool] = ACTIONS(2577), - [anon_sym_int] = ACTIONS(2577), - [anon_sym_float] = ACTIONS(2577), - [anon_sym_range] = ACTIONS(2577), - [anon_sym_i8] = ACTIONS(2577), - [anon_sym_i16] = ACTIONS(2577), - [anon_sym_i32] = ACTIONS(2577), - [anon_sym_i64] = ACTIONS(2577), - [anon_sym_u8] = ACTIONS(2577), - [anon_sym_u16] = ACTIONS(2577), - [anon_sym_u32] = ACTIONS(2577), - [anon_sym_u64] = ACTIONS(2577), - [anon_sym_isize] = ACTIONS(2577), - [anon_sym_usize] = ACTIONS(2577), - [anon_sym_f32] = ACTIONS(2577), - [anon_sym_f64] = ACTIONS(2577), - [anon_sym_c_char] = ACTIONS(2577), - [anon_sym_c_schar] = ACTIONS(2577), - [anon_sym_c_uchar] = ACTIONS(2577), - [anon_sym_c_short] = ACTIONS(2577), - [anon_sym_c_ushort] = ACTIONS(2577), - [anon_sym_c_int] = ACTIONS(2577), - [anon_sym_c_uint] = ACTIONS(2577), - [anon_sym_c_long] = ACTIONS(2577), - [anon_sym_c_ulong] = ACTIONS(2577), - [anon_sym_c_longlong] = ACTIONS(2577), - [anon_sym_c_ulonglong] = ACTIONS(2577), - [anon_sym_c_float] = ACTIONS(2577), - [anon_sym_c_double] = ACTIONS(2577), - [anon_sym_c_longdouble] = ACTIONS(2577), - [anon_sym_return] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2577), - [anon_sym_break] = ACTIONS(2577), - [anon_sym_continue] = ACTIONS(2577), - [anon_sym_defer] = ACTIONS(2577), - [anon_sym_errdefer] = ACTIONS(2577), - [anon_sym_if] = ACTIONS(2577), - [anon_sym_else] = ACTIONS(2577), - [anon_sym_while] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2577), - [anon_sym_match] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(2575), - [anon_sym_try] = ACTIONS(2577), - [anon_sym_DOT] = ACTIONS(2575), - [anon_sym_true] = ACTIONS(2577), - [anon_sym_false] = ACTIONS(2577), - [sym_none] = ACTIONS(2577), - [sym_undefined] = ACTIONS(2577), - [sym_sink] = ACTIONS(2577), - [sym_integer] = ACTIONS(2577), - [sym_float] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [sym_multiline_string] = ACTIONS(2575), - [sym_character] = ACTIONS(2575), + [ts_builtin_sym_end] = ACTIONS(2577), + [sym_identifier] = ACTIONS(2579), + [anon_sym_import] = 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_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_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(2575), + [sym__newline] = ACTIONS(2577), }, [STATE(1121)] = { - [ts_builtin_sym_end] = ACTIONS(2579), - [sym_identifier] = ACTIONS(2581), - [anon_sym_import] = ACTIONS(2581), - [anon_sym_func] = ACTIONS(2581), - [anon_sym_BANG] = ACTIONS(2579), - [anon_sym_struct] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_RBRACE] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_DOLLAR] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_void] = ACTIONS(2581), - [anon_sym_anyopaque] = ACTIONS(2581), - [anon_sym_bool] = ACTIONS(2581), - [anon_sym_int] = ACTIONS(2581), - [anon_sym_float] = ACTIONS(2581), - [anon_sym_range] = ACTIONS(2581), - [anon_sym_i8] = ACTIONS(2581), - [anon_sym_i16] = ACTIONS(2581), - [anon_sym_i32] = ACTIONS(2581), - [anon_sym_i64] = ACTIONS(2581), - [anon_sym_u8] = ACTIONS(2581), - [anon_sym_u16] = ACTIONS(2581), - [anon_sym_u32] = ACTIONS(2581), - [anon_sym_u64] = ACTIONS(2581), - [anon_sym_isize] = ACTIONS(2581), - [anon_sym_usize] = ACTIONS(2581), - [anon_sym_f32] = ACTIONS(2581), - [anon_sym_f64] = ACTIONS(2581), - [anon_sym_c_char] = ACTIONS(2581), - [anon_sym_c_schar] = ACTIONS(2581), - [anon_sym_c_uchar] = ACTIONS(2581), - [anon_sym_c_short] = ACTIONS(2581), - [anon_sym_c_ushort] = ACTIONS(2581), - [anon_sym_c_int] = ACTIONS(2581), - [anon_sym_c_uint] = ACTIONS(2581), - [anon_sym_c_long] = ACTIONS(2581), - [anon_sym_c_ulong] = ACTIONS(2581), - [anon_sym_c_longlong] = ACTIONS(2581), - [anon_sym_c_ulonglong] = ACTIONS(2581), - [anon_sym_c_float] = ACTIONS(2581), - [anon_sym_c_double] = ACTIONS(2581), - [anon_sym_c_longdouble] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_defer] = ACTIONS(2581), - [anon_sym_errdefer] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_else] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2579), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2579), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [sym_none] = ACTIONS(2581), - [sym_undefined] = ACTIONS(2581), - [sym_sink] = ACTIONS(2581), - [sym_integer] = ACTIONS(2581), - [sym_float] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [sym_multiline_string] = ACTIONS(2579), - [sym_character] = ACTIONS(2579), + [ts_builtin_sym_end] = ACTIONS(2581), + [sym_identifier] = ACTIONS(2583), + [anon_sym_import] = 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_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_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(2579), + [sym__newline] = ACTIONS(2581), }, [STATE(1122)] = { - [ts_builtin_sym_end] = ACTIONS(2583), - [sym_identifier] = ACTIONS(2585), - [anon_sym_import] = ACTIONS(2585), - [anon_sym_func] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2583), - [anon_sym_struct] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_RPAREN] = ACTIONS(2583), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_RBRACE] = ACTIONS(2583), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_void] = ACTIONS(2585), - [anon_sym_anyopaque] = ACTIONS(2585), - [anon_sym_bool] = ACTIONS(2585), - [anon_sym_int] = ACTIONS(2585), - [anon_sym_float] = ACTIONS(2585), - [anon_sym_range] = ACTIONS(2585), - [anon_sym_i8] = ACTIONS(2585), - [anon_sym_i16] = ACTIONS(2585), - [anon_sym_i32] = ACTIONS(2585), - [anon_sym_i64] = ACTIONS(2585), - [anon_sym_u8] = ACTIONS(2585), - [anon_sym_u16] = ACTIONS(2585), - [anon_sym_u32] = ACTIONS(2585), - [anon_sym_u64] = ACTIONS(2585), - [anon_sym_isize] = ACTIONS(2585), - [anon_sym_usize] = ACTIONS(2585), - [anon_sym_f32] = ACTIONS(2585), - [anon_sym_f64] = ACTIONS(2585), - [anon_sym_c_char] = ACTIONS(2585), - [anon_sym_c_schar] = ACTIONS(2585), - [anon_sym_c_uchar] = ACTIONS(2585), - [anon_sym_c_short] = ACTIONS(2585), - [anon_sym_c_ushort] = ACTIONS(2585), - [anon_sym_c_int] = ACTIONS(2585), - [anon_sym_c_uint] = ACTIONS(2585), - [anon_sym_c_long] = ACTIONS(2585), - [anon_sym_c_ulong] = ACTIONS(2585), - [anon_sym_c_longlong] = ACTIONS(2585), - [anon_sym_c_ulonglong] = ACTIONS(2585), - [anon_sym_c_float] = ACTIONS(2585), - [anon_sym_c_double] = ACTIONS(2585), - [anon_sym_c_longdouble] = ACTIONS(2585), - [anon_sym_return] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2585), - [anon_sym_break] = ACTIONS(2585), - [anon_sym_continue] = ACTIONS(2585), - [anon_sym_defer] = ACTIONS(2585), - [anon_sym_errdefer] = ACTIONS(2585), - [anon_sym_if] = ACTIONS(2585), - [anon_sym_else] = ACTIONS(2585), - [anon_sym_while] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2585), - [anon_sym_match] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2585), - [anon_sym_DOT] = ACTIONS(2583), - [anon_sym_true] = ACTIONS(2585), - [anon_sym_false] = ACTIONS(2585), - [sym_none] = ACTIONS(2585), - [sym_undefined] = ACTIONS(2585), - [sym_sink] = ACTIONS(2585), - [sym_integer] = ACTIONS(2585), - [sym_float] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(2583), - [sym_multiline_string] = ACTIONS(2583), - [sym_character] = ACTIONS(2583), + [ts_builtin_sym_end] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2587), + [anon_sym_import] = 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_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_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(2583), + [sym__newline] = ACTIONS(2585), }, [STATE(1123)] = { - [ts_builtin_sym_end] = ACTIONS(2587), - [sym_identifier] = ACTIONS(2589), - [anon_sym_import] = ACTIONS(2589), - [anon_sym_func] = ACTIONS(2589), - [anon_sym_BANG] = ACTIONS(2587), - [anon_sym_struct] = ACTIONS(2589), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_RPAREN] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(2587), - [anon_sym_RBRACE] = ACTIONS(2587), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_DOLLAR] = ACTIONS(2587), - [anon_sym_LBRACK] = ACTIONS(2587), - [anon_sym_void] = ACTIONS(2589), - [anon_sym_anyopaque] = ACTIONS(2589), - [anon_sym_bool] = ACTIONS(2589), - [anon_sym_int] = ACTIONS(2589), - [anon_sym_float] = ACTIONS(2589), - [anon_sym_range] = ACTIONS(2589), - [anon_sym_i8] = ACTIONS(2589), - [anon_sym_i16] = ACTIONS(2589), - [anon_sym_i32] = ACTIONS(2589), - [anon_sym_i64] = ACTIONS(2589), - [anon_sym_u8] = ACTIONS(2589), - [anon_sym_u16] = ACTIONS(2589), - [anon_sym_u32] = ACTIONS(2589), - [anon_sym_u64] = ACTIONS(2589), - [anon_sym_isize] = ACTIONS(2589), - [anon_sym_usize] = ACTIONS(2589), - [anon_sym_f32] = ACTIONS(2589), - [anon_sym_f64] = ACTIONS(2589), - [anon_sym_c_char] = ACTIONS(2589), - [anon_sym_c_schar] = ACTIONS(2589), - [anon_sym_c_uchar] = ACTIONS(2589), - [anon_sym_c_short] = ACTIONS(2589), - [anon_sym_c_ushort] = ACTIONS(2589), - [anon_sym_c_int] = ACTIONS(2589), - [anon_sym_c_uint] = ACTIONS(2589), - [anon_sym_c_long] = ACTIONS(2589), - [anon_sym_c_ulong] = ACTIONS(2589), - [anon_sym_c_longlong] = ACTIONS(2589), - [anon_sym_c_ulonglong] = ACTIONS(2589), - [anon_sym_c_float] = ACTIONS(2589), - [anon_sym_c_double] = ACTIONS(2589), - [anon_sym_c_longdouble] = ACTIONS(2589), - [anon_sym_return] = ACTIONS(2589), - [anon_sym_yield] = ACTIONS(2589), - [anon_sym_break] = ACTIONS(2589), - [anon_sym_continue] = ACTIONS(2589), - [anon_sym_defer] = ACTIONS(2589), - [anon_sym_errdefer] = ACTIONS(2589), - [anon_sym_if] = ACTIONS(2589), - [anon_sym_else] = ACTIONS(2589), - [anon_sym_while] = ACTIONS(2589), - [anon_sym_for] = ACTIONS(2589), - [anon_sym_match] = ACTIONS(2589), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_try] = ACTIONS(2589), - [anon_sym_DOT] = ACTIONS(2587), - [anon_sym_true] = ACTIONS(2589), - [anon_sym_false] = ACTIONS(2589), - [sym_none] = ACTIONS(2589), - [sym_undefined] = ACTIONS(2589), - [sym_sink] = ACTIONS(2589), - [sym_integer] = ACTIONS(2589), - [sym_float] = ACTIONS(2587), - [anon_sym_DQUOTE] = ACTIONS(2587), - [sym_multiline_string] = ACTIONS(2587), - [sym_character] = ACTIONS(2587), + [ts_builtin_sym_end] = ACTIONS(2589), + [sym_identifier] = ACTIONS(2591), + [anon_sym_import] = 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_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_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(2587), + [sym__newline] = ACTIONS(2589), }, [STATE(1124)] = { - [ts_builtin_sym_end] = ACTIONS(2591), - [sym_identifier] = ACTIONS(2593), - [anon_sym_import] = ACTIONS(2593), - [anon_sym_func] = ACTIONS(2593), - [anon_sym_BANG] = ACTIONS(2591), - [anon_sym_struct] = ACTIONS(2593), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_RPAREN] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_RBRACE] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_void] = ACTIONS(2593), - [anon_sym_anyopaque] = ACTIONS(2593), - [anon_sym_bool] = ACTIONS(2593), - [anon_sym_int] = ACTIONS(2593), - [anon_sym_float] = ACTIONS(2593), - [anon_sym_range] = ACTIONS(2593), - [anon_sym_i8] = ACTIONS(2593), - [anon_sym_i16] = ACTIONS(2593), - [anon_sym_i32] = ACTIONS(2593), - [anon_sym_i64] = ACTIONS(2593), - [anon_sym_u8] = ACTIONS(2593), - [anon_sym_u16] = ACTIONS(2593), - [anon_sym_u32] = ACTIONS(2593), - [anon_sym_u64] = ACTIONS(2593), - [anon_sym_isize] = ACTIONS(2593), - [anon_sym_usize] = ACTIONS(2593), - [anon_sym_f32] = ACTIONS(2593), - [anon_sym_f64] = ACTIONS(2593), - [anon_sym_c_char] = ACTIONS(2593), - [anon_sym_c_schar] = ACTIONS(2593), - [anon_sym_c_uchar] = ACTIONS(2593), - [anon_sym_c_short] = ACTIONS(2593), - [anon_sym_c_ushort] = ACTIONS(2593), - [anon_sym_c_int] = ACTIONS(2593), - [anon_sym_c_uint] = ACTIONS(2593), - [anon_sym_c_long] = ACTIONS(2593), - [anon_sym_c_ulong] = ACTIONS(2593), - [anon_sym_c_longlong] = ACTIONS(2593), - [anon_sym_c_ulonglong] = ACTIONS(2593), - [anon_sym_c_float] = ACTIONS(2593), - [anon_sym_c_double] = ACTIONS(2593), - [anon_sym_c_longdouble] = ACTIONS(2593), - [anon_sym_return] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2593), - [anon_sym_break] = ACTIONS(2593), - [anon_sym_continue] = ACTIONS(2593), - [anon_sym_defer] = ACTIONS(2593), - [anon_sym_errdefer] = ACTIONS(2593), - [anon_sym_if] = ACTIONS(2593), - [anon_sym_else] = ACTIONS(2593), - [anon_sym_while] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2593), - [anon_sym_match] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2593), - [anon_sym_DOT] = ACTIONS(2591), - [anon_sym_true] = ACTIONS(2593), - [anon_sym_false] = ACTIONS(2593), - [sym_none] = ACTIONS(2593), - [sym_undefined] = ACTIONS(2593), - [sym_sink] = ACTIONS(2593), - [sym_integer] = ACTIONS(2593), - [sym_float] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [sym_multiline_string] = ACTIONS(2591), - [sym_character] = ACTIONS(2591), + [ts_builtin_sym_end] = ACTIONS(2593), + [sym_identifier] = ACTIONS(2595), + [anon_sym_import] = 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_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_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(2591), + [sym__newline] = ACTIONS(2593), }, [STATE(1125)] = { - [ts_builtin_sym_end] = ACTIONS(2595), - [sym_identifier] = ACTIONS(2597), - [anon_sym_import] = ACTIONS(2597), - [anon_sym_func] = ACTIONS(2597), - [anon_sym_BANG] = ACTIONS(2595), - [anon_sym_struct] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2595), - [anon_sym_RPAREN] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(2595), - [anon_sym_RBRACE] = ACTIONS(2595), - [anon_sym_DASH] = ACTIONS(2595), - [anon_sym_DOLLAR] = ACTIONS(2595), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_void] = ACTIONS(2597), - [anon_sym_anyopaque] = ACTIONS(2597), - [anon_sym_bool] = ACTIONS(2597), - [anon_sym_int] = ACTIONS(2597), - [anon_sym_float] = ACTIONS(2597), - [anon_sym_range] = ACTIONS(2597), - [anon_sym_i8] = ACTIONS(2597), - [anon_sym_i16] = ACTIONS(2597), - [anon_sym_i32] = ACTIONS(2597), - [anon_sym_i64] = ACTIONS(2597), - [anon_sym_u8] = ACTIONS(2597), - [anon_sym_u16] = ACTIONS(2597), - [anon_sym_u32] = ACTIONS(2597), - [anon_sym_u64] = ACTIONS(2597), - [anon_sym_isize] = ACTIONS(2597), - [anon_sym_usize] = ACTIONS(2597), - [anon_sym_f32] = ACTIONS(2597), - [anon_sym_f64] = ACTIONS(2597), - [anon_sym_c_char] = ACTIONS(2597), - [anon_sym_c_schar] = ACTIONS(2597), - [anon_sym_c_uchar] = ACTIONS(2597), - [anon_sym_c_short] = ACTIONS(2597), - [anon_sym_c_ushort] = ACTIONS(2597), - [anon_sym_c_int] = ACTIONS(2597), - [anon_sym_c_uint] = ACTIONS(2597), - [anon_sym_c_long] = ACTIONS(2597), - [anon_sym_c_ulong] = ACTIONS(2597), - [anon_sym_c_longlong] = ACTIONS(2597), - [anon_sym_c_ulonglong] = ACTIONS(2597), - [anon_sym_c_float] = ACTIONS(2597), - [anon_sym_c_double] = ACTIONS(2597), - [anon_sym_c_longdouble] = ACTIONS(2597), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_yield] = ACTIONS(2597), - [anon_sym_break] = ACTIONS(2597), - [anon_sym_continue] = ACTIONS(2597), - [anon_sym_defer] = ACTIONS(2597), - [anon_sym_errdefer] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_else] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_match] = ACTIONS(2597), - [anon_sym_AMP] = ACTIONS(2595), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_DOT] = ACTIONS(2595), - [anon_sym_true] = ACTIONS(2597), - [anon_sym_false] = ACTIONS(2597), - [sym_none] = ACTIONS(2597), - [sym_undefined] = ACTIONS(2597), - [sym_sink] = ACTIONS(2597), - [sym_integer] = ACTIONS(2597), - [sym_float] = ACTIONS(2595), - [anon_sym_DQUOTE] = ACTIONS(2595), - [sym_multiline_string] = ACTIONS(2595), - [sym_character] = ACTIONS(2595), + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2599), + [anon_sym_import] = 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_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_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_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2595), + [sym__newline] = ACTIONS(2597), }, [STATE(1126)] = { - [ts_builtin_sym_end] = ACTIONS(2599), - [sym_identifier] = ACTIONS(2601), - [anon_sym_import] = ACTIONS(2601), - [anon_sym_func] = ACTIONS(2601), - [anon_sym_BANG] = ACTIONS(2599), - [anon_sym_struct] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2599), - [anon_sym_RPAREN] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2599), - [anon_sym_RBRACE] = ACTIONS(2599), - [anon_sym_DASH] = ACTIONS(2599), - [anon_sym_DOLLAR] = ACTIONS(2599), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_void] = ACTIONS(2601), - [anon_sym_anyopaque] = ACTIONS(2601), - [anon_sym_bool] = ACTIONS(2601), - [anon_sym_int] = ACTIONS(2601), - [anon_sym_float] = ACTIONS(2601), - [anon_sym_range] = ACTIONS(2601), - [anon_sym_i8] = ACTIONS(2601), - [anon_sym_i16] = ACTIONS(2601), - [anon_sym_i32] = ACTIONS(2601), - [anon_sym_i64] = ACTIONS(2601), - [anon_sym_u8] = ACTIONS(2601), - [anon_sym_u16] = ACTIONS(2601), - [anon_sym_u32] = ACTIONS(2601), - [anon_sym_u64] = ACTIONS(2601), - [anon_sym_isize] = ACTIONS(2601), - [anon_sym_usize] = ACTIONS(2601), - [anon_sym_f32] = ACTIONS(2601), - [anon_sym_f64] = ACTIONS(2601), - [anon_sym_c_char] = ACTIONS(2601), - [anon_sym_c_schar] = ACTIONS(2601), - [anon_sym_c_uchar] = ACTIONS(2601), - [anon_sym_c_short] = ACTIONS(2601), - [anon_sym_c_ushort] = ACTIONS(2601), - [anon_sym_c_int] = ACTIONS(2601), - [anon_sym_c_uint] = ACTIONS(2601), - [anon_sym_c_long] = ACTIONS(2601), - [anon_sym_c_ulong] = ACTIONS(2601), - [anon_sym_c_longlong] = ACTIONS(2601), - [anon_sym_c_ulonglong] = ACTIONS(2601), - [anon_sym_c_float] = ACTIONS(2601), - [anon_sym_c_double] = ACTIONS(2601), - [anon_sym_c_longdouble] = ACTIONS(2601), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_break] = ACTIONS(2601), - [anon_sym_continue] = ACTIONS(2601), - [anon_sym_defer] = ACTIONS(2601), - [anon_sym_errdefer] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_else] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_match] = ACTIONS(2601), - [anon_sym_AMP] = ACTIONS(2599), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_DOT] = ACTIONS(2599), - [anon_sym_true] = ACTIONS(2601), - [anon_sym_false] = ACTIONS(2601), - [sym_none] = ACTIONS(2601), - [sym_undefined] = ACTIONS(2601), - [sym_sink] = ACTIONS(2601), - [sym_integer] = ACTIONS(2601), - [sym_float] = ACTIONS(2599), - [anon_sym_DQUOTE] = ACTIONS(2599), - [sym_multiline_string] = ACTIONS(2599), - [sym_character] = ACTIONS(2599), + [ts_builtin_sym_end] = ACTIONS(2601), + [sym_identifier] = ACTIONS(2603), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2599), + [sym__newline] = ACTIONS(2601), }, [STATE(1127)] = { - [ts_builtin_sym_end] = ACTIONS(2603), - [sym_identifier] = ACTIONS(2605), - [anon_sym_import] = ACTIONS(2605), - [anon_sym_func] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2603), - [anon_sym_struct] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2603), - [anon_sym_RPAREN] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_RBRACE] = ACTIONS(2603), - [anon_sym_DASH] = ACTIONS(2603), - [anon_sym_DOLLAR] = ACTIONS(2603), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_void] = ACTIONS(2605), - [anon_sym_anyopaque] = ACTIONS(2605), - [anon_sym_bool] = ACTIONS(2605), - [anon_sym_int] = ACTIONS(2605), - [anon_sym_float] = ACTIONS(2605), - [anon_sym_range] = ACTIONS(2605), - [anon_sym_i8] = ACTIONS(2605), - [anon_sym_i16] = ACTIONS(2605), - [anon_sym_i32] = ACTIONS(2605), - [anon_sym_i64] = ACTIONS(2605), - [anon_sym_u8] = ACTIONS(2605), - [anon_sym_u16] = ACTIONS(2605), - [anon_sym_u32] = ACTIONS(2605), - [anon_sym_u64] = ACTIONS(2605), - [anon_sym_isize] = ACTIONS(2605), - [anon_sym_usize] = ACTIONS(2605), - [anon_sym_f32] = ACTIONS(2605), - [anon_sym_f64] = ACTIONS(2605), - [anon_sym_c_char] = ACTIONS(2605), - [anon_sym_c_schar] = ACTIONS(2605), - [anon_sym_c_uchar] = ACTIONS(2605), - [anon_sym_c_short] = ACTIONS(2605), - [anon_sym_c_ushort] = ACTIONS(2605), - [anon_sym_c_int] = ACTIONS(2605), - [anon_sym_c_uint] = ACTIONS(2605), - [anon_sym_c_long] = ACTIONS(2605), - [anon_sym_c_ulong] = ACTIONS(2605), - [anon_sym_c_longlong] = ACTIONS(2605), - [anon_sym_c_ulonglong] = ACTIONS(2605), - [anon_sym_c_float] = ACTIONS(2605), - [anon_sym_c_double] = ACTIONS(2605), - [anon_sym_c_longdouble] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_break] = ACTIONS(2605), - [anon_sym_continue] = ACTIONS(2605), - [anon_sym_defer] = ACTIONS(2605), - [anon_sym_errdefer] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_else] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_DOT] = ACTIONS(2603), - [anon_sym_true] = ACTIONS(2605), - [anon_sym_false] = ACTIONS(2605), - [sym_none] = ACTIONS(2605), - [sym_undefined] = ACTIONS(2605), - [sym_sink] = ACTIONS(2605), - [sym_integer] = ACTIONS(2605), - [sym_float] = ACTIONS(2603), - [anon_sym_DQUOTE] = ACTIONS(2603), - [sym_multiline_string] = ACTIONS(2603), - [sym_character] = ACTIONS(2603), + [ts_builtin_sym_end] = ACTIONS(2605), + [sym_identifier] = ACTIONS(2607), + [anon_sym_import] = 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_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_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_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2603), + [sym__newline] = ACTIONS(2605), }, [STATE(1128)] = { - [ts_builtin_sym_end] = ACTIONS(2607), - [sym_identifier] = ACTIONS(2609), - [anon_sym_import] = ACTIONS(2609), - [anon_sym_func] = ACTIONS(2609), - [anon_sym_BANG] = ACTIONS(2607), - [anon_sym_struct] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2607), - [anon_sym_RPAREN] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2607), - [anon_sym_LBRACK] = ACTIONS(2607), - [anon_sym_void] = ACTIONS(2609), - [anon_sym_anyopaque] = ACTIONS(2609), - [anon_sym_bool] = ACTIONS(2609), - [anon_sym_int] = ACTIONS(2609), - [anon_sym_float] = ACTIONS(2609), - [anon_sym_range] = ACTIONS(2609), - [anon_sym_i8] = ACTIONS(2609), - [anon_sym_i16] = ACTIONS(2609), - [anon_sym_i32] = ACTIONS(2609), - [anon_sym_i64] = ACTIONS(2609), - [anon_sym_u8] = ACTIONS(2609), - [anon_sym_u16] = ACTIONS(2609), - [anon_sym_u32] = ACTIONS(2609), - [anon_sym_u64] = ACTIONS(2609), - [anon_sym_isize] = ACTIONS(2609), - [anon_sym_usize] = ACTIONS(2609), - [anon_sym_f32] = ACTIONS(2609), - [anon_sym_f64] = ACTIONS(2609), - [anon_sym_c_char] = ACTIONS(2609), - [anon_sym_c_schar] = ACTIONS(2609), - [anon_sym_c_uchar] = ACTIONS(2609), - [anon_sym_c_short] = ACTIONS(2609), - [anon_sym_c_ushort] = ACTIONS(2609), - [anon_sym_c_int] = ACTIONS(2609), - [anon_sym_c_uint] = ACTIONS(2609), - [anon_sym_c_long] = ACTIONS(2609), - [anon_sym_c_ulong] = ACTIONS(2609), - [anon_sym_c_longlong] = ACTIONS(2609), - [anon_sym_c_ulonglong] = ACTIONS(2609), - [anon_sym_c_float] = ACTIONS(2609), - [anon_sym_c_double] = ACTIONS(2609), - [anon_sym_c_longdouble] = ACTIONS(2609), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_break] = ACTIONS(2609), - [anon_sym_continue] = ACTIONS(2609), - [anon_sym_defer] = ACTIONS(2609), - [anon_sym_errdefer] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_else] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_match] = ACTIONS(2609), - [anon_sym_AMP] = ACTIONS(2607), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_DOT] = ACTIONS(2607), - [anon_sym_true] = ACTIONS(2609), - [anon_sym_false] = ACTIONS(2609), - [sym_none] = ACTIONS(2609), - [sym_undefined] = ACTIONS(2609), - [sym_sink] = ACTIONS(2609), - [sym_integer] = ACTIONS(2609), - [sym_float] = ACTIONS(2607), - [anon_sym_DQUOTE] = ACTIONS(2607), - [sym_multiline_string] = ACTIONS(2607), - [sym_character] = ACTIONS(2607), + [ts_builtin_sym_end] = ACTIONS(2609), + [sym_identifier] = ACTIONS(2611), + [anon_sym_import] = 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_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_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(2607), + [sym__newline] = ACTIONS(2609), }, [STATE(1129)] = { - [ts_builtin_sym_end] = ACTIONS(2611), - [sym_identifier] = ACTIONS(2613), - [anon_sym_import] = ACTIONS(2613), - [anon_sym_func] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_struct] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2611), - [anon_sym_RPAREN] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_RBRACE] = ACTIONS(2611), - [anon_sym_DASH] = ACTIONS(2611), - [anon_sym_DOLLAR] = ACTIONS(2611), - [anon_sym_LBRACK] = ACTIONS(2611), - [anon_sym_void] = ACTIONS(2613), - [anon_sym_anyopaque] = ACTIONS(2613), - [anon_sym_bool] = ACTIONS(2613), - [anon_sym_int] = ACTIONS(2613), - [anon_sym_float] = ACTIONS(2613), - [anon_sym_range] = ACTIONS(2613), - [anon_sym_i8] = ACTIONS(2613), - [anon_sym_i16] = ACTIONS(2613), - [anon_sym_i32] = ACTIONS(2613), - [anon_sym_i64] = ACTIONS(2613), - [anon_sym_u8] = ACTIONS(2613), - [anon_sym_u16] = ACTIONS(2613), - [anon_sym_u32] = ACTIONS(2613), - [anon_sym_u64] = ACTIONS(2613), - [anon_sym_isize] = ACTIONS(2613), - [anon_sym_usize] = ACTIONS(2613), - [anon_sym_f32] = ACTIONS(2613), - [anon_sym_f64] = ACTIONS(2613), - [anon_sym_c_char] = ACTIONS(2613), - [anon_sym_c_schar] = ACTIONS(2613), - [anon_sym_c_uchar] = ACTIONS(2613), - [anon_sym_c_short] = ACTIONS(2613), - [anon_sym_c_ushort] = ACTIONS(2613), - [anon_sym_c_int] = ACTIONS(2613), - [anon_sym_c_uint] = ACTIONS(2613), - [anon_sym_c_long] = ACTIONS(2613), - [anon_sym_c_ulong] = ACTIONS(2613), - [anon_sym_c_longlong] = ACTIONS(2613), - [anon_sym_c_ulonglong] = ACTIONS(2613), - [anon_sym_c_float] = ACTIONS(2613), - [anon_sym_c_double] = ACTIONS(2613), - [anon_sym_c_longdouble] = ACTIONS(2613), - [anon_sym_return] = ACTIONS(2613), - [anon_sym_yield] = ACTIONS(2613), - [anon_sym_break] = ACTIONS(2613), - [anon_sym_continue] = ACTIONS(2613), - [anon_sym_defer] = ACTIONS(2613), - [anon_sym_errdefer] = ACTIONS(2613), - [anon_sym_if] = ACTIONS(2613), - [anon_sym_else] = ACTIONS(2613), - [anon_sym_while] = ACTIONS(2613), - [anon_sym_for] = ACTIONS(2613), - [anon_sym_match] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2611), - [anon_sym_try] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2611), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [sym_none] = ACTIONS(2613), - [sym_undefined] = ACTIONS(2613), - [sym_sink] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2611), - [anon_sym_DQUOTE] = ACTIONS(2611), - [sym_multiline_string] = ACTIONS(2611), - [sym_character] = ACTIONS(2611), + [ts_builtin_sym_end] = ACTIONS(2613), + [sym_identifier] = ACTIONS(2615), + [anon_sym_import] = 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_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_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(2611), + [sym__newline] = ACTIONS(2613), }, [STATE(1130)] = { - [ts_builtin_sym_end] = ACTIONS(2615), - [sym_identifier] = ACTIONS(2617), - [anon_sym_import] = ACTIONS(2617), - [anon_sym_func] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2615), - [anon_sym_struct] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2615), - [anon_sym_RPAREN] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_RBRACE] = ACTIONS(2615), - [anon_sym_DASH] = ACTIONS(2615), - [anon_sym_DOLLAR] = ACTIONS(2615), - [anon_sym_LBRACK] = ACTIONS(2615), - [anon_sym_void] = ACTIONS(2617), - [anon_sym_anyopaque] = ACTIONS(2617), - [anon_sym_bool] = ACTIONS(2617), - [anon_sym_int] = ACTIONS(2617), - [anon_sym_float] = ACTIONS(2617), - [anon_sym_range] = ACTIONS(2617), - [anon_sym_i8] = ACTIONS(2617), - [anon_sym_i16] = ACTIONS(2617), - [anon_sym_i32] = ACTIONS(2617), - [anon_sym_i64] = ACTIONS(2617), - [anon_sym_u8] = ACTIONS(2617), - [anon_sym_u16] = ACTIONS(2617), - [anon_sym_u32] = ACTIONS(2617), - [anon_sym_u64] = ACTIONS(2617), - [anon_sym_isize] = ACTIONS(2617), - [anon_sym_usize] = ACTIONS(2617), - [anon_sym_f32] = ACTIONS(2617), - [anon_sym_f64] = ACTIONS(2617), - [anon_sym_c_char] = ACTIONS(2617), - [anon_sym_c_schar] = ACTIONS(2617), - [anon_sym_c_uchar] = ACTIONS(2617), - [anon_sym_c_short] = ACTIONS(2617), - [anon_sym_c_ushort] = ACTIONS(2617), - [anon_sym_c_int] = ACTIONS(2617), - [anon_sym_c_uint] = ACTIONS(2617), - [anon_sym_c_long] = ACTIONS(2617), - [anon_sym_c_ulong] = ACTIONS(2617), - [anon_sym_c_longlong] = ACTIONS(2617), - [anon_sym_c_ulonglong] = ACTIONS(2617), - [anon_sym_c_float] = ACTIONS(2617), - [anon_sym_c_double] = ACTIONS(2617), - [anon_sym_c_longdouble] = ACTIONS(2617), - [anon_sym_return] = ACTIONS(2617), - [anon_sym_yield] = ACTIONS(2617), - [anon_sym_break] = ACTIONS(2617), - [anon_sym_continue] = ACTIONS(2617), - [anon_sym_defer] = ACTIONS(2617), - [anon_sym_errdefer] = ACTIONS(2617), - [anon_sym_if] = ACTIONS(2617), - [anon_sym_else] = ACTIONS(2617), - [anon_sym_while] = ACTIONS(2617), - [anon_sym_for] = ACTIONS(2617), - [anon_sym_match] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2615), - [anon_sym_try] = ACTIONS(2617), - [anon_sym_DOT] = ACTIONS(2615), - [anon_sym_true] = ACTIONS(2617), - [anon_sym_false] = ACTIONS(2617), - [sym_none] = ACTIONS(2617), - [sym_undefined] = ACTIONS(2617), - [sym_sink] = ACTIONS(2617), - [sym_integer] = ACTIONS(2617), - [sym_float] = ACTIONS(2615), - [anon_sym_DQUOTE] = ACTIONS(2615), - [sym_multiline_string] = ACTIONS(2615), - [sym_character] = ACTIONS(2615), + [ts_builtin_sym_end] = ACTIONS(2617), + [sym_identifier] = ACTIONS(2619), + [anon_sym_import] = 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_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_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_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2615), + [sym__newline] = ACTIONS(2617), }, [STATE(1131)] = { - [ts_builtin_sym_end] = ACTIONS(2619), - [sym_identifier] = ACTIONS(2621), - [anon_sym_import] = ACTIONS(2621), - [anon_sym_func] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2619), - [anon_sym_struct] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2619), - [anon_sym_RPAREN] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_RBRACE] = ACTIONS(2619), - [anon_sym_DASH] = ACTIONS(2619), - [anon_sym_DOLLAR] = ACTIONS(2619), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_void] = ACTIONS(2621), - [anon_sym_anyopaque] = ACTIONS(2621), - [anon_sym_bool] = ACTIONS(2621), - [anon_sym_int] = ACTIONS(2621), - [anon_sym_float] = ACTIONS(2621), - [anon_sym_range] = ACTIONS(2621), - [anon_sym_i8] = ACTIONS(2621), - [anon_sym_i16] = ACTIONS(2621), - [anon_sym_i32] = ACTIONS(2621), - [anon_sym_i64] = ACTIONS(2621), - [anon_sym_u8] = ACTIONS(2621), - [anon_sym_u16] = ACTIONS(2621), - [anon_sym_u32] = ACTIONS(2621), - [anon_sym_u64] = ACTIONS(2621), - [anon_sym_isize] = ACTIONS(2621), - [anon_sym_usize] = ACTIONS(2621), - [anon_sym_f32] = ACTIONS(2621), - [anon_sym_f64] = ACTIONS(2621), - [anon_sym_c_char] = ACTIONS(2621), - [anon_sym_c_schar] = ACTIONS(2621), - [anon_sym_c_uchar] = ACTIONS(2621), - [anon_sym_c_short] = ACTIONS(2621), - [anon_sym_c_ushort] = ACTIONS(2621), - [anon_sym_c_int] = ACTIONS(2621), - [anon_sym_c_uint] = ACTIONS(2621), - [anon_sym_c_long] = ACTIONS(2621), - [anon_sym_c_ulong] = ACTIONS(2621), - [anon_sym_c_longlong] = ACTIONS(2621), - [anon_sym_c_ulonglong] = ACTIONS(2621), - [anon_sym_c_float] = ACTIONS(2621), - [anon_sym_c_double] = ACTIONS(2621), - [anon_sym_c_longdouble] = ACTIONS(2621), - [anon_sym_return] = ACTIONS(2621), - [anon_sym_yield] = ACTIONS(2621), - [anon_sym_break] = ACTIONS(2621), - [anon_sym_continue] = ACTIONS(2621), - [anon_sym_defer] = ACTIONS(2621), - [anon_sym_errdefer] = ACTIONS(2621), - [anon_sym_if] = ACTIONS(2621), - [anon_sym_else] = ACTIONS(2621), - [anon_sym_while] = ACTIONS(2621), - [anon_sym_for] = ACTIONS(2621), - [anon_sym_match] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2619), - [anon_sym_try] = ACTIONS(2621), - [anon_sym_DOT] = ACTIONS(2619), - [anon_sym_true] = ACTIONS(2621), - [anon_sym_false] = ACTIONS(2621), - [sym_none] = ACTIONS(2621), - [sym_undefined] = ACTIONS(2621), - [sym_sink] = ACTIONS(2621), - [sym_integer] = ACTIONS(2621), - [sym_float] = ACTIONS(2619), - [anon_sym_DQUOTE] = ACTIONS(2619), - [sym_multiline_string] = ACTIONS(2619), - [sym_character] = ACTIONS(2619), + [ts_builtin_sym_end] = ACTIONS(2621), + [sym_identifier] = ACTIONS(2623), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2619), + [sym__newline] = ACTIONS(2621), }, [STATE(1132)] = { - [ts_builtin_sym_end] = ACTIONS(2623), - [sym_identifier] = ACTIONS(2625), - [anon_sym_import] = ACTIONS(2625), - [anon_sym_func] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2623), - [anon_sym_struct] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_RPAREN] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(2623), - [anon_sym_RBRACE] = ACTIONS(2623), - [anon_sym_DASH] = ACTIONS(2623), - [anon_sym_DOLLAR] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2623), - [anon_sym_void] = ACTIONS(2625), - [anon_sym_anyopaque] = ACTIONS(2625), - [anon_sym_bool] = ACTIONS(2625), - [anon_sym_int] = ACTIONS(2625), - [anon_sym_float] = ACTIONS(2625), - [anon_sym_range] = ACTIONS(2625), - [anon_sym_i8] = ACTIONS(2625), - [anon_sym_i16] = ACTIONS(2625), - [anon_sym_i32] = ACTIONS(2625), - [anon_sym_i64] = ACTIONS(2625), - [anon_sym_u8] = ACTIONS(2625), - [anon_sym_u16] = ACTIONS(2625), - [anon_sym_u32] = ACTIONS(2625), - [anon_sym_u64] = ACTIONS(2625), - [anon_sym_isize] = ACTIONS(2625), - [anon_sym_usize] = ACTIONS(2625), - [anon_sym_f32] = ACTIONS(2625), - [anon_sym_f64] = ACTIONS(2625), - [anon_sym_c_char] = ACTIONS(2625), - [anon_sym_c_schar] = ACTIONS(2625), - [anon_sym_c_uchar] = ACTIONS(2625), - [anon_sym_c_short] = ACTIONS(2625), - [anon_sym_c_ushort] = ACTIONS(2625), - [anon_sym_c_int] = ACTIONS(2625), - [anon_sym_c_uint] = ACTIONS(2625), - [anon_sym_c_long] = ACTIONS(2625), - [anon_sym_c_ulong] = ACTIONS(2625), - [anon_sym_c_longlong] = ACTIONS(2625), - [anon_sym_c_ulonglong] = ACTIONS(2625), - [anon_sym_c_float] = ACTIONS(2625), - [anon_sym_c_double] = ACTIONS(2625), - [anon_sym_c_longdouble] = ACTIONS(2625), - [anon_sym_return] = ACTIONS(2625), - [anon_sym_yield] = ACTIONS(2625), - [anon_sym_break] = ACTIONS(2625), - [anon_sym_continue] = ACTIONS(2625), - [anon_sym_defer] = ACTIONS(2625), - [anon_sym_errdefer] = ACTIONS(2625), - [anon_sym_if] = ACTIONS(2625), - [anon_sym_else] = ACTIONS(2625), - [anon_sym_while] = ACTIONS(2625), - [anon_sym_for] = ACTIONS(2625), - [anon_sym_match] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2623), - [anon_sym_try] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2623), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [sym_none] = ACTIONS(2625), - [sym_undefined] = ACTIONS(2625), - [sym_sink] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2623), - [anon_sym_DQUOTE] = ACTIONS(2623), - [sym_multiline_string] = ACTIONS(2623), - [sym_character] = ACTIONS(2623), + [ts_builtin_sym_end] = ACTIONS(2625), + [sym_identifier] = ACTIONS(2627), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2623), + [sym__newline] = ACTIONS(2625), }, [STATE(1133)] = { - [ts_builtin_sym_end] = ACTIONS(2627), - [sym_identifier] = ACTIONS(2629), - [anon_sym_import] = ACTIONS(2629), - [anon_sym_func] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2627), - [anon_sym_struct] = ACTIONS(2629), - [anon_sym_LPAREN] = ACTIONS(2627), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_RBRACE] = ACTIONS(2627), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_DOLLAR] = ACTIONS(2627), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_void] = ACTIONS(2629), - [anon_sym_anyopaque] = ACTIONS(2629), - [anon_sym_bool] = ACTIONS(2629), - [anon_sym_int] = ACTIONS(2629), - [anon_sym_float] = ACTIONS(2629), - [anon_sym_range] = ACTIONS(2629), - [anon_sym_i8] = ACTIONS(2629), - [anon_sym_i16] = ACTIONS(2629), - [anon_sym_i32] = ACTIONS(2629), - [anon_sym_i64] = ACTIONS(2629), - [anon_sym_u8] = ACTIONS(2629), - [anon_sym_u16] = ACTIONS(2629), - [anon_sym_u32] = ACTIONS(2629), - [anon_sym_u64] = ACTIONS(2629), - [anon_sym_isize] = ACTIONS(2629), - [anon_sym_usize] = ACTIONS(2629), - [anon_sym_f32] = ACTIONS(2629), - [anon_sym_f64] = ACTIONS(2629), - [anon_sym_c_char] = ACTIONS(2629), - [anon_sym_c_schar] = ACTIONS(2629), - [anon_sym_c_uchar] = ACTIONS(2629), - [anon_sym_c_short] = ACTIONS(2629), - [anon_sym_c_ushort] = ACTIONS(2629), - [anon_sym_c_int] = ACTIONS(2629), - [anon_sym_c_uint] = ACTIONS(2629), - [anon_sym_c_long] = ACTIONS(2629), - [anon_sym_c_ulong] = ACTIONS(2629), - [anon_sym_c_longlong] = ACTIONS(2629), - [anon_sym_c_ulonglong] = ACTIONS(2629), - [anon_sym_c_float] = ACTIONS(2629), - [anon_sym_c_double] = ACTIONS(2629), - [anon_sym_c_longdouble] = ACTIONS(2629), - [anon_sym_return] = ACTIONS(2629), - [anon_sym_yield] = ACTIONS(2629), - [anon_sym_break] = ACTIONS(2629), - [anon_sym_continue] = ACTIONS(2629), - [anon_sym_defer] = ACTIONS(2629), - [anon_sym_errdefer] = ACTIONS(2629), - [anon_sym_if] = ACTIONS(2629), - [anon_sym_else] = ACTIONS(2629), - [anon_sym_while] = ACTIONS(2629), - [anon_sym_for] = ACTIONS(2629), - [anon_sym_match] = ACTIONS(2629), - [anon_sym_AMP] = ACTIONS(2627), - [anon_sym_try] = ACTIONS(2629), - [anon_sym_DOT] = ACTIONS(2627), - [anon_sym_true] = ACTIONS(2629), - [anon_sym_false] = ACTIONS(2629), - [sym_none] = ACTIONS(2629), - [sym_undefined] = ACTIONS(2629), - [sym_sink] = ACTIONS(2629), - [sym_integer] = ACTIONS(2629), - [sym_float] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(2627), - [sym_multiline_string] = ACTIONS(2627), - [sym_character] = ACTIONS(2627), + [ts_builtin_sym_end] = ACTIONS(2629), + [sym_identifier] = ACTIONS(2631), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2627), + [sym__newline] = ACTIONS(2629), }, [STATE(1134)] = { - [ts_builtin_sym_end] = ACTIONS(2631), - [sym_identifier] = ACTIONS(2633), - [anon_sym_import] = ACTIONS(2633), - [anon_sym_func] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2631), - [anon_sym_struct] = ACTIONS(2633), - [anon_sym_LPAREN] = ACTIONS(2631), - [anon_sym_RPAREN] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2631), - [anon_sym_RBRACE] = ACTIONS(2631), - [anon_sym_DASH] = ACTIONS(2631), - [anon_sym_DOLLAR] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2631), - [anon_sym_void] = ACTIONS(2633), - [anon_sym_anyopaque] = ACTIONS(2633), - [anon_sym_bool] = ACTIONS(2633), - [anon_sym_int] = ACTIONS(2633), - [anon_sym_float] = ACTIONS(2633), - [anon_sym_range] = ACTIONS(2633), - [anon_sym_i8] = ACTIONS(2633), - [anon_sym_i16] = ACTIONS(2633), - [anon_sym_i32] = ACTIONS(2633), - [anon_sym_i64] = ACTIONS(2633), - [anon_sym_u8] = ACTIONS(2633), - [anon_sym_u16] = ACTIONS(2633), - [anon_sym_u32] = ACTIONS(2633), - [anon_sym_u64] = ACTIONS(2633), - [anon_sym_isize] = ACTIONS(2633), - [anon_sym_usize] = ACTIONS(2633), - [anon_sym_f32] = ACTIONS(2633), - [anon_sym_f64] = ACTIONS(2633), - [anon_sym_c_char] = ACTIONS(2633), - [anon_sym_c_schar] = ACTIONS(2633), - [anon_sym_c_uchar] = ACTIONS(2633), - [anon_sym_c_short] = ACTIONS(2633), - [anon_sym_c_ushort] = ACTIONS(2633), - [anon_sym_c_int] = ACTIONS(2633), - [anon_sym_c_uint] = ACTIONS(2633), - [anon_sym_c_long] = ACTIONS(2633), - [anon_sym_c_ulong] = ACTIONS(2633), - [anon_sym_c_longlong] = ACTIONS(2633), - [anon_sym_c_ulonglong] = ACTIONS(2633), - [anon_sym_c_float] = ACTIONS(2633), - [anon_sym_c_double] = ACTIONS(2633), - [anon_sym_c_longdouble] = ACTIONS(2633), - [anon_sym_return] = ACTIONS(2633), - [anon_sym_yield] = ACTIONS(2633), - [anon_sym_break] = ACTIONS(2633), - [anon_sym_continue] = ACTIONS(2633), - [anon_sym_defer] = ACTIONS(2633), - [anon_sym_errdefer] = ACTIONS(2633), - [anon_sym_if] = ACTIONS(2633), - [anon_sym_else] = ACTIONS(2633), - [anon_sym_while] = ACTIONS(2633), - [anon_sym_for] = ACTIONS(2633), - [anon_sym_match] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2631), - [anon_sym_try] = ACTIONS(2633), - [anon_sym_DOT] = ACTIONS(2631), - [anon_sym_true] = ACTIONS(2633), - [anon_sym_false] = ACTIONS(2633), - [sym_none] = ACTIONS(2633), - [sym_undefined] = ACTIONS(2633), - [sym_sink] = ACTIONS(2633), - [sym_integer] = ACTIONS(2633), - [sym_float] = ACTIONS(2631), - [anon_sym_DQUOTE] = ACTIONS(2631), - [sym_multiline_string] = ACTIONS(2631), - [sym_character] = ACTIONS(2631), + [ts_builtin_sym_end] = ACTIONS(2633), + [sym_identifier] = ACTIONS(2635), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2631), + [sym__newline] = ACTIONS(2633), }, [STATE(1135)] = { - [ts_builtin_sym_end] = ACTIONS(2635), - [sym_identifier] = ACTIONS(2637), - [anon_sym_import] = ACTIONS(2637), - [anon_sym_func] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2635), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_DOLLAR] = ACTIONS(2635), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), - [anon_sym_anyopaque] = ACTIONS(2637), - [anon_sym_bool] = ACTIONS(2637), - [anon_sym_int] = ACTIONS(2637), - [anon_sym_float] = ACTIONS(2637), - [anon_sym_range] = ACTIONS(2637), - [anon_sym_i8] = ACTIONS(2637), - [anon_sym_i16] = ACTIONS(2637), - [anon_sym_i32] = ACTIONS(2637), - [anon_sym_i64] = ACTIONS(2637), - [anon_sym_u8] = ACTIONS(2637), - [anon_sym_u16] = ACTIONS(2637), - [anon_sym_u32] = ACTIONS(2637), - [anon_sym_u64] = ACTIONS(2637), - [anon_sym_isize] = ACTIONS(2637), - [anon_sym_usize] = ACTIONS(2637), - [anon_sym_f32] = ACTIONS(2637), - [anon_sym_f64] = ACTIONS(2637), - [anon_sym_c_char] = ACTIONS(2637), - [anon_sym_c_schar] = ACTIONS(2637), - [anon_sym_c_uchar] = ACTIONS(2637), - [anon_sym_c_short] = ACTIONS(2637), - [anon_sym_c_ushort] = ACTIONS(2637), - [anon_sym_c_int] = ACTIONS(2637), - [anon_sym_c_uint] = ACTIONS(2637), - [anon_sym_c_long] = ACTIONS(2637), - [anon_sym_c_ulong] = ACTIONS(2637), - [anon_sym_c_longlong] = ACTIONS(2637), - [anon_sym_c_ulonglong] = ACTIONS(2637), - [anon_sym_c_float] = ACTIONS(2637), - [anon_sym_c_double] = ACTIONS(2637), - [anon_sym_c_longdouble] = ACTIONS(2637), - [anon_sym_return] = ACTIONS(2637), - [anon_sym_yield] = ACTIONS(2637), - [anon_sym_break] = ACTIONS(2637), - [anon_sym_continue] = ACTIONS(2637), - [anon_sym_defer] = ACTIONS(2637), - [anon_sym_errdefer] = ACTIONS(2637), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_else] = ACTIONS(2637), - [anon_sym_while] = ACTIONS(2637), - [anon_sym_for] = ACTIONS(2637), - [anon_sym_match] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2635), - [anon_sym_try] = ACTIONS(2637), - [anon_sym_DOT] = ACTIONS(2635), - [anon_sym_true] = ACTIONS(2637), - [anon_sym_false] = ACTIONS(2637), - [sym_none] = ACTIONS(2637), - [sym_undefined] = ACTIONS(2637), - [sym_sink] = ACTIONS(2637), - [sym_integer] = ACTIONS(2637), - [sym_float] = ACTIONS(2635), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym_multiline_string] = ACTIONS(2635), - [sym_character] = ACTIONS(2635), + [ts_builtin_sym_end] = ACTIONS(2637), + [sym_identifier] = ACTIONS(2639), + [anon_sym_import] = 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_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_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_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2635), + [sym__newline] = ACTIONS(2637), }, [STATE(1136)] = { - [ts_builtin_sym_end] = ACTIONS(2639), - [sym_identifier] = ACTIONS(2641), - [anon_sym_import] = ACTIONS(2641), - [anon_sym_func] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(2641), - [anon_sym_LPAREN] = ACTIONS(2639), - [anon_sym_RPAREN] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2639), - [anon_sym_RBRACE] = ACTIONS(2639), - [anon_sym_DASH] = ACTIONS(2639), - [anon_sym_DOLLAR] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_void] = ACTIONS(2641), - [anon_sym_anyopaque] = ACTIONS(2641), - [anon_sym_bool] = ACTIONS(2641), - [anon_sym_int] = ACTIONS(2641), - [anon_sym_float] = ACTIONS(2641), - [anon_sym_range] = ACTIONS(2641), - [anon_sym_i8] = ACTIONS(2641), - [anon_sym_i16] = ACTIONS(2641), - [anon_sym_i32] = ACTIONS(2641), - [anon_sym_i64] = ACTIONS(2641), - [anon_sym_u8] = ACTIONS(2641), - [anon_sym_u16] = ACTIONS(2641), - [anon_sym_u32] = ACTIONS(2641), - [anon_sym_u64] = ACTIONS(2641), - [anon_sym_isize] = ACTIONS(2641), - [anon_sym_usize] = ACTIONS(2641), - [anon_sym_f32] = ACTIONS(2641), - [anon_sym_f64] = ACTIONS(2641), - [anon_sym_c_char] = ACTIONS(2641), - [anon_sym_c_schar] = ACTIONS(2641), - [anon_sym_c_uchar] = ACTIONS(2641), - [anon_sym_c_short] = ACTIONS(2641), - [anon_sym_c_ushort] = ACTIONS(2641), - [anon_sym_c_int] = ACTIONS(2641), - [anon_sym_c_uint] = ACTIONS(2641), - [anon_sym_c_long] = ACTIONS(2641), - [anon_sym_c_ulong] = ACTIONS(2641), - [anon_sym_c_longlong] = ACTIONS(2641), - [anon_sym_c_ulonglong] = ACTIONS(2641), - [anon_sym_c_float] = ACTIONS(2641), - [anon_sym_c_double] = ACTIONS(2641), - [anon_sym_c_longdouble] = ACTIONS(2641), - [anon_sym_return] = ACTIONS(2641), - [anon_sym_yield] = ACTIONS(2641), - [anon_sym_break] = ACTIONS(2641), - [anon_sym_continue] = ACTIONS(2641), - [anon_sym_defer] = ACTIONS(2641), - [anon_sym_errdefer] = ACTIONS(2641), - [anon_sym_if] = ACTIONS(2641), - [anon_sym_else] = ACTIONS(2641), - [anon_sym_while] = ACTIONS(2641), - [anon_sym_for] = ACTIONS(2641), - [anon_sym_match] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2639), - [anon_sym_try] = ACTIONS(2641), - [anon_sym_DOT] = ACTIONS(2639), - [anon_sym_true] = ACTIONS(2641), - [anon_sym_false] = ACTIONS(2641), - [sym_none] = ACTIONS(2641), - [sym_undefined] = ACTIONS(2641), - [sym_sink] = ACTIONS(2641), - [sym_integer] = ACTIONS(2641), - [sym_float] = ACTIONS(2639), - [anon_sym_DQUOTE] = ACTIONS(2639), - [sym_multiline_string] = ACTIONS(2639), - [sym_character] = ACTIONS(2639), + [ts_builtin_sym_end] = ACTIONS(2641), + [sym_identifier] = ACTIONS(2643), + [anon_sym_import] = ACTIONS(2643), + [anon_sym_func] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_struct] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2641), + [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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2639), + [sym__newline] = ACTIONS(2641), }, [STATE(1137)] = { - [ts_builtin_sym_end] = ACTIONS(2643), - [sym_identifier] = ACTIONS(2645), - [anon_sym_import] = ACTIONS(2645), - [anon_sym_func] = ACTIONS(2645), - [anon_sym_BANG] = ACTIONS(2643), - [anon_sym_struct] = ACTIONS(2645), - [anon_sym_LPAREN] = ACTIONS(2643), - [anon_sym_RPAREN] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_RBRACE] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_DOLLAR] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_void] = ACTIONS(2645), - [anon_sym_anyopaque] = ACTIONS(2645), - [anon_sym_bool] = ACTIONS(2645), - [anon_sym_int] = ACTIONS(2645), - [anon_sym_float] = ACTIONS(2645), - [anon_sym_range] = ACTIONS(2645), - [anon_sym_i8] = ACTIONS(2645), - [anon_sym_i16] = ACTIONS(2645), - [anon_sym_i32] = ACTIONS(2645), - [anon_sym_i64] = ACTIONS(2645), - [anon_sym_u8] = ACTIONS(2645), - [anon_sym_u16] = ACTIONS(2645), - [anon_sym_u32] = ACTIONS(2645), - [anon_sym_u64] = ACTIONS(2645), - [anon_sym_isize] = ACTIONS(2645), - [anon_sym_usize] = ACTIONS(2645), - [anon_sym_f32] = ACTIONS(2645), - [anon_sym_f64] = ACTIONS(2645), - [anon_sym_c_char] = ACTIONS(2645), - [anon_sym_c_schar] = ACTIONS(2645), - [anon_sym_c_uchar] = ACTIONS(2645), - [anon_sym_c_short] = ACTIONS(2645), - [anon_sym_c_ushort] = ACTIONS(2645), - [anon_sym_c_int] = ACTIONS(2645), - [anon_sym_c_uint] = ACTIONS(2645), - [anon_sym_c_long] = ACTIONS(2645), - [anon_sym_c_ulong] = ACTIONS(2645), - [anon_sym_c_longlong] = ACTIONS(2645), - [anon_sym_c_ulonglong] = ACTIONS(2645), - [anon_sym_c_float] = ACTIONS(2645), - [anon_sym_c_double] = ACTIONS(2645), - [anon_sym_c_longdouble] = ACTIONS(2645), - [anon_sym_return] = ACTIONS(2645), - [anon_sym_yield] = ACTIONS(2645), - [anon_sym_break] = ACTIONS(2645), - [anon_sym_continue] = ACTIONS(2645), - [anon_sym_defer] = ACTIONS(2645), - [anon_sym_errdefer] = ACTIONS(2645), - [anon_sym_if] = ACTIONS(2645), - [anon_sym_else] = ACTIONS(2645), - [anon_sym_while] = ACTIONS(2645), - [anon_sym_for] = ACTIONS(2645), - [anon_sym_match] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_try] = ACTIONS(2645), - [anon_sym_DOT] = ACTIONS(2643), - [anon_sym_true] = ACTIONS(2645), - [anon_sym_false] = ACTIONS(2645), - [sym_none] = ACTIONS(2645), - [sym_undefined] = ACTIONS(2645), - [sym_sink] = ACTIONS(2645), - [sym_integer] = ACTIONS(2645), - [sym_float] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(2643), - [sym_multiline_string] = ACTIONS(2643), - [sym_character] = ACTIONS(2643), + [ts_builtin_sym_end] = ACTIONS(2645), + [sym_identifier] = ACTIONS(2647), + [anon_sym_import] = 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_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_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_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2643), + [sym__newline] = ACTIONS(2645), }, [STATE(1138)] = { - [ts_builtin_sym_end] = ACTIONS(2647), - [sym_identifier] = ACTIONS(2649), - [anon_sym_import] = ACTIONS(2649), - [anon_sym_func] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_RPAREN] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_RBRACE] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_void] = ACTIONS(2649), - [anon_sym_anyopaque] = ACTIONS(2649), - [anon_sym_bool] = ACTIONS(2649), - [anon_sym_int] = ACTIONS(2649), - [anon_sym_float] = ACTIONS(2649), - [anon_sym_range] = ACTIONS(2649), - [anon_sym_i8] = ACTIONS(2649), - [anon_sym_i16] = ACTIONS(2649), - [anon_sym_i32] = ACTIONS(2649), - [anon_sym_i64] = ACTIONS(2649), - [anon_sym_u8] = ACTIONS(2649), - [anon_sym_u16] = ACTIONS(2649), - [anon_sym_u32] = ACTIONS(2649), - [anon_sym_u64] = ACTIONS(2649), - [anon_sym_isize] = ACTIONS(2649), - [anon_sym_usize] = ACTIONS(2649), - [anon_sym_f32] = ACTIONS(2649), - [anon_sym_f64] = ACTIONS(2649), - [anon_sym_c_char] = ACTIONS(2649), - [anon_sym_c_schar] = ACTIONS(2649), - [anon_sym_c_uchar] = ACTIONS(2649), - [anon_sym_c_short] = ACTIONS(2649), - [anon_sym_c_ushort] = ACTIONS(2649), - [anon_sym_c_int] = ACTIONS(2649), - [anon_sym_c_uint] = ACTIONS(2649), - [anon_sym_c_long] = ACTIONS(2649), - [anon_sym_c_ulong] = ACTIONS(2649), - [anon_sym_c_longlong] = ACTIONS(2649), - [anon_sym_c_ulonglong] = ACTIONS(2649), - [anon_sym_c_float] = ACTIONS(2649), - [anon_sym_c_double] = ACTIONS(2649), - [anon_sym_c_longdouble] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2649), - [anon_sym_break] = ACTIONS(2649), - [anon_sym_continue] = ACTIONS(2649), - [anon_sym_defer] = ACTIONS(2649), - [anon_sym_errdefer] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_else] = ACTIONS(2649), - [anon_sym_while] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2649), - [anon_sym_match] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_true] = ACTIONS(2649), - [anon_sym_false] = ACTIONS(2649), - [sym_none] = ACTIONS(2649), - [sym_undefined] = ACTIONS(2649), - [sym_sink] = ACTIONS(2649), - [sym_integer] = ACTIONS(2649), - [sym_float] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [sym_multiline_string] = ACTIONS(2647), - [sym_character] = ACTIONS(2647), + [ts_builtin_sym_end] = ACTIONS(2649), + [sym_identifier] = ACTIONS(2651), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2647), + [sym__newline] = ACTIONS(2649), }, [STATE(1139)] = { - [ts_builtin_sym_end] = ACTIONS(2651), - [sym_identifier] = ACTIONS(2653), - [anon_sym_import] = ACTIONS(2653), - [anon_sym_func] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2651), - [anon_sym_struct] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_RPAREN] = ACTIONS(2651), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_RBRACE] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_void] = ACTIONS(2653), - [anon_sym_anyopaque] = ACTIONS(2653), - [anon_sym_bool] = ACTIONS(2653), - [anon_sym_int] = ACTIONS(2653), - [anon_sym_float] = ACTIONS(2653), - [anon_sym_range] = ACTIONS(2653), - [anon_sym_i8] = ACTIONS(2653), - [anon_sym_i16] = ACTIONS(2653), - [anon_sym_i32] = ACTIONS(2653), - [anon_sym_i64] = ACTIONS(2653), - [anon_sym_u8] = ACTIONS(2653), - [anon_sym_u16] = ACTIONS(2653), - [anon_sym_u32] = ACTIONS(2653), - [anon_sym_u64] = ACTIONS(2653), - [anon_sym_isize] = ACTIONS(2653), - [anon_sym_usize] = ACTIONS(2653), - [anon_sym_f32] = ACTIONS(2653), - [anon_sym_f64] = ACTIONS(2653), - [anon_sym_c_char] = ACTIONS(2653), - [anon_sym_c_schar] = ACTIONS(2653), - [anon_sym_c_uchar] = ACTIONS(2653), - [anon_sym_c_short] = ACTIONS(2653), - [anon_sym_c_ushort] = ACTIONS(2653), - [anon_sym_c_int] = ACTIONS(2653), - [anon_sym_c_uint] = ACTIONS(2653), - [anon_sym_c_long] = ACTIONS(2653), - [anon_sym_c_ulong] = ACTIONS(2653), - [anon_sym_c_longlong] = ACTIONS(2653), - [anon_sym_c_ulonglong] = ACTIONS(2653), - [anon_sym_c_float] = ACTIONS(2653), - [anon_sym_c_double] = ACTIONS(2653), - [anon_sym_c_longdouble] = ACTIONS(2653), - [anon_sym_return] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2653), - [anon_sym_break] = ACTIONS(2653), - [anon_sym_continue] = ACTIONS(2653), - [anon_sym_defer] = ACTIONS(2653), - [anon_sym_errdefer] = ACTIONS(2653), - [anon_sym_if] = ACTIONS(2653), - [anon_sym_else] = ACTIONS(2653), - [anon_sym_while] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2653), - [anon_sym_match] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_true] = ACTIONS(2653), - [anon_sym_false] = ACTIONS(2653), - [sym_none] = ACTIONS(2653), - [sym_undefined] = ACTIONS(2653), - [sym_sink] = ACTIONS(2653), - [sym_integer] = ACTIONS(2653), - [sym_float] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [sym_multiline_string] = ACTIONS(2651), - [sym_character] = ACTIONS(2651), + [ts_builtin_sym_end] = ACTIONS(2653), + [sym_identifier] = ACTIONS(2655), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2651), + [sym__newline] = ACTIONS(2653), }, [STATE(1140)] = { - [ts_builtin_sym_end] = ACTIONS(2655), - [sym_identifier] = ACTIONS(2657), - [anon_sym_import] = ACTIONS(2657), - [anon_sym_func] = ACTIONS(2657), - [anon_sym_BANG] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2655), - [anon_sym_RPAREN] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_RBRACE] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_DOLLAR] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_void] = ACTIONS(2657), - [anon_sym_anyopaque] = ACTIONS(2657), - [anon_sym_bool] = ACTIONS(2657), - [anon_sym_int] = ACTIONS(2657), - [anon_sym_float] = ACTIONS(2657), - [anon_sym_range] = ACTIONS(2657), - [anon_sym_i8] = ACTIONS(2657), - [anon_sym_i16] = ACTIONS(2657), - [anon_sym_i32] = ACTIONS(2657), - [anon_sym_i64] = ACTIONS(2657), - [anon_sym_u8] = ACTIONS(2657), - [anon_sym_u16] = ACTIONS(2657), - [anon_sym_u32] = ACTIONS(2657), - [anon_sym_u64] = ACTIONS(2657), - [anon_sym_isize] = ACTIONS(2657), - [anon_sym_usize] = ACTIONS(2657), - [anon_sym_f32] = ACTIONS(2657), - [anon_sym_f64] = ACTIONS(2657), - [anon_sym_c_char] = ACTIONS(2657), - [anon_sym_c_schar] = ACTIONS(2657), - [anon_sym_c_uchar] = ACTIONS(2657), - [anon_sym_c_short] = ACTIONS(2657), - [anon_sym_c_ushort] = ACTIONS(2657), - [anon_sym_c_int] = ACTIONS(2657), - [anon_sym_c_uint] = ACTIONS(2657), - [anon_sym_c_long] = ACTIONS(2657), - [anon_sym_c_ulong] = ACTIONS(2657), - [anon_sym_c_longlong] = ACTIONS(2657), - [anon_sym_c_ulonglong] = ACTIONS(2657), - [anon_sym_c_float] = ACTIONS(2657), - [anon_sym_c_double] = ACTIONS(2657), - [anon_sym_c_longdouble] = ACTIONS(2657), - [anon_sym_return] = ACTIONS(2657), - [anon_sym_yield] = ACTIONS(2657), - [anon_sym_break] = ACTIONS(2657), - [anon_sym_continue] = ACTIONS(2657), - [anon_sym_defer] = ACTIONS(2657), - [anon_sym_errdefer] = ACTIONS(2657), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_else] = ACTIONS(2657), - [anon_sym_while] = ACTIONS(2657), - [anon_sym_for] = ACTIONS(2657), - [anon_sym_match] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_DOT] = ACTIONS(2655), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [sym_none] = ACTIONS(2657), - [sym_undefined] = ACTIONS(2657), - [sym_sink] = ACTIONS(2657), - [sym_integer] = ACTIONS(2657), - [sym_float] = ACTIONS(2655), - [anon_sym_DQUOTE] = ACTIONS(2655), - [sym_multiline_string] = ACTIONS(2655), - [sym_character] = ACTIONS(2655), + [ts_builtin_sym_end] = ACTIONS(2657), + [sym_identifier] = ACTIONS(2659), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2655), + [sym__newline] = ACTIONS(2657), }, [STATE(1141)] = { - [ts_builtin_sym_end] = ACTIONS(2659), - [sym_identifier] = ACTIONS(2661), - [anon_sym_import] = ACTIONS(2661), - [anon_sym_func] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2659), - [anon_sym_struct] = ACTIONS(2661), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_RPAREN] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_DOLLAR] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_void] = ACTIONS(2661), - [anon_sym_anyopaque] = ACTIONS(2661), - [anon_sym_bool] = ACTIONS(2661), - [anon_sym_int] = ACTIONS(2661), - [anon_sym_float] = ACTIONS(2661), - [anon_sym_range] = ACTIONS(2661), - [anon_sym_i8] = ACTIONS(2661), - [anon_sym_i16] = ACTIONS(2661), - [anon_sym_i32] = ACTIONS(2661), - [anon_sym_i64] = ACTIONS(2661), - [anon_sym_u8] = ACTIONS(2661), - [anon_sym_u16] = ACTIONS(2661), - [anon_sym_u32] = ACTIONS(2661), - [anon_sym_u64] = ACTIONS(2661), - [anon_sym_isize] = ACTIONS(2661), - [anon_sym_usize] = ACTIONS(2661), - [anon_sym_f32] = ACTIONS(2661), - [anon_sym_f64] = ACTIONS(2661), - [anon_sym_c_char] = ACTIONS(2661), - [anon_sym_c_schar] = ACTIONS(2661), - [anon_sym_c_uchar] = ACTIONS(2661), - [anon_sym_c_short] = ACTIONS(2661), - [anon_sym_c_ushort] = ACTIONS(2661), - [anon_sym_c_int] = ACTIONS(2661), - [anon_sym_c_uint] = ACTIONS(2661), - [anon_sym_c_long] = ACTIONS(2661), - [anon_sym_c_ulong] = ACTIONS(2661), - [anon_sym_c_longlong] = ACTIONS(2661), - [anon_sym_c_ulonglong] = ACTIONS(2661), - [anon_sym_c_float] = ACTIONS(2661), - [anon_sym_c_double] = ACTIONS(2661), - [anon_sym_c_longdouble] = ACTIONS(2661), - [anon_sym_return] = ACTIONS(2661), - [anon_sym_yield] = ACTIONS(2661), - [anon_sym_break] = ACTIONS(2661), - [anon_sym_continue] = ACTIONS(2661), - [anon_sym_defer] = ACTIONS(2661), - [anon_sym_errdefer] = ACTIONS(2661), - [anon_sym_if] = ACTIONS(2661), - [anon_sym_else] = ACTIONS(2661), - [anon_sym_while] = ACTIONS(2661), - [anon_sym_for] = ACTIONS(2661), - [anon_sym_match] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_try] = ACTIONS(2661), - [anon_sym_DOT] = ACTIONS(2659), - [anon_sym_true] = ACTIONS(2661), - [anon_sym_false] = ACTIONS(2661), - [sym_none] = ACTIONS(2661), - [sym_undefined] = ACTIONS(2661), - [sym_sink] = ACTIONS(2661), - [sym_integer] = ACTIONS(2661), - [sym_float] = ACTIONS(2659), - [anon_sym_DQUOTE] = ACTIONS(2659), - [sym_multiline_string] = ACTIONS(2659), - [sym_character] = ACTIONS(2659), + [ts_builtin_sym_end] = ACTIONS(2661), + [sym_identifier] = ACTIONS(2663), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2659), + [sym__newline] = ACTIONS(2661), }, [STATE(1142)] = { - [ts_builtin_sym_end] = ACTIONS(2663), - [sym_identifier] = ACTIONS(2665), - [anon_sym_import] = ACTIONS(2665), - [anon_sym_func] = ACTIONS(2665), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_struct] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(2663), - [anon_sym_RPAREN] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2663), - [anon_sym_RBRACE] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_DOLLAR] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2663), - [anon_sym_void] = ACTIONS(2665), - [anon_sym_anyopaque] = ACTIONS(2665), - [anon_sym_bool] = ACTIONS(2665), - [anon_sym_int] = ACTIONS(2665), - [anon_sym_float] = ACTIONS(2665), - [anon_sym_range] = ACTIONS(2665), - [anon_sym_i8] = ACTIONS(2665), - [anon_sym_i16] = ACTIONS(2665), - [anon_sym_i32] = ACTIONS(2665), - [anon_sym_i64] = ACTIONS(2665), - [anon_sym_u8] = ACTIONS(2665), - [anon_sym_u16] = ACTIONS(2665), - [anon_sym_u32] = ACTIONS(2665), - [anon_sym_u64] = ACTIONS(2665), - [anon_sym_isize] = ACTIONS(2665), - [anon_sym_usize] = ACTIONS(2665), - [anon_sym_f32] = ACTIONS(2665), - [anon_sym_f64] = ACTIONS(2665), - [anon_sym_c_char] = ACTIONS(2665), - [anon_sym_c_schar] = ACTIONS(2665), - [anon_sym_c_uchar] = ACTIONS(2665), - [anon_sym_c_short] = ACTIONS(2665), - [anon_sym_c_ushort] = ACTIONS(2665), - [anon_sym_c_int] = ACTIONS(2665), - [anon_sym_c_uint] = ACTIONS(2665), - [anon_sym_c_long] = ACTIONS(2665), - [anon_sym_c_ulong] = ACTIONS(2665), - [anon_sym_c_longlong] = ACTIONS(2665), - [anon_sym_c_ulonglong] = ACTIONS(2665), - [anon_sym_c_float] = ACTIONS(2665), - [anon_sym_c_double] = ACTIONS(2665), - [anon_sym_c_longdouble] = ACTIONS(2665), - [anon_sym_return] = ACTIONS(2665), - [anon_sym_yield] = ACTIONS(2665), - [anon_sym_break] = ACTIONS(2665), - [anon_sym_continue] = ACTIONS(2665), - [anon_sym_defer] = ACTIONS(2665), - [anon_sym_errdefer] = ACTIONS(2665), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_else] = ACTIONS(2665), - [anon_sym_while] = ACTIONS(2665), - [anon_sym_for] = ACTIONS(2665), - [anon_sym_match] = ACTIONS(2665), - [anon_sym_AMP] = ACTIONS(2663), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_DOT] = ACTIONS(2663), - [anon_sym_true] = ACTIONS(2665), - [anon_sym_false] = ACTIONS(2665), - [sym_none] = ACTIONS(2665), - [sym_undefined] = ACTIONS(2665), - [sym_sink] = ACTIONS(2665), - [sym_integer] = ACTIONS(2665), - [sym_float] = ACTIONS(2663), - [anon_sym_DQUOTE] = ACTIONS(2663), - [sym_multiline_string] = ACTIONS(2663), - [sym_character] = ACTIONS(2663), + [ts_builtin_sym_end] = ACTIONS(2665), + [sym_identifier] = ACTIONS(2667), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2663), + [sym__newline] = ACTIONS(2665), }, [STATE(1143)] = { - [ts_builtin_sym_end] = ACTIONS(2667), - [sym_identifier] = ACTIONS(2669), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_func] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_RPAREN] = ACTIONS(2667), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_void] = ACTIONS(2669), - [anon_sym_anyopaque] = ACTIONS(2669), - [anon_sym_bool] = ACTIONS(2669), - [anon_sym_int] = ACTIONS(2669), - [anon_sym_float] = ACTIONS(2669), - [anon_sym_range] = ACTIONS(2669), - [anon_sym_i8] = ACTIONS(2669), - [anon_sym_i16] = ACTIONS(2669), - [anon_sym_i32] = ACTIONS(2669), - [anon_sym_i64] = ACTIONS(2669), - [anon_sym_u8] = ACTIONS(2669), - [anon_sym_u16] = ACTIONS(2669), - [anon_sym_u32] = ACTIONS(2669), - [anon_sym_u64] = ACTIONS(2669), - [anon_sym_isize] = ACTIONS(2669), - [anon_sym_usize] = ACTIONS(2669), - [anon_sym_f32] = ACTIONS(2669), - [anon_sym_f64] = ACTIONS(2669), - [anon_sym_c_char] = ACTIONS(2669), - [anon_sym_c_schar] = ACTIONS(2669), - [anon_sym_c_uchar] = ACTIONS(2669), - [anon_sym_c_short] = ACTIONS(2669), - [anon_sym_c_ushort] = ACTIONS(2669), - [anon_sym_c_int] = ACTIONS(2669), - [anon_sym_c_uint] = ACTIONS(2669), - [anon_sym_c_long] = ACTIONS(2669), - [anon_sym_c_ulong] = ACTIONS(2669), - [anon_sym_c_longlong] = ACTIONS(2669), - [anon_sym_c_ulonglong] = ACTIONS(2669), - [anon_sym_c_float] = ACTIONS(2669), - [anon_sym_c_double] = ACTIONS(2669), - [anon_sym_c_longdouble] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_defer] = ACTIONS(2669), - [anon_sym_errdefer] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_else] = ACTIONS(2669), - [anon_sym_while] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_match] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_true] = ACTIONS(2669), - [anon_sym_false] = ACTIONS(2669), - [sym_none] = ACTIONS(2669), - [sym_undefined] = ACTIONS(2669), - [sym_sink] = ACTIONS(2669), - [sym_integer] = ACTIONS(2669), - [sym_float] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [sym_multiline_string] = ACTIONS(2667), - [sym_character] = ACTIONS(2667), + [ts_builtin_sym_end] = ACTIONS(2669), + [sym_identifier] = ACTIONS(2671), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2667), + [sym__newline] = ACTIONS(2669), }, [STATE(1144)] = { - [ts_builtin_sym_end] = ACTIONS(2671), - [sym_identifier] = ACTIONS(2673), - [anon_sym_import] = ACTIONS(2673), - [anon_sym_func] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_struct] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_RPAREN] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2671), - [anon_sym_void] = ACTIONS(2673), - [anon_sym_anyopaque] = ACTIONS(2673), - [anon_sym_bool] = ACTIONS(2673), - [anon_sym_int] = ACTIONS(2673), - [anon_sym_float] = ACTIONS(2673), - [anon_sym_range] = ACTIONS(2673), - [anon_sym_i8] = ACTIONS(2673), - [anon_sym_i16] = ACTIONS(2673), - [anon_sym_i32] = ACTIONS(2673), - [anon_sym_i64] = ACTIONS(2673), - [anon_sym_u8] = ACTIONS(2673), - [anon_sym_u16] = ACTIONS(2673), - [anon_sym_u32] = ACTIONS(2673), - [anon_sym_u64] = ACTIONS(2673), - [anon_sym_isize] = ACTIONS(2673), - [anon_sym_usize] = ACTIONS(2673), - [anon_sym_f32] = ACTIONS(2673), - [anon_sym_f64] = ACTIONS(2673), - [anon_sym_c_char] = ACTIONS(2673), - [anon_sym_c_schar] = ACTIONS(2673), - [anon_sym_c_uchar] = ACTIONS(2673), - [anon_sym_c_short] = ACTIONS(2673), - [anon_sym_c_ushort] = ACTIONS(2673), - [anon_sym_c_int] = ACTIONS(2673), - [anon_sym_c_uint] = ACTIONS(2673), - [anon_sym_c_long] = ACTIONS(2673), - [anon_sym_c_ulong] = ACTIONS(2673), - [anon_sym_c_longlong] = ACTIONS(2673), - [anon_sym_c_ulonglong] = ACTIONS(2673), - [anon_sym_c_float] = ACTIONS(2673), - [anon_sym_c_double] = ACTIONS(2673), - [anon_sym_c_longdouble] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_yield] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_defer] = ACTIONS(2673), - [anon_sym_errdefer] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_else] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_DOT] = ACTIONS(2671), - [anon_sym_true] = ACTIONS(2673), - [anon_sym_false] = ACTIONS(2673), - [sym_none] = ACTIONS(2673), - [sym_undefined] = ACTIONS(2673), - [sym_sink] = ACTIONS(2673), - [sym_integer] = ACTIONS(2673), - [sym_float] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym_multiline_string] = ACTIONS(2671), - [sym_character] = ACTIONS(2671), + [ts_builtin_sym_end] = ACTIONS(2673), + [sym_identifier] = ACTIONS(2675), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2671), + [sym__newline] = ACTIONS(2673), }, [STATE(1145)] = { - [ts_builtin_sym_end] = ACTIONS(2675), - [sym_identifier] = ACTIONS(2677), - [anon_sym_import] = ACTIONS(2677), - [anon_sym_func] = ACTIONS(2677), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_struct] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2675), - [anon_sym_RPAREN] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_RBRACE] = ACTIONS(2675), - [anon_sym_DASH] = ACTIONS(2675), - [anon_sym_DOLLAR] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_void] = ACTIONS(2677), - [anon_sym_anyopaque] = ACTIONS(2677), - [anon_sym_bool] = ACTIONS(2677), - [anon_sym_int] = ACTIONS(2677), - [anon_sym_float] = ACTIONS(2677), - [anon_sym_range] = ACTIONS(2677), - [anon_sym_i8] = ACTIONS(2677), - [anon_sym_i16] = ACTIONS(2677), - [anon_sym_i32] = ACTIONS(2677), - [anon_sym_i64] = ACTIONS(2677), - [anon_sym_u8] = ACTIONS(2677), - [anon_sym_u16] = ACTIONS(2677), - [anon_sym_u32] = ACTIONS(2677), - [anon_sym_u64] = ACTIONS(2677), - [anon_sym_isize] = ACTIONS(2677), - [anon_sym_usize] = ACTIONS(2677), - [anon_sym_f32] = ACTIONS(2677), - [anon_sym_f64] = ACTIONS(2677), - [anon_sym_c_char] = ACTIONS(2677), - [anon_sym_c_schar] = ACTIONS(2677), - [anon_sym_c_uchar] = ACTIONS(2677), - [anon_sym_c_short] = ACTIONS(2677), - [anon_sym_c_ushort] = ACTIONS(2677), - [anon_sym_c_int] = ACTIONS(2677), - [anon_sym_c_uint] = ACTIONS(2677), - [anon_sym_c_long] = ACTIONS(2677), - [anon_sym_c_ulong] = ACTIONS(2677), - [anon_sym_c_longlong] = ACTIONS(2677), - [anon_sym_c_ulonglong] = ACTIONS(2677), - [anon_sym_c_float] = ACTIONS(2677), - [anon_sym_c_double] = ACTIONS(2677), - [anon_sym_c_longdouble] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_yield] = ACTIONS(2677), - [anon_sym_break] = ACTIONS(2677), - [anon_sym_continue] = ACTIONS(2677), - [anon_sym_defer] = ACTIONS(2677), - [anon_sym_errdefer] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_else] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_match] = ACTIONS(2677), - [anon_sym_AMP] = ACTIONS(2675), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_DOT] = ACTIONS(2675), - [anon_sym_true] = ACTIONS(2677), - [anon_sym_false] = ACTIONS(2677), - [sym_none] = ACTIONS(2677), - [sym_undefined] = ACTIONS(2677), - [sym_sink] = ACTIONS(2677), - [sym_integer] = ACTIONS(2677), - [sym_float] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2675), - [sym_multiline_string] = ACTIONS(2675), - [sym_character] = ACTIONS(2675), + [ts_builtin_sym_end] = ACTIONS(2677), + [sym_identifier] = ACTIONS(2679), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2675), + [sym__newline] = ACTIONS(2677), }, [STATE(1146)] = { - [ts_builtin_sym_end] = ACTIONS(2679), - [sym_identifier] = ACTIONS(2681), - [anon_sym_import] = ACTIONS(2681), - [anon_sym_func] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2679), - [anon_sym_struct] = ACTIONS(2681), - [anon_sym_LPAREN] = ACTIONS(2679), - [anon_sym_RPAREN] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2679), - [anon_sym_RBRACE] = ACTIONS(2679), - [anon_sym_DASH] = ACTIONS(2679), - [anon_sym_DOLLAR] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2679), - [anon_sym_void] = ACTIONS(2681), - [anon_sym_anyopaque] = ACTIONS(2681), - [anon_sym_bool] = ACTIONS(2681), - [anon_sym_int] = ACTIONS(2681), - [anon_sym_float] = ACTIONS(2681), - [anon_sym_range] = ACTIONS(2681), - [anon_sym_i8] = ACTIONS(2681), - [anon_sym_i16] = ACTIONS(2681), - [anon_sym_i32] = ACTIONS(2681), - [anon_sym_i64] = ACTIONS(2681), - [anon_sym_u8] = ACTIONS(2681), - [anon_sym_u16] = ACTIONS(2681), - [anon_sym_u32] = ACTIONS(2681), - [anon_sym_u64] = ACTIONS(2681), - [anon_sym_isize] = ACTIONS(2681), - [anon_sym_usize] = ACTIONS(2681), - [anon_sym_f32] = ACTIONS(2681), - [anon_sym_f64] = ACTIONS(2681), - [anon_sym_c_char] = ACTIONS(2681), - [anon_sym_c_schar] = ACTIONS(2681), - [anon_sym_c_uchar] = ACTIONS(2681), - [anon_sym_c_short] = ACTIONS(2681), - [anon_sym_c_ushort] = ACTIONS(2681), - [anon_sym_c_int] = ACTIONS(2681), - [anon_sym_c_uint] = ACTIONS(2681), - [anon_sym_c_long] = ACTIONS(2681), - [anon_sym_c_ulong] = ACTIONS(2681), - [anon_sym_c_longlong] = ACTIONS(2681), - [anon_sym_c_ulonglong] = ACTIONS(2681), - [anon_sym_c_float] = ACTIONS(2681), - [anon_sym_c_double] = ACTIONS(2681), - [anon_sym_c_longdouble] = ACTIONS(2681), - [anon_sym_return] = ACTIONS(2681), - [anon_sym_yield] = ACTIONS(2681), - [anon_sym_break] = ACTIONS(2681), - [anon_sym_continue] = ACTIONS(2681), - [anon_sym_defer] = ACTIONS(2681), - [anon_sym_errdefer] = ACTIONS(2681), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_else] = ACTIONS(2681), - [anon_sym_while] = ACTIONS(2681), - [anon_sym_for] = ACTIONS(2681), - [anon_sym_match] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2679), - [anon_sym_try] = ACTIONS(2681), - [anon_sym_DOT] = ACTIONS(2679), - [anon_sym_true] = ACTIONS(2681), - [anon_sym_false] = ACTIONS(2681), - [sym_none] = ACTIONS(2681), - [sym_undefined] = ACTIONS(2681), - [sym_sink] = ACTIONS(2681), - [sym_integer] = ACTIONS(2681), - [sym_float] = ACTIONS(2679), - [anon_sym_DQUOTE] = ACTIONS(2679), - [sym_multiline_string] = ACTIONS(2679), - [sym_character] = ACTIONS(2679), + [ts_builtin_sym_end] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2683), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2679), + [sym__newline] = ACTIONS(2681), }, [STATE(1147)] = { - [ts_builtin_sym_end] = ACTIONS(2683), - [sym_identifier] = ACTIONS(2685), - [anon_sym_import] = ACTIONS(2685), - [anon_sym_func] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_LPAREN] = ACTIONS(2683), - [anon_sym_RPAREN] = ACTIONS(2683), - [anon_sym_LBRACE] = ACTIONS(2683), - [anon_sym_RBRACE] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_DOLLAR] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_void] = ACTIONS(2685), - [anon_sym_anyopaque] = ACTIONS(2685), - [anon_sym_bool] = ACTIONS(2685), - [anon_sym_int] = ACTIONS(2685), - [anon_sym_float] = ACTIONS(2685), - [anon_sym_range] = ACTIONS(2685), - [anon_sym_i8] = ACTIONS(2685), - [anon_sym_i16] = ACTIONS(2685), - [anon_sym_i32] = ACTIONS(2685), - [anon_sym_i64] = ACTIONS(2685), - [anon_sym_u8] = ACTIONS(2685), - [anon_sym_u16] = ACTIONS(2685), - [anon_sym_u32] = ACTIONS(2685), - [anon_sym_u64] = ACTIONS(2685), - [anon_sym_isize] = ACTIONS(2685), - [anon_sym_usize] = ACTIONS(2685), - [anon_sym_f32] = ACTIONS(2685), - [anon_sym_f64] = ACTIONS(2685), - [anon_sym_c_char] = ACTIONS(2685), - [anon_sym_c_schar] = ACTIONS(2685), - [anon_sym_c_uchar] = ACTIONS(2685), - [anon_sym_c_short] = ACTIONS(2685), - [anon_sym_c_ushort] = ACTIONS(2685), - [anon_sym_c_int] = ACTIONS(2685), - [anon_sym_c_uint] = ACTIONS(2685), - [anon_sym_c_long] = ACTIONS(2685), - [anon_sym_c_ulong] = ACTIONS(2685), - [anon_sym_c_longlong] = ACTIONS(2685), - [anon_sym_c_ulonglong] = ACTIONS(2685), - [anon_sym_c_float] = ACTIONS(2685), - [anon_sym_c_double] = ACTIONS(2685), - [anon_sym_c_longdouble] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_yield] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_defer] = ACTIONS(2685), - [anon_sym_errdefer] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_else] = ACTIONS(2685), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_match] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_try] = ACTIONS(2685), - [anon_sym_DOT] = ACTIONS(2683), - [anon_sym_true] = ACTIONS(2685), - [anon_sym_false] = ACTIONS(2685), - [sym_none] = ACTIONS(2685), - [sym_undefined] = ACTIONS(2685), - [sym_sink] = ACTIONS(2685), - [sym_integer] = ACTIONS(2685), - [sym_float] = ACTIONS(2683), - [anon_sym_DQUOTE] = ACTIONS(2683), - [sym_multiline_string] = ACTIONS(2683), - [sym_character] = ACTIONS(2683), + [ts_builtin_sym_end] = ACTIONS(2685), + [sym_identifier] = ACTIONS(2687), + [anon_sym_import] = ACTIONS(2687), + [anon_sym_func] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2687), + [anon_sym_LPAREN] = ACTIONS(2685), + [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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2683), + [sym__newline] = ACTIONS(2685), }, [STATE(1148)] = { - [ts_builtin_sym_end] = ACTIONS(2687), - [sym_identifier] = ACTIONS(2689), - [anon_sym_import] = ACTIONS(2689), - [anon_sym_func] = ACTIONS(2689), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(2687), - [anon_sym_RPAREN] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_RBRACE] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_void] = ACTIONS(2689), - [anon_sym_anyopaque] = ACTIONS(2689), - [anon_sym_bool] = ACTIONS(2689), - [anon_sym_int] = ACTIONS(2689), - [anon_sym_float] = ACTIONS(2689), - [anon_sym_range] = ACTIONS(2689), - [anon_sym_i8] = ACTIONS(2689), - [anon_sym_i16] = ACTIONS(2689), - [anon_sym_i32] = ACTIONS(2689), - [anon_sym_i64] = ACTIONS(2689), - [anon_sym_u8] = ACTIONS(2689), - [anon_sym_u16] = ACTIONS(2689), - [anon_sym_u32] = ACTIONS(2689), - [anon_sym_u64] = ACTIONS(2689), - [anon_sym_isize] = ACTIONS(2689), - [anon_sym_usize] = ACTIONS(2689), - [anon_sym_f32] = ACTIONS(2689), - [anon_sym_f64] = ACTIONS(2689), - [anon_sym_c_char] = ACTIONS(2689), - [anon_sym_c_schar] = ACTIONS(2689), - [anon_sym_c_uchar] = ACTIONS(2689), - [anon_sym_c_short] = ACTIONS(2689), - [anon_sym_c_ushort] = ACTIONS(2689), - [anon_sym_c_int] = ACTIONS(2689), - [anon_sym_c_uint] = ACTIONS(2689), - [anon_sym_c_long] = ACTIONS(2689), - [anon_sym_c_ulong] = ACTIONS(2689), - [anon_sym_c_longlong] = ACTIONS(2689), - [anon_sym_c_ulonglong] = ACTIONS(2689), - [anon_sym_c_float] = ACTIONS(2689), - [anon_sym_c_double] = ACTIONS(2689), - [anon_sym_c_longdouble] = ACTIONS(2689), - [anon_sym_return] = ACTIONS(2689), - [anon_sym_yield] = ACTIONS(2689), - [anon_sym_break] = ACTIONS(2689), - [anon_sym_continue] = ACTIONS(2689), - [anon_sym_defer] = ACTIONS(2689), - [anon_sym_errdefer] = ACTIONS(2689), - [anon_sym_if] = ACTIONS(2689), - [anon_sym_else] = ACTIONS(2689), - [anon_sym_while] = ACTIONS(2689), - [anon_sym_for] = ACTIONS(2689), - [anon_sym_match] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_try] = ACTIONS(2689), - [anon_sym_DOT] = ACTIONS(2687), - [anon_sym_true] = ACTIONS(2689), - [anon_sym_false] = ACTIONS(2689), - [sym_none] = ACTIONS(2689), - [sym_undefined] = ACTIONS(2689), - [sym_sink] = ACTIONS(2689), - [sym_integer] = ACTIONS(2689), - [sym_float] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym_multiline_string] = ACTIONS(2687), - [sym_character] = ACTIONS(2687), + [ts_builtin_sym_end] = ACTIONS(2689), + [sym_identifier] = ACTIONS(2691), + [anon_sym_import] = ACTIONS(2691), + [anon_sym_func] = ACTIONS(2691), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(2691), + [anon_sym_LPAREN] = ACTIONS(2689), + [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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2687), + [sym__newline] = ACTIONS(2689), }, [STATE(1149)] = { - [ts_builtin_sym_end] = ACTIONS(2691), - [sym_identifier] = ACTIONS(2693), - [anon_sym_import] = ACTIONS(2693), - [anon_sym_func] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2691), - [anon_sym_RPAREN] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2691), - [anon_sym_RBRACE] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_DOLLAR] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_void] = ACTIONS(2693), - [anon_sym_anyopaque] = ACTIONS(2693), - [anon_sym_bool] = ACTIONS(2693), - [anon_sym_int] = ACTIONS(2693), - [anon_sym_float] = ACTIONS(2693), - [anon_sym_range] = ACTIONS(2693), - [anon_sym_i8] = ACTIONS(2693), - [anon_sym_i16] = ACTIONS(2693), - [anon_sym_i32] = ACTIONS(2693), - [anon_sym_i64] = ACTIONS(2693), - [anon_sym_u8] = ACTIONS(2693), - [anon_sym_u16] = ACTIONS(2693), - [anon_sym_u32] = ACTIONS(2693), - [anon_sym_u64] = ACTIONS(2693), - [anon_sym_isize] = ACTIONS(2693), - [anon_sym_usize] = ACTIONS(2693), - [anon_sym_f32] = ACTIONS(2693), - [anon_sym_f64] = ACTIONS(2693), - [anon_sym_c_char] = ACTIONS(2693), - [anon_sym_c_schar] = ACTIONS(2693), - [anon_sym_c_uchar] = ACTIONS(2693), - [anon_sym_c_short] = ACTIONS(2693), - [anon_sym_c_ushort] = ACTIONS(2693), - [anon_sym_c_int] = ACTIONS(2693), - [anon_sym_c_uint] = ACTIONS(2693), - [anon_sym_c_long] = ACTIONS(2693), - [anon_sym_c_ulong] = ACTIONS(2693), - [anon_sym_c_longlong] = ACTIONS(2693), - [anon_sym_c_ulonglong] = ACTIONS(2693), - [anon_sym_c_float] = ACTIONS(2693), - [anon_sym_c_double] = ACTIONS(2693), - [anon_sym_c_longdouble] = ACTIONS(2693), - [anon_sym_return] = ACTIONS(2693), - [anon_sym_yield] = ACTIONS(2693), - [anon_sym_break] = ACTIONS(2693), - [anon_sym_continue] = ACTIONS(2693), - [anon_sym_defer] = ACTIONS(2693), - [anon_sym_errdefer] = ACTIONS(2693), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_else] = ACTIONS(2693), - [anon_sym_while] = ACTIONS(2693), - [anon_sym_for] = ACTIONS(2693), - [anon_sym_match] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2693), - [anon_sym_DOT] = ACTIONS(2691), - [anon_sym_true] = ACTIONS(2693), - [anon_sym_false] = ACTIONS(2693), - [sym_none] = ACTIONS(2693), - [sym_undefined] = ACTIONS(2693), - [sym_sink] = ACTIONS(2693), - [sym_integer] = ACTIONS(2693), - [sym_float] = ACTIONS(2691), - [anon_sym_DQUOTE] = ACTIONS(2691), - [sym_multiline_string] = ACTIONS(2691), - [sym_character] = ACTIONS(2691), + [ts_builtin_sym_end] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2695), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2691), + [sym__newline] = ACTIONS(2693), }, [STATE(1150)] = { - [ts_builtin_sym_end] = ACTIONS(2695), - [sym_identifier] = ACTIONS(2697), - [anon_sym_import] = ACTIONS(2697), - [anon_sym_func] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2695), - [anon_sym_struct] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_RPAREN] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_RBRACE] = ACTIONS(2695), - [anon_sym_DASH] = ACTIONS(2695), - [anon_sym_DOLLAR] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_void] = ACTIONS(2697), - [anon_sym_anyopaque] = ACTIONS(2697), - [anon_sym_bool] = ACTIONS(2697), - [anon_sym_int] = ACTIONS(2697), - [anon_sym_float] = ACTIONS(2697), - [anon_sym_range] = ACTIONS(2697), - [anon_sym_i8] = ACTIONS(2697), - [anon_sym_i16] = ACTIONS(2697), - [anon_sym_i32] = ACTIONS(2697), - [anon_sym_i64] = ACTIONS(2697), - [anon_sym_u8] = ACTIONS(2697), - [anon_sym_u16] = ACTIONS(2697), - [anon_sym_u32] = ACTIONS(2697), - [anon_sym_u64] = ACTIONS(2697), - [anon_sym_isize] = ACTIONS(2697), - [anon_sym_usize] = ACTIONS(2697), - [anon_sym_f32] = ACTIONS(2697), - [anon_sym_f64] = ACTIONS(2697), - [anon_sym_c_char] = ACTIONS(2697), - [anon_sym_c_schar] = ACTIONS(2697), - [anon_sym_c_uchar] = ACTIONS(2697), - [anon_sym_c_short] = ACTIONS(2697), - [anon_sym_c_ushort] = ACTIONS(2697), - [anon_sym_c_int] = ACTIONS(2697), - [anon_sym_c_uint] = ACTIONS(2697), - [anon_sym_c_long] = ACTIONS(2697), - [anon_sym_c_ulong] = ACTIONS(2697), - [anon_sym_c_longlong] = ACTIONS(2697), - [anon_sym_c_ulonglong] = ACTIONS(2697), - [anon_sym_c_float] = ACTIONS(2697), - [anon_sym_c_double] = ACTIONS(2697), - [anon_sym_c_longdouble] = ACTIONS(2697), - [anon_sym_return] = ACTIONS(2697), - [anon_sym_yield] = ACTIONS(2697), - [anon_sym_break] = ACTIONS(2697), - [anon_sym_continue] = ACTIONS(2697), - [anon_sym_defer] = ACTIONS(2697), - [anon_sym_errdefer] = ACTIONS(2697), - [anon_sym_if] = ACTIONS(2697), - [anon_sym_else] = ACTIONS(2697), - [anon_sym_while] = ACTIONS(2697), - [anon_sym_for] = ACTIONS(2697), - [anon_sym_match] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_try] = ACTIONS(2697), - [anon_sym_DOT] = ACTIONS(2695), - [anon_sym_true] = ACTIONS(2697), - [anon_sym_false] = ACTIONS(2697), - [sym_none] = ACTIONS(2697), - [sym_undefined] = ACTIONS(2697), - [sym_sink] = ACTIONS(2697), - [sym_integer] = ACTIONS(2697), - [sym_float] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(2695), - [sym_multiline_string] = ACTIONS(2695), - [sym_character] = ACTIONS(2695), + [ts_builtin_sym_end] = ACTIONS(2697), + [sym_identifier] = ACTIONS(2699), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2695), + [sym__newline] = ACTIONS(2697), }, [STATE(1151)] = { - [ts_builtin_sym_end] = ACTIONS(2699), - [sym_identifier] = ACTIONS(2701), - [anon_sym_import] = ACTIONS(2701), - [anon_sym_func] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_RPAREN] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2699), - [anon_sym_RBRACE] = ACTIONS(2699), - [anon_sym_DASH] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_void] = ACTIONS(2701), - [anon_sym_anyopaque] = ACTIONS(2701), - [anon_sym_bool] = ACTIONS(2701), - [anon_sym_int] = ACTIONS(2701), - [anon_sym_float] = ACTIONS(2701), - [anon_sym_range] = ACTIONS(2701), - [anon_sym_i8] = ACTIONS(2701), - [anon_sym_i16] = ACTIONS(2701), - [anon_sym_i32] = ACTIONS(2701), - [anon_sym_i64] = ACTIONS(2701), - [anon_sym_u8] = ACTIONS(2701), - [anon_sym_u16] = ACTIONS(2701), - [anon_sym_u32] = ACTIONS(2701), - [anon_sym_u64] = ACTIONS(2701), - [anon_sym_isize] = ACTIONS(2701), - [anon_sym_usize] = ACTIONS(2701), - [anon_sym_f32] = ACTIONS(2701), - [anon_sym_f64] = ACTIONS(2701), - [anon_sym_c_char] = ACTIONS(2701), - [anon_sym_c_schar] = ACTIONS(2701), - [anon_sym_c_uchar] = ACTIONS(2701), - [anon_sym_c_short] = ACTIONS(2701), - [anon_sym_c_ushort] = ACTIONS(2701), - [anon_sym_c_int] = ACTIONS(2701), - [anon_sym_c_uint] = ACTIONS(2701), - [anon_sym_c_long] = ACTIONS(2701), - [anon_sym_c_ulong] = ACTIONS(2701), - [anon_sym_c_longlong] = ACTIONS(2701), - [anon_sym_c_ulonglong] = ACTIONS(2701), - [anon_sym_c_float] = ACTIONS(2701), - [anon_sym_c_double] = ACTIONS(2701), - [anon_sym_c_longdouble] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_break] = ACTIONS(2701), - [anon_sym_continue] = ACTIONS(2701), - [anon_sym_defer] = ACTIONS(2701), - [anon_sym_errdefer] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_else] = ACTIONS(2701), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2699), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_DOT] = ACTIONS(2699), - [anon_sym_true] = ACTIONS(2701), - [anon_sym_false] = ACTIONS(2701), - [sym_none] = ACTIONS(2701), - [sym_undefined] = ACTIONS(2701), - [sym_sink] = ACTIONS(2701), - [sym_integer] = ACTIONS(2701), - [sym_float] = ACTIONS(2699), - [anon_sym_DQUOTE] = ACTIONS(2699), - [sym_multiline_string] = ACTIONS(2699), - [sym_character] = ACTIONS(2699), + [ts_builtin_sym_end] = ACTIONS(2701), + [sym_identifier] = ACTIONS(2703), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2699), + [sym__newline] = ACTIONS(2701), }, [STATE(1152)] = { - [ts_builtin_sym_end] = ACTIONS(2703), - [sym_identifier] = ACTIONS(2705), - [anon_sym_import] = ACTIONS(2705), - [anon_sym_func] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(2703), - [anon_sym_RPAREN] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2703), - [anon_sym_RBRACE] = ACTIONS(2703), - [anon_sym_DASH] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_void] = ACTIONS(2705), - [anon_sym_anyopaque] = ACTIONS(2705), - [anon_sym_bool] = ACTIONS(2705), - [anon_sym_int] = ACTIONS(2705), - [anon_sym_float] = ACTIONS(2705), - [anon_sym_range] = ACTIONS(2705), - [anon_sym_i8] = ACTIONS(2705), - [anon_sym_i16] = ACTIONS(2705), - [anon_sym_i32] = ACTIONS(2705), - [anon_sym_i64] = ACTIONS(2705), - [anon_sym_u8] = ACTIONS(2705), - [anon_sym_u16] = ACTIONS(2705), - [anon_sym_u32] = ACTIONS(2705), - [anon_sym_u64] = ACTIONS(2705), - [anon_sym_isize] = ACTIONS(2705), - [anon_sym_usize] = ACTIONS(2705), - [anon_sym_f32] = ACTIONS(2705), - [anon_sym_f64] = ACTIONS(2705), - [anon_sym_c_char] = ACTIONS(2705), - [anon_sym_c_schar] = ACTIONS(2705), - [anon_sym_c_uchar] = ACTIONS(2705), - [anon_sym_c_short] = ACTIONS(2705), - [anon_sym_c_ushort] = ACTIONS(2705), - [anon_sym_c_int] = ACTIONS(2705), - [anon_sym_c_uint] = ACTIONS(2705), - [anon_sym_c_long] = ACTIONS(2705), - [anon_sym_c_ulong] = ACTIONS(2705), - [anon_sym_c_longlong] = ACTIONS(2705), - [anon_sym_c_ulonglong] = ACTIONS(2705), - [anon_sym_c_float] = ACTIONS(2705), - [anon_sym_c_double] = ACTIONS(2705), - [anon_sym_c_longdouble] = ACTIONS(2705), - [anon_sym_return] = ACTIONS(2705), - [anon_sym_yield] = ACTIONS(2705), - [anon_sym_break] = ACTIONS(2705), - [anon_sym_continue] = ACTIONS(2705), - [anon_sym_defer] = ACTIONS(2705), - [anon_sym_errdefer] = ACTIONS(2705), - [anon_sym_if] = ACTIONS(2705), - [anon_sym_else] = ACTIONS(2705), - [anon_sym_while] = ACTIONS(2705), - [anon_sym_for] = ACTIONS(2705), - [anon_sym_match] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2703), - [anon_sym_try] = ACTIONS(2705), - [anon_sym_DOT] = ACTIONS(2703), - [anon_sym_true] = ACTIONS(2705), - [anon_sym_false] = ACTIONS(2705), - [sym_none] = ACTIONS(2705), - [sym_undefined] = ACTIONS(2705), - [sym_sink] = ACTIONS(2705), - [sym_integer] = ACTIONS(2705), - [sym_float] = ACTIONS(2703), - [anon_sym_DQUOTE] = ACTIONS(2703), - [sym_multiline_string] = ACTIONS(2703), - [sym_character] = ACTIONS(2703), + [ts_builtin_sym_end] = ACTIONS(2705), + [sym_identifier] = ACTIONS(2707), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2703), + [sym__newline] = ACTIONS(2705), }, [STATE(1153)] = { - [ts_builtin_sym_end] = ACTIONS(2707), - [sym_identifier] = ACTIONS(2709), - [anon_sym_import] = ACTIONS(2709), - [anon_sym_func] = ACTIONS(2709), - [anon_sym_BANG] = ACTIONS(2707), - [anon_sym_struct] = ACTIONS(2709), - [anon_sym_LPAREN] = ACTIONS(2707), - [anon_sym_RPAREN] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2707), - [anon_sym_RBRACE] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_DOLLAR] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_void] = ACTIONS(2709), - [anon_sym_anyopaque] = ACTIONS(2709), - [anon_sym_bool] = ACTIONS(2709), - [anon_sym_int] = ACTIONS(2709), - [anon_sym_float] = ACTIONS(2709), - [anon_sym_range] = ACTIONS(2709), - [anon_sym_i8] = ACTIONS(2709), - [anon_sym_i16] = ACTIONS(2709), - [anon_sym_i32] = ACTIONS(2709), - [anon_sym_i64] = ACTIONS(2709), - [anon_sym_u8] = ACTIONS(2709), - [anon_sym_u16] = ACTIONS(2709), - [anon_sym_u32] = ACTIONS(2709), - [anon_sym_u64] = ACTIONS(2709), - [anon_sym_isize] = ACTIONS(2709), - [anon_sym_usize] = ACTIONS(2709), - [anon_sym_f32] = ACTIONS(2709), - [anon_sym_f64] = ACTIONS(2709), - [anon_sym_c_char] = ACTIONS(2709), - [anon_sym_c_schar] = ACTIONS(2709), - [anon_sym_c_uchar] = ACTIONS(2709), - [anon_sym_c_short] = ACTIONS(2709), - [anon_sym_c_ushort] = ACTIONS(2709), - [anon_sym_c_int] = ACTIONS(2709), - [anon_sym_c_uint] = ACTIONS(2709), - [anon_sym_c_long] = ACTIONS(2709), - [anon_sym_c_ulong] = ACTIONS(2709), - [anon_sym_c_longlong] = ACTIONS(2709), - [anon_sym_c_ulonglong] = ACTIONS(2709), - [anon_sym_c_float] = ACTIONS(2709), - [anon_sym_c_double] = ACTIONS(2709), - [anon_sym_c_longdouble] = ACTIONS(2709), - [anon_sym_return] = ACTIONS(2709), - [anon_sym_yield] = ACTIONS(2709), - [anon_sym_break] = ACTIONS(2709), - [anon_sym_continue] = ACTIONS(2709), - [anon_sym_defer] = ACTIONS(2709), - [anon_sym_errdefer] = ACTIONS(2709), - [anon_sym_if] = ACTIONS(2709), - [anon_sym_else] = ACTIONS(2709), - [anon_sym_while] = ACTIONS(2709), - [anon_sym_for] = ACTIONS(2709), - [anon_sym_match] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_try] = ACTIONS(2709), - [anon_sym_DOT] = ACTIONS(2707), - [anon_sym_true] = ACTIONS(2709), - [anon_sym_false] = ACTIONS(2709), - [sym_none] = ACTIONS(2709), - [sym_undefined] = ACTIONS(2709), - [sym_sink] = ACTIONS(2709), - [sym_integer] = ACTIONS(2709), - [sym_float] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2707), - [sym_multiline_string] = ACTIONS(2707), - [sym_character] = ACTIONS(2707), + [ts_builtin_sym_end] = ACTIONS(2709), + [sym_identifier] = ACTIONS(2711), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2707), + [sym__newline] = ACTIONS(2709), }, [STATE(1154)] = { - [ts_builtin_sym_end] = ACTIONS(2711), - [sym_identifier] = ACTIONS(2713), - [anon_sym_import] = ACTIONS(2713), - [anon_sym_func] = ACTIONS(2713), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(2713), - [anon_sym_LPAREN] = ACTIONS(2711), - [anon_sym_RPAREN] = ACTIONS(2711), - [anon_sym_LBRACE] = ACTIONS(2711), - [anon_sym_RBRACE] = ACTIONS(2711), - [anon_sym_DASH] = ACTIONS(2711), - [anon_sym_DOLLAR] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_void] = ACTIONS(2713), - [anon_sym_anyopaque] = ACTIONS(2713), - [anon_sym_bool] = ACTIONS(2713), - [anon_sym_int] = ACTIONS(2713), - [anon_sym_float] = ACTIONS(2713), - [anon_sym_range] = ACTIONS(2713), - [anon_sym_i8] = ACTIONS(2713), - [anon_sym_i16] = ACTIONS(2713), - [anon_sym_i32] = ACTIONS(2713), - [anon_sym_i64] = ACTIONS(2713), - [anon_sym_u8] = ACTIONS(2713), - [anon_sym_u16] = ACTIONS(2713), - [anon_sym_u32] = ACTIONS(2713), - [anon_sym_u64] = ACTIONS(2713), - [anon_sym_isize] = ACTIONS(2713), - [anon_sym_usize] = ACTIONS(2713), - [anon_sym_f32] = ACTIONS(2713), - [anon_sym_f64] = ACTIONS(2713), - [anon_sym_c_char] = ACTIONS(2713), - [anon_sym_c_schar] = ACTIONS(2713), - [anon_sym_c_uchar] = ACTIONS(2713), - [anon_sym_c_short] = ACTIONS(2713), - [anon_sym_c_ushort] = ACTIONS(2713), - [anon_sym_c_int] = ACTIONS(2713), - [anon_sym_c_uint] = ACTIONS(2713), - [anon_sym_c_long] = ACTIONS(2713), - [anon_sym_c_ulong] = ACTIONS(2713), - [anon_sym_c_longlong] = ACTIONS(2713), - [anon_sym_c_ulonglong] = ACTIONS(2713), - [anon_sym_c_float] = ACTIONS(2713), - [anon_sym_c_double] = ACTIONS(2713), - [anon_sym_c_longdouble] = ACTIONS(2713), - [anon_sym_return] = ACTIONS(2713), - [anon_sym_yield] = ACTIONS(2713), - [anon_sym_break] = ACTIONS(2713), - [anon_sym_continue] = ACTIONS(2713), - [anon_sym_defer] = ACTIONS(2713), - [anon_sym_errdefer] = ACTIONS(2713), - [anon_sym_if] = ACTIONS(2713), - [anon_sym_else] = ACTIONS(2713), - [anon_sym_while] = ACTIONS(2713), - [anon_sym_for] = ACTIONS(2713), - [anon_sym_match] = ACTIONS(2713), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_try] = ACTIONS(2713), - [anon_sym_DOT] = ACTIONS(2711), - [anon_sym_true] = ACTIONS(2713), - [anon_sym_false] = ACTIONS(2713), - [sym_none] = ACTIONS(2713), - [sym_undefined] = ACTIONS(2713), - [sym_sink] = ACTIONS(2713), - [sym_integer] = ACTIONS(2713), - [sym_float] = ACTIONS(2711), - [anon_sym_DQUOTE] = ACTIONS(2711), - [sym_multiline_string] = ACTIONS(2711), - [sym_character] = ACTIONS(2711), + [ts_builtin_sym_end] = ACTIONS(2713), + [sym_identifier] = ACTIONS(2715), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2711), + [sym__newline] = ACTIONS(2713), }, [STATE(1155)] = { - [ts_builtin_sym_end] = ACTIONS(2715), - [sym_identifier] = ACTIONS(2717), - [anon_sym_import] = ACTIONS(2717), - [anon_sym_func] = ACTIONS(2717), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_struct] = ACTIONS(2717), - [anon_sym_LPAREN] = ACTIONS(2715), - [anon_sym_RPAREN] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_RBRACE] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_DOLLAR] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2715), - [anon_sym_void] = ACTIONS(2717), - [anon_sym_anyopaque] = ACTIONS(2717), - [anon_sym_bool] = ACTIONS(2717), - [anon_sym_int] = ACTIONS(2717), - [anon_sym_float] = ACTIONS(2717), - [anon_sym_range] = ACTIONS(2717), - [anon_sym_i8] = ACTIONS(2717), - [anon_sym_i16] = ACTIONS(2717), - [anon_sym_i32] = ACTIONS(2717), - [anon_sym_i64] = ACTIONS(2717), - [anon_sym_u8] = ACTIONS(2717), - [anon_sym_u16] = ACTIONS(2717), - [anon_sym_u32] = ACTIONS(2717), - [anon_sym_u64] = ACTIONS(2717), - [anon_sym_isize] = ACTIONS(2717), - [anon_sym_usize] = ACTIONS(2717), - [anon_sym_f32] = ACTIONS(2717), - [anon_sym_f64] = ACTIONS(2717), - [anon_sym_c_char] = ACTIONS(2717), - [anon_sym_c_schar] = ACTIONS(2717), - [anon_sym_c_uchar] = ACTIONS(2717), - [anon_sym_c_short] = ACTIONS(2717), - [anon_sym_c_ushort] = ACTIONS(2717), - [anon_sym_c_int] = ACTIONS(2717), - [anon_sym_c_uint] = ACTIONS(2717), - [anon_sym_c_long] = ACTIONS(2717), - [anon_sym_c_ulong] = ACTIONS(2717), - [anon_sym_c_longlong] = ACTIONS(2717), - [anon_sym_c_ulonglong] = ACTIONS(2717), - [anon_sym_c_float] = ACTIONS(2717), - [anon_sym_c_double] = ACTIONS(2717), - [anon_sym_c_longdouble] = ACTIONS(2717), - [anon_sym_return] = ACTIONS(2717), - [anon_sym_yield] = ACTIONS(2717), - [anon_sym_break] = ACTIONS(2717), - [anon_sym_continue] = ACTIONS(2717), - [anon_sym_defer] = ACTIONS(2717), - [anon_sym_errdefer] = ACTIONS(2717), - [anon_sym_if] = ACTIONS(2717), - [anon_sym_else] = ACTIONS(2717), - [anon_sym_while] = ACTIONS(2717), - [anon_sym_for] = ACTIONS(2717), - [anon_sym_match] = ACTIONS(2717), - [anon_sym_AMP] = ACTIONS(2715), - [anon_sym_try] = ACTIONS(2717), - [anon_sym_DOT] = ACTIONS(2715), - [anon_sym_true] = ACTIONS(2717), - [anon_sym_false] = ACTIONS(2717), - [sym_none] = ACTIONS(2717), - [sym_undefined] = ACTIONS(2717), - [sym_sink] = ACTIONS(2717), - [sym_integer] = ACTIONS(2717), - [sym_float] = ACTIONS(2715), - [anon_sym_DQUOTE] = ACTIONS(2715), - [sym_multiline_string] = ACTIONS(2715), - [sym_character] = ACTIONS(2715), + [ts_builtin_sym_end] = ACTIONS(2717), + [sym_identifier] = ACTIONS(2719), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2715), + [sym__newline] = ACTIONS(2717), }, [STATE(1156)] = { - [ts_builtin_sym_end] = ACTIONS(2719), - [sym_identifier] = ACTIONS(2721), - [anon_sym_import] = ACTIONS(2721), - [anon_sym_func] = ACTIONS(2721), - [anon_sym_BANG] = ACTIONS(2719), - [anon_sym_struct] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(2719), - [anon_sym_RPAREN] = ACTIONS(2719), - [anon_sym_LBRACE] = ACTIONS(2719), - [anon_sym_RBRACE] = ACTIONS(2719), - [anon_sym_DASH] = ACTIONS(2719), - [anon_sym_DOLLAR] = ACTIONS(2719), - [anon_sym_LBRACK] = ACTIONS(2719), - [anon_sym_void] = ACTIONS(2721), - [anon_sym_anyopaque] = ACTIONS(2721), - [anon_sym_bool] = ACTIONS(2721), - [anon_sym_int] = ACTIONS(2721), - [anon_sym_float] = ACTIONS(2721), - [anon_sym_range] = ACTIONS(2721), - [anon_sym_i8] = ACTIONS(2721), - [anon_sym_i16] = ACTIONS(2721), - [anon_sym_i32] = ACTIONS(2721), - [anon_sym_i64] = ACTIONS(2721), - [anon_sym_u8] = ACTIONS(2721), - [anon_sym_u16] = ACTIONS(2721), - [anon_sym_u32] = ACTIONS(2721), - [anon_sym_u64] = ACTIONS(2721), - [anon_sym_isize] = ACTIONS(2721), - [anon_sym_usize] = ACTIONS(2721), - [anon_sym_f32] = ACTIONS(2721), - [anon_sym_f64] = ACTIONS(2721), - [anon_sym_c_char] = ACTIONS(2721), - [anon_sym_c_schar] = ACTIONS(2721), - [anon_sym_c_uchar] = ACTIONS(2721), - [anon_sym_c_short] = ACTIONS(2721), - [anon_sym_c_ushort] = ACTIONS(2721), - [anon_sym_c_int] = ACTIONS(2721), - [anon_sym_c_uint] = ACTIONS(2721), - [anon_sym_c_long] = ACTIONS(2721), - [anon_sym_c_ulong] = ACTIONS(2721), - [anon_sym_c_longlong] = ACTIONS(2721), - [anon_sym_c_ulonglong] = ACTIONS(2721), - [anon_sym_c_float] = ACTIONS(2721), - [anon_sym_c_double] = ACTIONS(2721), - [anon_sym_c_longdouble] = ACTIONS(2721), - [anon_sym_return] = ACTIONS(2721), - [anon_sym_yield] = ACTIONS(2721), - [anon_sym_break] = ACTIONS(2721), - [anon_sym_continue] = ACTIONS(2721), - [anon_sym_defer] = ACTIONS(2721), - [anon_sym_errdefer] = ACTIONS(2721), - [anon_sym_if] = ACTIONS(2721), - [anon_sym_else] = ACTIONS(2721), - [anon_sym_while] = ACTIONS(2721), - [anon_sym_for] = ACTIONS(2721), - [anon_sym_match] = ACTIONS(2721), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_try] = ACTIONS(2721), - [anon_sym_DOT] = ACTIONS(2719), - [anon_sym_true] = ACTIONS(2721), - [anon_sym_false] = ACTIONS(2721), - [sym_none] = ACTIONS(2721), - [sym_undefined] = ACTIONS(2721), - [sym_sink] = ACTIONS(2721), - [sym_integer] = ACTIONS(2721), - [sym_float] = ACTIONS(2719), - [anon_sym_DQUOTE] = ACTIONS(2719), - [sym_multiline_string] = ACTIONS(2719), - [sym_character] = ACTIONS(2719), + [ts_builtin_sym_end] = ACTIONS(2721), + [sym_identifier] = ACTIONS(2723), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2719), + [sym__newline] = ACTIONS(2721), }, [STATE(1157)] = { - [ts_builtin_sym_end] = ACTIONS(2723), - [sym_identifier] = ACTIONS(2725), - [anon_sym_import] = ACTIONS(2725), - [anon_sym_func] = ACTIONS(2725), - [anon_sym_BANG] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(2723), - [anon_sym_RPAREN] = ACTIONS(2723), - [anon_sym_LBRACE] = ACTIONS(2723), - [anon_sym_RBRACE] = ACTIONS(2723), - [anon_sym_DASH] = ACTIONS(2723), - [anon_sym_DOLLAR] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2723), - [anon_sym_void] = ACTIONS(2725), - [anon_sym_anyopaque] = ACTIONS(2725), - [anon_sym_bool] = ACTIONS(2725), - [anon_sym_int] = ACTIONS(2725), - [anon_sym_float] = ACTIONS(2725), - [anon_sym_range] = ACTIONS(2725), - [anon_sym_i8] = ACTIONS(2725), - [anon_sym_i16] = ACTIONS(2725), - [anon_sym_i32] = ACTIONS(2725), - [anon_sym_i64] = ACTIONS(2725), - [anon_sym_u8] = ACTIONS(2725), - [anon_sym_u16] = ACTIONS(2725), - [anon_sym_u32] = ACTIONS(2725), - [anon_sym_u64] = ACTIONS(2725), - [anon_sym_isize] = ACTIONS(2725), - [anon_sym_usize] = ACTIONS(2725), - [anon_sym_f32] = ACTIONS(2725), - [anon_sym_f64] = ACTIONS(2725), - [anon_sym_c_char] = ACTIONS(2725), - [anon_sym_c_schar] = ACTIONS(2725), - [anon_sym_c_uchar] = ACTIONS(2725), - [anon_sym_c_short] = ACTIONS(2725), - [anon_sym_c_ushort] = ACTIONS(2725), - [anon_sym_c_int] = ACTIONS(2725), - [anon_sym_c_uint] = ACTIONS(2725), - [anon_sym_c_long] = ACTIONS(2725), - [anon_sym_c_ulong] = ACTIONS(2725), - [anon_sym_c_longlong] = ACTIONS(2725), - [anon_sym_c_ulonglong] = ACTIONS(2725), - [anon_sym_c_float] = ACTIONS(2725), - [anon_sym_c_double] = ACTIONS(2725), - [anon_sym_c_longdouble] = ACTIONS(2725), - [anon_sym_return] = ACTIONS(2725), - [anon_sym_yield] = ACTIONS(2725), - [anon_sym_break] = ACTIONS(2725), - [anon_sym_continue] = ACTIONS(2725), - [anon_sym_defer] = ACTIONS(2725), - [anon_sym_errdefer] = ACTIONS(2725), - [anon_sym_if] = ACTIONS(2725), - [anon_sym_else] = ACTIONS(2725), - [anon_sym_while] = ACTIONS(2725), - [anon_sym_for] = ACTIONS(2725), - [anon_sym_match] = ACTIONS(2725), - [anon_sym_AMP] = ACTIONS(2723), - [anon_sym_try] = ACTIONS(2725), - [anon_sym_DOT] = ACTIONS(2723), - [anon_sym_true] = ACTIONS(2725), - [anon_sym_false] = ACTIONS(2725), - [sym_none] = ACTIONS(2725), - [sym_undefined] = ACTIONS(2725), - [sym_sink] = ACTIONS(2725), - [sym_integer] = ACTIONS(2725), - [sym_float] = ACTIONS(2723), - [anon_sym_DQUOTE] = ACTIONS(2723), - [sym_multiline_string] = ACTIONS(2723), - [sym_character] = ACTIONS(2723), + [ts_builtin_sym_end] = ACTIONS(2725), + [sym_identifier] = ACTIONS(2727), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2723), + [sym__newline] = ACTIONS(2725), }, [STATE(1158)] = { - [ts_builtin_sym_end] = ACTIONS(2727), - [sym_identifier] = ACTIONS(2729), - [anon_sym_import] = ACTIONS(2729), - [anon_sym_func] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2727), - [anon_sym_struct] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2727), - [anon_sym_RPAREN] = ACTIONS(2727), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_RBRACE] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_DOLLAR] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_void] = ACTIONS(2729), - [anon_sym_anyopaque] = ACTIONS(2729), - [anon_sym_bool] = ACTIONS(2729), - [anon_sym_int] = ACTIONS(2729), - [anon_sym_float] = ACTIONS(2729), - [anon_sym_range] = ACTIONS(2729), - [anon_sym_i8] = ACTIONS(2729), - [anon_sym_i16] = ACTIONS(2729), - [anon_sym_i32] = ACTIONS(2729), - [anon_sym_i64] = ACTIONS(2729), - [anon_sym_u8] = ACTIONS(2729), - [anon_sym_u16] = ACTIONS(2729), - [anon_sym_u32] = ACTIONS(2729), - [anon_sym_u64] = ACTIONS(2729), - [anon_sym_isize] = ACTIONS(2729), - [anon_sym_usize] = ACTIONS(2729), - [anon_sym_f32] = ACTIONS(2729), - [anon_sym_f64] = ACTIONS(2729), - [anon_sym_c_char] = ACTIONS(2729), - [anon_sym_c_schar] = ACTIONS(2729), - [anon_sym_c_uchar] = ACTIONS(2729), - [anon_sym_c_short] = ACTIONS(2729), - [anon_sym_c_ushort] = ACTIONS(2729), - [anon_sym_c_int] = ACTIONS(2729), - [anon_sym_c_uint] = ACTIONS(2729), - [anon_sym_c_long] = ACTIONS(2729), - [anon_sym_c_ulong] = ACTIONS(2729), - [anon_sym_c_longlong] = ACTIONS(2729), - [anon_sym_c_ulonglong] = ACTIONS(2729), - [anon_sym_c_float] = ACTIONS(2729), - [anon_sym_c_double] = ACTIONS(2729), - [anon_sym_c_longdouble] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_yield] = ACTIONS(2729), - [anon_sym_break] = ACTIONS(2729), - [anon_sym_continue] = ACTIONS(2729), - [anon_sym_defer] = ACTIONS(2729), - [anon_sym_errdefer] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_else] = ACTIONS(2729), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_match] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2727), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_DOT] = ACTIONS(2727), - [anon_sym_true] = ACTIONS(2729), - [anon_sym_false] = ACTIONS(2729), - [sym_none] = ACTIONS(2729), - [sym_undefined] = ACTIONS(2729), - [sym_sink] = ACTIONS(2729), - [sym_integer] = ACTIONS(2729), - [sym_float] = ACTIONS(2727), - [anon_sym_DQUOTE] = ACTIONS(2727), - [sym_multiline_string] = ACTIONS(2727), - [sym_character] = ACTIONS(2727), + [ts_builtin_sym_end] = ACTIONS(2729), + [sym_identifier] = ACTIONS(2731), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2727), + [sym__newline] = ACTIONS(2729), }, [STATE(1159)] = { - [ts_builtin_sym_end] = ACTIONS(2731), - [sym_identifier] = ACTIONS(2733), - [anon_sym_import] = ACTIONS(2733), - [anon_sym_func] = ACTIONS(2733), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_struct] = ACTIONS(2733), - [anon_sym_LPAREN] = ACTIONS(2731), - [anon_sym_RPAREN] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2731), - [anon_sym_RBRACE] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_DOLLAR] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(2731), - [anon_sym_void] = ACTIONS(2733), - [anon_sym_anyopaque] = ACTIONS(2733), - [anon_sym_bool] = ACTIONS(2733), - [anon_sym_int] = ACTIONS(2733), - [anon_sym_float] = ACTIONS(2733), - [anon_sym_range] = ACTIONS(2733), - [anon_sym_i8] = ACTIONS(2733), - [anon_sym_i16] = ACTIONS(2733), - [anon_sym_i32] = ACTIONS(2733), - [anon_sym_i64] = ACTIONS(2733), - [anon_sym_u8] = ACTIONS(2733), - [anon_sym_u16] = ACTIONS(2733), - [anon_sym_u32] = ACTIONS(2733), - [anon_sym_u64] = ACTIONS(2733), - [anon_sym_isize] = ACTIONS(2733), - [anon_sym_usize] = ACTIONS(2733), - [anon_sym_f32] = ACTIONS(2733), - [anon_sym_f64] = ACTIONS(2733), - [anon_sym_c_char] = ACTIONS(2733), - [anon_sym_c_schar] = ACTIONS(2733), - [anon_sym_c_uchar] = ACTIONS(2733), - [anon_sym_c_short] = ACTIONS(2733), - [anon_sym_c_ushort] = ACTIONS(2733), - [anon_sym_c_int] = ACTIONS(2733), - [anon_sym_c_uint] = ACTIONS(2733), - [anon_sym_c_long] = ACTIONS(2733), - [anon_sym_c_ulong] = ACTIONS(2733), - [anon_sym_c_longlong] = ACTIONS(2733), - [anon_sym_c_ulonglong] = ACTIONS(2733), - [anon_sym_c_float] = ACTIONS(2733), - [anon_sym_c_double] = ACTIONS(2733), - [anon_sym_c_longdouble] = ACTIONS(2733), - [anon_sym_return] = ACTIONS(2733), - [anon_sym_yield] = ACTIONS(2733), - [anon_sym_break] = ACTIONS(2733), - [anon_sym_continue] = ACTIONS(2733), - [anon_sym_defer] = ACTIONS(2733), - [anon_sym_errdefer] = ACTIONS(2733), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_else] = ACTIONS(2733), - [anon_sym_while] = ACTIONS(2733), - [anon_sym_for] = ACTIONS(2733), - [anon_sym_match] = ACTIONS(2733), - [anon_sym_AMP] = ACTIONS(2731), - [anon_sym_try] = ACTIONS(2733), - [anon_sym_DOT] = ACTIONS(2731), - [anon_sym_true] = ACTIONS(2733), - [anon_sym_false] = ACTIONS(2733), - [sym_none] = ACTIONS(2733), - [sym_undefined] = ACTIONS(2733), - [sym_sink] = ACTIONS(2733), - [sym_integer] = ACTIONS(2733), - [sym_float] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2731), - [sym_multiline_string] = ACTIONS(2731), - [sym_character] = ACTIONS(2731), + [ts_builtin_sym_end] = ACTIONS(2733), + [sym_identifier] = ACTIONS(2735), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2731), + [sym__newline] = ACTIONS(2733), }, [STATE(1160)] = { - [ts_builtin_sym_end] = ACTIONS(2735), - [sym_identifier] = ACTIONS(2737), - [anon_sym_import] = ACTIONS(2737), - [anon_sym_func] = ACTIONS(2737), - [anon_sym_BANG] = ACTIONS(2735), - [anon_sym_struct] = ACTIONS(2737), - [anon_sym_LPAREN] = ACTIONS(2735), - [anon_sym_RPAREN] = ACTIONS(2735), - [anon_sym_LBRACE] = ACTIONS(2735), - [anon_sym_RBRACE] = ACTIONS(2735), - [anon_sym_DASH] = ACTIONS(2735), - [anon_sym_DOLLAR] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2735), - [anon_sym_void] = ACTIONS(2737), - [anon_sym_anyopaque] = ACTIONS(2737), - [anon_sym_bool] = ACTIONS(2737), - [anon_sym_int] = ACTIONS(2737), - [anon_sym_float] = ACTIONS(2737), - [anon_sym_range] = ACTIONS(2737), - [anon_sym_i8] = ACTIONS(2737), - [anon_sym_i16] = ACTIONS(2737), - [anon_sym_i32] = ACTIONS(2737), - [anon_sym_i64] = ACTIONS(2737), - [anon_sym_u8] = ACTIONS(2737), - [anon_sym_u16] = ACTIONS(2737), - [anon_sym_u32] = ACTIONS(2737), - [anon_sym_u64] = ACTIONS(2737), - [anon_sym_isize] = ACTIONS(2737), - [anon_sym_usize] = ACTIONS(2737), - [anon_sym_f32] = ACTIONS(2737), - [anon_sym_f64] = ACTIONS(2737), - [anon_sym_c_char] = ACTIONS(2737), - [anon_sym_c_schar] = ACTIONS(2737), - [anon_sym_c_uchar] = ACTIONS(2737), - [anon_sym_c_short] = ACTIONS(2737), - [anon_sym_c_ushort] = ACTIONS(2737), - [anon_sym_c_int] = ACTIONS(2737), - [anon_sym_c_uint] = ACTIONS(2737), - [anon_sym_c_long] = ACTIONS(2737), - [anon_sym_c_ulong] = ACTIONS(2737), - [anon_sym_c_longlong] = ACTIONS(2737), - [anon_sym_c_ulonglong] = ACTIONS(2737), - [anon_sym_c_float] = ACTIONS(2737), - [anon_sym_c_double] = ACTIONS(2737), - [anon_sym_c_longdouble] = ACTIONS(2737), - [anon_sym_return] = ACTIONS(2737), - [anon_sym_yield] = ACTIONS(2737), - [anon_sym_break] = ACTIONS(2737), - [anon_sym_continue] = ACTIONS(2737), - [anon_sym_defer] = ACTIONS(2737), - [anon_sym_errdefer] = ACTIONS(2737), - [anon_sym_if] = ACTIONS(2737), - [anon_sym_else] = ACTIONS(2737), - [anon_sym_while] = ACTIONS(2737), - [anon_sym_for] = ACTIONS(2737), - [anon_sym_match] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2735), - [anon_sym_try] = ACTIONS(2737), - [anon_sym_DOT] = ACTIONS(2735), - [anon_sym_true] = ACTIONS(2737), - [anon_sym_false] = ACTIONS(2737), - [sym_none] = ACTIONS(2737), - [sym_undefined] = ACTIONS(2737), - [sym_sink] = ACTIONS(2737), - [sym_integer] = ACTIONS(2737), - [sym_float] = ACTIONS(2735), - [anon_sym_DQUOTE] = ACTIONS(2735), - [sym_multiline_string] = ACTIONS(2735), - [sym_character] = ACTIONS(2735), + [ts_builtin_sym_end] = ACTIONS(2737), + [sym_identifier] = ACTIONS(2739), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2735), + [sym__newline] = ACTIONS(2737), }, [STATE(1161)] = { - [ts_builtin_sym_end] = ACTIONS(2739), - [sym_identifier] = ACTIONS(2741), - [anon_sym_import] = ACTIONS(2741), - [anon_sym_func] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2739), - [anon_sym_RBRACE] = ACTIONS(2739), - [anon_sym_DASH] = ACTIONS(2739), - [anon_sym_DOLLAR] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_void] = ACTIONS(2741), - [anon_sym_anyopaque] = ACTIONS(2741), - [anon_sym_bool] = ACTIONS(2741), - [anon_sym_int] = ACTIONS(2741), - [anon_sym_float] = ACTIONS(2741), - [anon_sym_range] = ACTIONS(2741), - [anon_sym_i8] = ACTIONS(2741), - [anon_sym_i16] = ACTIONS(2741), - [anon_sym_i32] = ACTIONS(2741), - [anon_sym_i64] = ACTIONS(2741), - [anon_sym_u8] = ACTIONS(2741), - [anon_sym_u16] = ACTIONS(2741), - [anon_sym_u32] = ACTIONS(2741), - [anon_sym_u64] = ACTIONS(2741), - [anon_sym_isize] = ACTIONS(2741), - [anon_sym_usize] = ACTIONS(2741), - [anon_sym_f32] = ACTIONS(2741), - [anon_sym_f64] = ACTIONS(2741), - [anon_sym_c_char] = ACTIONS(2741), - [anon_sym_c_schar] = ACTIONS(2741), - [anon_sym_c_uchar] = ACTIONS(2741), - [anon_sym_c_short] = ACTIONS(2741), - [anon_sym_c_ushort] = ACTIONS(2741), - [anon_sym_c_int] = ACTIONS(2741), - [anon_sym_c_uint] = ACTIONS(2741), - [anon_sym_c_long] = ACTIONS(2741), - [anon_sym_c_ulong] = ACTIONS(2741), - [anon_sym_c_longlong] = ACTIONS(2741), - [anon_sym_c_ulonglong] = ACTIONS(2741), - [anon_sym_c_float] = ACTIONS(2741), - [anon_sym_c_double] = ACTIONS(2741), - [anon_sym_c_longdouble] = ACTIONS(2741), - [anon_sym_return] = ACTIONS(2741), - [anon_sym_yield] = ACTIONS(2741), - [anon_sym_break] = ACTIONS(2741), - [anon_sym_continue] = ACTIONS(2741), - [anon_sym_defer] = ACTIONS(2741), - [anon_sym_errdefer] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(2741), - [anon_sym_else] = ACTIONS(2741), - [anon_sym_while] = ACTIONS(2741), - [anon_sym_for] = ACTIONS(2741), - [anon_sym_match] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_try] = ACTIONS(2741), - [anon_sym_DOT] = ACTIONS(2739), - [anon_sym_true] = ACTIONS(2741), - [anon_sym_false] = ACTIONS(2741), - [sym_none] = ACTIONS(2741), - [sym_undefined] = ACTIONS(2741), - [sym_sink] = ACTIONS(2741), - [sym_integer] = ACTIONS(2741), - [sym_float] = ACTIONS(2739), - [anon_sym_DQUOTE] = ACTIONS(2739), - [sym_multiline_string] = ACTIONS(2739), - [sym_character] = ACTIONS(2739), + [ts_builtin_sym_end] = ACTIONS(2741), + [sym_identifier] = ACTIONS(2743), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2739), + [sym__newline] = ACTIONS(2741), }, [STATE(1162)] = { - [ts_builtin_sym_end] = ACTIONS(2743), - [sym_identifier] = ACTIONS(2745), - [anon_sym_import] = ACTIONS(2745), - [anon_sym_func] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2743), - [anon_sym_struct] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_RPAREN] = ACTIONS(2743), - [anon_sym_LBRACE] = ACTIONS(2743), - [anon_sym_RBRACE] = ACTIONS(2743), - [anon_sym_DASH] = ACTIONS(2743), - [anon_sym_DOLLAR] = ACTIONS(2743), - [anon_sym_LBRACK] = ACTIONS(2743), - [anon_sym_void] = ACTIONS(2745), - [anon_sym_anyopaque] = ACTIONS(2745), - [anon_sym_bool] = ACTIONS(2745), - [anon_sym_int] = ACTIONS(2745), - [anon_sym_float] = ACTIONS(2745), - [anon_sym_range] = ACTIONS(2745), - [anon_sym_i8] = ACTIONS(2745), - [anon_sym_i16] = ACTIONS(2745), - [anon_sym_i32] = ACTIONS(2745), - [anon_sym_i64] = ACTIONS(2745), - [anon_sym_u8] = ACTIONS(2745), - [anon_sym_u16] = ACTIONS(2745), - [anon_sym_u32] = ACTIONS(2745), - [anon_sym_u64] = ACTIONS(2745), - [anon_sym_isize] = ACTIONS(2745), - [anon_sym_usize] = ACTIONS(2745), - [anon_sym_f32] = ACTIONS(2745), - [anon_sym_f64] = ACTIONS(2745), - [anon_sym_c_char] = ACTIONS(2745), - [anon_sym_c_schar] = ACTIONS(2745), - [anon_sym_c_uchar] = ACTIONS(2745), - [anon_sym_c_short] = ACTIONS(2745), - [anon_sym_c_ushort] = ACTIONS(2745), - [anon_sym_c_int] = ACTIONS(2745), - [anon_sym_c_uint] = ACTIONS(2745), - [anon_sym_c_long] = ACTIONS(2745), - [anon_sym_c_ulong] = ACTIONS(2745), - [anon_sym_c_longlong] = ACTIONS(2745), - [anon_sym_c_ulonglong] = ACTIONS(2745), - [anon_sym_c_float] = ACTIONS(2745), - [anon_sym_c_double] = ACTIONS(2745), - [anon_sym_c_longdouble] = ACTIONS(2745), - [anon_sym_return] = ACTIONS(2745), - [anon_sym_yield] = ACTIONS(2745), - [anon_sym_break] = ACTIONS(2745), - [anon_sym_continue] = ACTIONS(2745), - [anon_sym_defer] = ACTIONS(2745), - [anon_sym_errdefer] = ACTIONS(2745), - [anon_sym_if] = ACTIONS(2745), - [anon_sym_else] = ACTIONS(2745), - [anon_sym_while] = ACTIONS(2745), - [anon_sym_for] = ACTIONS(2745), - [anon_sym_match] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2743), - [anon_sym_try] = ACTIONS(2745), - [anon_sym_DOT] = ACTIONS(2743), - [anon_sym_true] = ACTIONS(2745), - [anon_sym_false] = ACTIONS(2745), - [sym_none] = ACTIONS(2745), - [sym_undefined] = ACTIONS(2745), - [sym_sink] = ACTIONS(2745), - [sym_integer] = ACTIONS(2745), - [sym_float] = ACTIONS(2743), - [anon_sym_DQUOTE] = ACTIONS(2743), - [sym_multiline_string] = ACTIONS(2743), - [sym_character] = ACTIONS(2743), + [ts_builtin_sym_end] = ACTIONS(2745), + [sym_identifier] = ACTIONS(2747), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2743), + [sym__newline] = ACTIONS(2745), }, [STATE(1163)] = { - [ts_builtin_sym_end] = ACTIONS(2747), - [sym_identifier] = ACTIONS(2749), - [anon_sym_import] = ACTIONS(2749), - [anon_sym_func] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2749), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym_RPAREN] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_RBRACE] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_DOLLAR] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_void] = ACTIONS(2749), - [anon_sym_anyopaque] = ACTIONS(2749), - [anon_sym_bool] = ACTIONS(2749), - [anon_sym_int] = ACTIONS(2749), - [anon_sym_float] = ACTIONS(2749), - [anon_sym_range] = ACTIONS(2749), - [anon_sym_i8] = ACTIONS(2749), - [anon_sym_i16] = ACTIONS(2749), - [anon_sym_i32] = ACTIONS(2749), - [anon_sym_i64] = ACTIONS(2749), - [anon_sym_u8] = ACTIONS(2749), - [anon_sym_u16] = ACTIONS(2749), - [anon_sym_u32] = ACTIONS(2749), - [anon_sym_u64] = ACTIONS(2749), - [anon_sym_isize] = ACTIONS(2749), - [anon_sym_usize] = ACTIONS(2749), - [anon_sym_f32] = ACTIONS(2749), - [anon_sym_f64] = ACTIONS(2749), - [anon_sym_c_char] = ACTIONS(2749), - [anon_sym_c_schar] = ACTIONS(2749), - [anon_sym_c_uchar] = ACTIONS(2749), - [anon_sym_c_short] = ACTIONS(2749), - [anon_sym_c_ushort] = ACTIONS(2749), - [anon_sym_c_int] = ACTIONS(2749), - [anon_sym_c_uint] = ACTIONS(2749), - [anon_sym_c_long] = ACTIONS(2749), - [anon_sym_c_ulong] = ACTIONS(2749), - [anon_sym_c_longlong] = ACTIONS(2749), - [anon_sym_c_ulonglong] = ACTIONS(2749), - [anon_sym_c_float] = ACTIONS(2749), - [anon_sym_c_double] = ACTIONS(2749), - [anon_sym_c_longdouble] = ACTIONS(2749), - [anon_sym_return] = ACTIONS(2749), - [anon_sym_yield] = ACTIONS(2749), - [anon_sym_break] = ACTIONS(2749), - [anon_sym_continue] = ACTIONS(2749), - [anon_sym_defer] = ACTIONS(2749), - [anon_sym_errdefer] = ACTIONS(2749), - [anon_sym_if] = ACTIONS(2749), - [anon_sym_else] = ACTIONS(2749), - [anon_sym_while] = ACTIONS(2749), - [anon_sym_for] = ACTIONS(2749), - [anon_sym_match] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_try] = ACTIONS(2749), - [anon_sym_DOT] = ACTIONS(2747), - [anon_sym_true] = ACTIONS(2749), - [anon_sym_false] = ACTIONS(2749), - [sym_none] = ACTIONS(2749), - [sym_undefined] = ACTIONS(2749), - [sym_sink] = ACTIONS(2749), - [sym_integer] = ACTIONS(2749), - [sym_float] = ACTIONS(2747), - [anon_sym_DQUOTE] = ACTIONS(2747), - [sym_multiline_string] = ACTIONS(2747), - [sym_character] = ACTIONS(2747), + [ts_builtin_sym_end] = ACTIONS(2749), + [sym_identifier] = ACTIONS(2751), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2747), + [sym__newline] = ACTIONS(2749), }, [STATE(1164)] = { - [ts_builtin_sym_end] = ACTIONS(2751), - [sym_identifier] = ACTIONS(2753), - [anon_sym_import] = ACTIONS(2753), - [anon_sym_func] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2751), - [anon_sym_struct] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2751), - [anon_sym_RPAREN] = ACTIONS(2751), - [anon_sym_LBRACE] = ACTIONS(2751), - [anon_sym_RBRACE] = ACTIONS(2751), - [anon_sym_DASH] = ACTIONS(2751), - [anon_sym_DOLLAR] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2751), - [anon_sym_void] = ACTIONS(2753), - [anon_sym_anyopaque] = ACTIONS(2753), - [anon_sym_bool] = ACTIONS(2753), - [anon_sym_int] = ACTIONS(2753), - [anon_sym_float] = ACTIONS(2753), - [anon_sym_range] = ACTIONS(2753), - [anon_sym_i8] = ACTIONS(2753), - [anon_sym_i16] = ACTIONS(2753), - [anon_sym_i32] = ACTIONS(2753), - [anon_sym_i64] = ACTIONS(2753), - [anon_sym_u8] = ACTIONS(2753), - [anon_sym_u16] = ACTIONS(2753), - [anon_sym_u32] = ACTIONS(2753), - [anon_sym_u64] = ACTIONS(2753), - [anon_sym_isize] = ACTIONS(2753), - [anon_sym_usize] = ACTIONS(2753), - [anon_sym_f32] = ACTIONS(2753), - [anon_sym_f64] = ACTIONS(2753), - [anon_sym_c_char] = ACTIONS(2753), - [anon_sym_c_schar] = ACTIONS(2753), - [anon_sym_c_uchar] = ACTIONS(2753), - [anon_sym_c_short] = ACTIONS(2753), - [anon_sym_c_ushort] = ACTIONS(2753), - [anon_sym_c_int] = ACTIONS(2753), - [anon_sym_c_uint] = ACTIONS(2753), - [anon_sym_c_long] = ACTIONS(2753), - [anon_sym_c_ulong] = ACTIONS(2753), - [anon_sym_c_longlong] = ACTIONS(2753), - [anon_sym_c_ulonglong] = ACTIONS(2753), - [anon_sym_c_float] = ACTIONS(2753), - [anon_sym_c_double] = ACTIONS(2753), - [anon_sym_c_longdouble] = ACTIONS(2753), - [anon_sym_return] = ACTIONS(2753), - [anon_sym_yield] = ACTIONS(2753), - [anon_sym_break] = ACTIONS(2753), - [anon_sym_continue] = ACTIONS(2753), - [anon_sym_defer] = ACTIONS(2753), - [anon_sym_errdefer] = ACTIONS(2753), - [anon_sym_if] = ACTIONS(2753), - [anon_sym_else] = ACTIONS(2753), - [anon_sym_while] = ACTIONS(2753), - [anon_sym_for] = ACTIONS(2753), - [anon_sym_match] = ACTIONS(2753), - [anon_sym_AMP] = ACTIONS(2751), - [anon_sym_try] = ACTIONS(2753), - [anon_sym_DOT] = ACTIONS(2751), - [anon_sym_true] = ACTIONS(2753), - [anon_sym_false] = ACTIONS(2753), - [sym_none] = ACTIONS(2753), - [sym_undefined] = ACTIONS(2753), - [sym_sink] = ACTIONS(2753), - [sym_integer] = ACTIONS(2753), - [sym_float] = ACTIONS(2751), - [anon_sym_DQUOTE] = ACTIONS(2751), - [sym_multiline_string] = ACTIONS(2751), - [sym_character] = ACTIONS(2751), + [ts_builtin_sym_end] = ACTIONS(2753), + [sym_identifier] = ACTIONS(2755), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2751), + [sym__newline] = ACTIONS(2753), }, [STATE(1165)] = { - [ts_builtin_sym_end] = ACTIONS(2755), - [sym_identifier] = ACTIONS(2757), - [anon_sym_import] = ACTIONS(2757), - [anon_sym_func] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(2755), - [anon_sym_RBRACE] = ACTIONS(2755), - [anon_sym_DASH] = ACTIONS(2755), - [anon_sym_DOLLAR] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_void] = ACTIONS(2757), - [anon_sym_anyopaque] = ACTIONS(2757), - [anon_sym_bool] = ACTIONS(2757), - [anon_sym_int] = ACTIONS(2757), - [anon_sym_float] = ACTIONS(2757), - [anon_sym_range] = ACTIONS(2757), - [anon_sym_i8] = ACTIONS(2757), - [anon_sym_i16] = ACTIONS(2757), - [anon_sym_i32] = ACTIONS(2757), - [anon_sym_i64] = ACTIONS(2757), - [anon_sym_u8] = ACTIONS(2757), - [anon_sym_u16] = ACTIONS(2757), - [anon_sym_u32] = ACTIONS(2757), - [anon_sym_u64] = ACTIONS(2757), - [anon_sym_isize] = ACTIONS(2757), - [anon_sym_usize] = ACTIONS(2757), - [anon_sym_f32] = ACTIONS(2757), - [anon_sym_f64] = ACTIONS(2757), - [anon_sym_c_char] = ACTIONS(2757), - [anon_sym_c_schar] = ACTIONS(2757), - [anon_sym_c_uchar] = ACTIONS(2757), - [anon_sym_c_short] = ACTIONS(2757), - [anon_sym_c_ushort] = ACTIONS(2757), - [anon_sym_c_int] = ACTIONS(2757), - [anon_sym_c_uint] = ACTIONS(2757), - [anon_sym_c_long] = ACTIONS(2757), - [anon_sym_c_ulong] = ACTIONS(2757), - [anon_sym_c_longlong] = ACTIONS(2757), - [anon_sym_c_ulonglong] = ACTIONS(2757), - [anon_sym_c_float] = ACTIONS(2757), - [anon_sym_c_double] = ACTIONS(2757), - [anon_sym_c_longdouble] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_yield] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_defer] = ACTIONS(2757), - [anon_sym_errdefer] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_else] = ACTIONS(2757), - [anon_sym_while] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_match] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2755), - [anon_sym_try] = ACTIONS(2757), - [anon_sym_DOT] = ACTIONS(2755), - [anon_sym_true] = ACTIONS(2757), - [anon_sym_false] = ACTIONS(2757), - [sym_none] = ACTIONS(2757), - [sym_undefined] = ACTIONS(2757), - [sym_sink] = ACTIONS(2757), - [sym_integer] = ACTIONS(2757), - [sym_float] = ACTIONS(2755), - [anon_sym_DQUOTE] = ACTIONS(2755), - [sym_multiline_string] = ACTIONS(2755), - [sym_character] = ACTIONS(2755), + [ts_builtin_sym_end] = ACTIONS(2757), + [sym_identifier] = ACTIONS(2759), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2755), + [sym__newline] = ACTIONS(2757), }, [STATE(1166)] = { - [ts_builtin_sym_end] = ACTIONS(2759), - [sym_identifier] = ACTIONS(2761), - [anon_sym_import] = ACTIONS(2761), - [anon_sym_func] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2759), - [anon_sym_RPAREN] = ACTIONS(2759), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_RBRACE] = ACTIONS(2759), - [anon_sym_DASH] = ACTIONS(2759), - [anon_sym_DOLLAR] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_void] = ACTIONS(2761), - [anon_sym_anyopaque] = ACTIONS(2761), - [anon_sym_bool] = ACTIONS(2761), - [anon_sym_int] = ACTIONS(2761), - [anon_sym_float] = ACTIONS(2761), - [anon_sym_range] = ACTIONS(2761), - [anon_sym_i8] = ACTIONS(2761), - [anon_sym_i16] = ACTIONS(2761), - [anon_sym_i32] = ACTIONS(2761), - [anon_sym_i64] = ACTIONS(2761), - [anon_sym_u8] = ACTIONS(2761), - [anon_sym_u16] = ACTIONS(2761), - [anon_sym_u32] = ACTIONS(2761), - [anon_sym_u64] = ACTIONS(2761), - [anon_sym_isize] = ACTIONS(2761), - [anon_sym_usize] = ACTIONS(2761), - [anon_sym_f32] = ACTIONS(2761), - [anon_sym_f64] = ACTIONS(2761), - [anon_sym_c_char] = ACTIONS(2761), - [anon_sym_c_schar] = ACTIONS(2761), - [anon_sym_c_uchar] = ACTIONS(2761), - [anon_sym_c_short] = ACTIONS(2761), - [anon_sym_c_ushort] = ACTIONS(2761), - [anon_sym_c_int] = ACTIONS(2761), - [anon_sym_c_uint] = ACTIONS(2761), - [anon_sym_c_long] = ACTIONS(2761), - [anon_sym_c_ulong] = ACTIONS(2761), - [anon_sym_c_longlong] = ACTIONS(2761), - [anon_sym_c_ulonglong] = ACTIONS(2761), - [anon_sym_c_float] = ACTIONS(2761), - [anon_sym_c_double] = ACTIONS(2761), - [anon_sym_c_longdouble] = ACTIONS(2761), - [anon_sym_return] = ACTIONS(2761), - [anon_sym_yield] = ACTIONS(2761), - [anon_sym_break] = ACTIONS(2761), - [anon_sym_continue] = ACTIONS(2761), - [anon_sym_defer] = ACTIONS(2761), - [anon_sym_errdefer] = ACTIONS(2761), - [anon_sym_if] = ACTIONS(2761), - [anon_sym_else] = ACTIONS(2761), - [anon_sym_while] = ACTIONS(2761), - [anon_sym_for] = ACTIONS(2761), - [anon_sym_match] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_try] = ACTIONS(2761), - [anon_sym_DOT] = ACTIONS(2759), - [anon_sym_true] = ACTIONS(2761), - [anon_sym_false] = ACTIONS(2761), - [sym_none] = ACTIONS(2761), - [sym_undefined] = ACTIONS(2761), - [sym_sink] = ACTIONS(2761), - [sym_integer] = ACTIONS(2761), - [sym_float] = ACTIONS(2759), - [anon_sym_DQUOTE] = ACTIONS(2759), - [sym_multiline_string] = ACTIONS(2759), - [sym_character] = ACTIONS(2759), + [ts_builtin_sym_end] = ACTIONS(2761), + [sym_identifier] = ACTIONS(2763), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2759), + [sym__newline] = ACTIONS(2761), }, [STATE(1167)] = { - [ts_builtin_sym_end] = ACTIONS(2763), - [sym_identifier] = ACTIONS(2765), - [anon_sym_import] = ACTIONS(2765), - [anon_sym_func] = ACTIONS(2765), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_struct] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2763), - [anon_sym_RPAREN] = ACTIONS(2763), - [anon_sym_LBRACE] = ACTIONS(2763), - [anon_sym_RBRACE] = ACTIONS(2763), - [anon_sym_DASH] = ACTIONS(2763), - [anon_sym_DOLLAR] = ACTIONS(2763), - [anon_sym_LBRACK] = ACTIONS(2763), - [anon_sym_void] = ACTIONS(2765), - [anon_sym_anyopaque] = ACTIONS(2765), - [anon_sym_bool] = ACTIONS(2765), - [anon_sym_int] = ACTIONS(2765), - [anon_sym_float] = ACTIONS(2765), - [anon_sym_range] = ACTIONS(2765), - [anon_sym_i8] = ACTIONS(2765), - [anon_sym_i16] = ACTIONS(2765), - [anon_sym_i32] = ACTIONS(2765), - [anon_sym_i64] = ACTIONS(2765), - [anon_sym_u8] = ACTIONS(2765), - [anon_sym_u16] = ACTIONS(2765), - [anon_sym_u32] = ACTIONS(2765), - [anon_sym_u64] = ACTIONS(2765), - [anon_sym_isize] = ACTIONS(2765), - [anon_sym_usize] = ACTIONS(2765), - [anon_sym_f32] = ACTIONS(2765), - [anon_sym_f64] = ACTIONS(2765), - [anon_sym_c_char] = ACTIONS(2765), - [anon_sym_c_schar] = ACTIONS(2765), - [anon_sym_c_uchar] = ACTIONS(2765), - [anon_sym_c_short] = ACTIONS(2765), - [anon_sym_c_ushort] = ACTIONS(2765), - [anon_sym_c_int] = ACTIONS(2765), - [anon_sym_c_uint] = ACTIONS(2765), - [anon_sym_c_long] = ACTIONS(2765), - [anon_sym_c_ulong] = ACTIONS(2765), - [anon_sym_c_longlong] = ACTIONS(2765), - [anon_sym_c_ulonglong] = ACTIONS(2765), - [anon_sym_c_float] = ACTIONS(2765), - [anon_sym_c_double] = ACTIONS(2765), - [anon_sym_c_longdouble] = ACTIONS(2765), - [anon_sym_return] = ACTIONS(2765), - [anon_sym_yield] = ACTIONS(2765), - [anon_sym_break] = ACTIONS(2765), - [anon_sym_continue] = ACTIONS(2765), - [anon_sym_defer] = ACTIONS(2765), - [anon_sym_errdefer] = ACTIONS(2765), - [anon_sym_if] = ACTIONS(2765), - [anon_sym_else] = ACTIONS(2765), - [anon_sym_while] = ACTIONS(2765), - [anon_sym_for] = ACTIONS(2765), - [anon_sym_match] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_try] = ACTIONS(2765), - [anon_sym_DOT] = ACTIONS(2763), - [anon_sym_true] = ACTIONS(2765), - [anon_sym_false] = ACTIONS(2765), - [sym_none] = ACTIONS(2765), - [sym_undefined] = ACTIONS(2765), - [sym_sink] = ACTIONS(2765), - [sym_integer] = ACTIONS(2765), - [sym_float] = ACTIONS(2763), - [anon_sym_DQUOTE] = ACTIONS(2763), - [sym_multiline_string] = ACTIONS(2763), - [sym_character] = ACTIONS(2763), + [ts_builtin_sym_end] = ACTIONS(2765), + [sym_identifier] = ACTIONS(2767), + [anon_sym_import] = ACTIONS(2767), + [anon_sym_func] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2765), + [anon_sym_struct] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2765), + [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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2763), + [sym__newline] = ACTIONS(2765), }, [STATE(1168)] = { - [ts_builtin_sym_end] = ACTIONS(2767), - [sym_identifier] = ACTIONS(2769), - [anon_sym_import] = ACTIONS(2769), - [anon_sym_func] = ACTIONS(2769), - [anon_sym_BANG] = ACTIONS(2767), - [anon_sym_struct] = ACTIONS(2769), - [anon_sym_LPAREN] = ACTIONS(2767), - [anon_sym_RPAREN] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2767), - [anon_sym_RBRACE] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_DOLLAR] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2767), - [anon_sym_void] = ACTIONS(2769), - [anon_sym_anyopaque] = ACTIONS(2769), - [anon_sym_bool] = ACTIONS(2769), - [anon_sym_int] = ACTIONS(2769), - [anon_sym_float] = ACTIONS(2769), - [anon_sym_range] = ACTIONS(2769), - [anon_sym_i8] = ACTIONS(2769), - [anon_sym_i16] = ACTIONS(2769), - [anon_sym_i32] = ACTIONS(2769), - [anon_sym_i64] = ACTIONS(2769), - [anon_sym_u8] = ACTIONS(2769), - [anon_sym_u16] = ACTIONS(2769), - [anon_sym_u32] = ACTIONS(2769), - [anon_sym_u64] = ACTIONS(2769), - [anon_sym_isize] = ACTIONS(2769), - [anon_sym_usize] = ACTIONS(2769), - [anon_sym_f32] = ACTIONS(2769), - [anon_sym_f64] = ACTIONS(2769), - [anon_sym_c_char] = ACTIONS(2769), - [anon_sym_c_schar] = ACTIONS(2769), - [anon_sym_c_uchar] = ACTIONS(2769), - [anon_sym_c_short] = ACTIONS(2769), - [anon_sym_c_ushort] = ACTIONS(2769), - [anon_sym_c_int] = ACTIONS(2769), - [anon_sym_c_uint] = ACTIONS(2769), - [anon_sym_c_long] = ACTIONS(2769), - [anon_sym_c_ulong] = ACTIONS(2769), - [anon_sym_c_longlong] = ACTIONS(2769), - [anon_sym_c_ulonglong] = ACTIONS(2769), - [anon_sym_c_float] = ACTIONS(2769), - [anon_sym_c_double] = ACTIONS(2769), - [anon_sym_c_longdouble] = ACTIONS(2769), - [anon_sym_return] = ACTIONS(2769), - [anon_sym_yield] = ACTIONS(2769), - [anon_sym_break] = ACTIONS(2769), - [anon_sym_continue] = ACTIONS(2769), - [anon_sym_defer] = ACTIONS(2769), - [anon_sym_errdefer] = ACTIONS(2769), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_else] = ACTIONS(2769), - [anon_sym_while] = ACTIONS(2769), - [anon_sym_for] = ACTIONS(2769), - [anon_sym_match] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_try] = ACTIONS(2769), - [anon_sym_DOT] = ACTIONS(2767), - [anon_sym_true] = ACTIONS(2769), - [anon_sym_false] = ACTIONS(2769), - [sym_none] = ACTIONS(2769), - [sym_undefined] = ACTIONS(2769), - [sym_sink] = ACTIONS(2769), - [sym_integer] = ACTIONS(2769), - [sym_float] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2767), - [sym_multiline_string] = ACTIONS(2767), - [sym_character] = ACTIONS(2767), + [ts_builtin_sym_end] = ACTIONS(2769), + [sym_identifier] = ACTIONS(2771), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2767), + [sym__newline] = ACTIONS(2769), }, [STATE(1169)] = { - [ts_builtin_sym_end] = ACTIONS(2771), - [sym_identifier] = ACTIONS(2773), - [anon_sym_import] = ACTIONS(2773), - [anon_sym_func] = ACTIONS(2773), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_struct] = ACTIONS(2773), - [anon_sym_LPAREN] = ACTIONS(2771), - [anon_sym_RPAREN] = ACTIONS(2771), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_RBRACE] = ACTIONS(2771), - [anon_sym_DASH] = ACTIONS(2771), - [anon_sym_DOLLAR] = ACTIONS(2771), - [anon_sym_LBRACK] = ACTIONS(2771), - [anon_sym_void] = ACTIONS(2773), - [anon_sym_anyopaque] = ACTIONS(2773), - [anon_sym_bool] = ACTIONS(2773), - [anon_sym_int] = ACTIONS(2773), - [anon_sym_float] = ACTIONS(2773), - [anon_sym_range] = ACTIONS(2773), - [anon_sym_i8] = ACTIONS(2773), - [anon_sym_i16] = ACTIONS(2773), - [anon_sym_i32] = ACTIONS(2773), - [anon_sym_i64] = ACTIONS(2773), - [anon_sym_u8] = ACTIONS(2773), - [anon_sym_u16] = ACTIONS(2773), - [anon_sym_u32] = ACTIONS(2773), - [anon_sym_u64] = ACTIONS(2773), - [anon_sym_isize] = ACTIONS(2773), - [anon_sym_usize] = ACTIONS(2773), - [anon_sym_f32] = ACTIONS(2773), - [anon_sym_f64] = ACTIONS(2773), - [anon_sym_c_char] = ACTIONS(2773), - [anon_sym_c_schar] = ACTIONS(2773), - [anon_sym_c_uchar] = ACTIONS(2773), - [anon_sym_c_short] = ACTIONS(2773), - [anon_sym_c_ushort] = ACTIONS(2773), - [anon_sym_c_int] = ACTIONS(2773), - [anon_sym_c_uint] = ACTIONS(2773), - [anon_sym_c_long] = ACTIONS(2773), - [anon_sym_c_ulong] = ACTIONS(2773), - [anon_sym_c_longlong] = ACTIONS(2773), - [anon_sym_c_ulonglong] = ACTIONS(2773), - [anon_sym_c_float] = ACTIONS(2773), - [anon_sym_c_double] = ACTIONS(2773), - [anon_sym_c_longdouble] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_yield] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_defer] = ACTIONS(2773), - [anon_sym_errdefer] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_else] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_match] = ACTIONS(2773), - [anon_sym_AMP] = ACTIONS(2771), - [anon_sym_try] = ACTIONS(2773), - [anon_sym_DOT] = ACTIONS(2771), - [anon_sym_true] = ACTIONS(2773), - [anon_sym_false] = ACTIONS(2773), - [sym_none] = ACTIONS(2773), - [sym_undefined] = ACTIONS(2773), - [sym_sink] = ACTIONS(2773), - [sym_integer] = ACTIONS(2773), - [sym_float] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2771), - [sym_multiline_string] = ACTIONS(2771), - [sym_character] = ACTIONS(2771), + [ts_builtin_sym_end] = ACTIONS(2773), + [sym_identifier] = ACTIONS(2775), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2771), + [sym__newline] = ACTIONS(2773), }, [STATE(1170)] = { - [ts_builtin_sym_end] = ACTIONS(2775), - [sym_identifier] = ACTIONS(2777), - [anon_sym_import] = ACTIONS(2777), - [anon_sym_func] = ACTIONS(2777), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_struct] = ACTIONS(2777), - [anon_sym_LPAREN] = ACTIONS(2775), - [anon_sym_RPAREN] = ACTIONS(2775), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_RBRACE] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2775), - [anon_sym_DOLLAR] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2775), - [anon_sym_void] = ACTIONS(2777), - [anon_sym_anyopaque] = ACTIONS(2777), - [anon_sym_bool] = ACTIONS(2777), - [anon_sym_int] = ACTIONS(2777), - [anon_sym_float] = ACTIONS(2777), - [anon_sym_range] = ACTIONS(2777), - [anon_sym_i8] = ACTIONS(2777), - [anon_sym_i16] = ACTIONS(2777), - [anon_sym_i32] = ACTIONS(2777), - [anon_sym_i64] = ACTIONS(2777), - [anon_sym_u8] = ACTIONS(2777), - [anon_sym_u16] = ACTIONS(2777), - [anon_sym_u32] = ACTIONS(2777), - [anon_sym_u64] = ACTIONS(2777), - [anon_sym_isize] = ACTIONS(2777), - [anon_sym_usize] = ACTIONS(2777), - [anon_sym_f32] = ACTIONS(2777), - [anon_sym_f64] = ACTIONS(2777), - [anon_sym_c_char] = ACTIONS(2777), - [anon_sym_c_schar] = ACTIONS(2777), - [anon_sym_c_uchar] = ACTIONS(2777), - [anon_sym_c_short] = ACTIONS(2777), - [anon_sym_c_ushort] = ACTIONS(2777), - [anon_sym_c_int] = ACTIONS(2777), - [anon_sym_c_uint] = ACTIONS(2777), - [anon_sym_c_long] = ACTIONS(2777), - [anon_sym_c_ulong] = ACTIONS(2777), - [anon_sym_c_longlong] = ACTIONS(2777), - [anon_sym_c_ulonglong] = ACTIONS(2777), - [anon_sym_c_float] = ACTIONS(2777), - [anon_sym_c_double] = ACTIONS(2777), - [anon_sym_c_longdouble] = ACTIONS(2777), - [anon_sym_return] = ACTIONS(2777), - [anon_sym_yield] = ACTIONS(2777), - [anon_sym_break] = ACTIONS(2777), - [anon_sym_continue] = ACTIONS(2777), - [anon_sym_defer] = ACTIONS(2777), - [anon_sym_errdefer] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2777), - [anon_sym_else] = ACTIONS(2777), - [anon_sym_while] = ACTIONS(2777), - [anon_sym_for] = ACTIONS(2777), - [anon_sym_match] = ACTIONS(2777), - [anon_sym_AMP] = ACTIONS(2775), - [anon_sym_try] = ACTIONS(2777), - [anon_sym_DOT] = ACTIONS(2775), - [anon_sym_true] = ACTIONS(2777), - [anon_sym_false] = ACTIONS(2777), - [sym_none] = ACTIONS(2777), - [sym_undefined] = ACTIONS(2777), - [sym_sink] = ACTIONS(2777), - [sym_integer] = ACTIONS(2777), - [sym_float] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [sym_multiline_string] = ACTIONS(2775), - [sym_character] = ACTIONS(2775), + [ts_builtin_sym_end] = ACTIONS(2777), + [sym_identifier] = ACTIONS(2779), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2775), + [sym__newline] = ACTIONS(2777), }, [STATE(1171)] = { - [ts_builtin_sym_end] = ACTIONS(2779), - [sym_identifier] = ACTIONS(2781), - [anon_sym_import] = ACTIONS(2781), - [anon_sym_func] = ACTIONS(2781), - [anon_sym_BANG] = ACTIONS(2779), - [anon_sym_struct] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_RPAREN] = ACTIONS(2779), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2779), - [anon_sym_DOLLAR] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_void] = ACTIONS(2781), - [anon_sym_anyopaque] = ACTIONS(2781), - [anon_sym_bool] = ACTIONS(2781), - [anon_sym_int] = ACTIONS(2781), - [anon_sym_float] = ACTIONS(2781), - [anon_sym_range] = ACTIONS(2781), - [anon_sym_i8] = ACTIONS(2781), - [anon_sym_i16] = ACTIONS(2781), - [anon_sym_i32] = ACTIONS(2781), - [anon_sym_i64] = ACTIONS(2781), - [anon_sym_u8] = ACTIONS(2781), - [anon_sym_u16] = ACTIONS(2781), - [anon_sym_u32] = ACTIONS(2781), - [anon_sym_u64] = ACTIONS(2781), - [anon_sym_isize] = ACTIONS(2781), - [anon_sym_usize] = ACTIONS(2781), - [anon_sym_f32] = ACTIONS(2781), - [anon_sym_f64] = ACTIONS(2781), - [anon_sym_c_char] = ACTIONS(2781), - [anon_sym_c_schar] = ACTIONS(2781), - [anon_sym_c_uchar] = ACTIONS(2781), - [anon_sym_c_short] = ACTIONS(2781), - [anon_sym_c_ushort] = ACTIONS(2781), - [anon_sym_c_int] = ACTIONS(2781), - [anon_sym_c_uint] = ACTIONS(2781), - [anon_sym_c_long] = ACTIONS(2781), - [anon_sym_c_ulong] = ACTIONS(2781), - [anon_sym_c_longlong] = ACTIONS(2781), - [anon_sym_c_ulonglong] = ACTIONS(2781), - [anon_sym_c_float] = ACTIONS(2781), - [anon_sym_c_double] = ACTIONS(2781), - [anon_sym_c_longdouble] = ACTIONS(2781), - [anon_sym_return] = ACTIONS(2781), - [anon_sym_yield] = ACTIONS(2781), - [anon_sym_break] = ACTIONS(2781), - [anon_sym_continue] = ACTIONS(2781), - [anon_sym_defer] = ACTIONS(2781), - [anon_sym_errdefer] = ACTIONS(2781), - [anon_sym_if] = ACTIONS(2781), - [anon_sym_else] = ACTIONS(2781), - [anon_sym_while] = ACTIONS(2781), - [anon_sym_for] = ACTIONS(2781), - [anon_sym_match] = ACTIONS(2781), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_try] = ACTIONS(2781), - [anon_sym_DOT] = ACTIONS(2779), - [anon_sym_true] = ACTIONS(2781), - [anon_sym_false] = ACTIONS(2781), - [sym_none] = ACTIONS(2781), - [sym_undefined] = ACTIONS(2781), - [sym_sink] = ACTIONS(2781), - [sym_integer] = ACTIONS(2781), - [sym_float] = ACTIONS(2779), - [anon_sym_DQUOTE] = ACTIONS(2779), - [sym_multiline_string] = ACTIONS(2779), - [sym_character] = ACTIONS(2779), + [ts_builtin_sym_end] = ACTIONS(2781), + [sym_identifier] = ACTIONS(2783), + [anon_sym_import] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(2783), + [anon_sym_BANG] = ACTIONS(2781), + [anon_sym_struct] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2781), + [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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2779), + [sym__newline] = ACTIONS(2781), }, [STATE(1172)] = { - [ts_builtin_sym_end] = ACTIONS(2783), - [sym_identifier] = ACTIONS(2785), - [anon_sym_import] = ACTIONS(2785), - [anon_sym_func] = ACTIONS(2785), - [anon_sym_BANG] = ACTIONS(2783), - [anon_sym_struct] = ACTIONS(2785), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2783), - [anon_sym_LBRACE] = ACTIONS(2783), - [anon_sym_RBRACE] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_DOLLAR] = ACTIONS(2783), - [anon_sym_LBRACK] = ACTIONS(2783), - [anon_sym_void] = ACTIONS(2785), - [anon_sym_anyopaque] = ACTIONS(2785), - [anon_sym_bool] = ACTIONS(2785), - [anon_sym_int] = ACTIONS(2785), - [anon_sym_float] = ACTIONS(2785), - [anon_sym_range] = ACTIONS(2785), - [anon_sym_i8] = ACTIONS(2785), - [anon_sym_i16] = ACTIONS(2785), - [anon_sym_i32] = ACTIONS(2785), - [anon_sym_i64] = ACTIONS(2785), - [anon_sym_u8] = ACTIONS(2785), - [anon_sym_u16] = ACTIONS(2785), - [anon_sym_u32] = ACTIONS(2785), - [anon_sym_u64] = ACTIONS(2785), - [anon_sym_isize] = ACTIONS(2785), - [anon_sym_usize] = ACTIONS(2785), - [anon_sym_f32] = ACTIONS(2785), - [anon_sym_f64] = ACTIONS(2785), - [anon_sym_c_char] = ACTIONS(2785), - [anon_sym_c_schar] = ACTIONS(2785), - [anon_sym_c_uchar] = ACTIONS(2785), - [anon_sym_c_short] = ACTIONS(2785), - [anon_sym_c_ushort] = ACTIONS(2785), - [anon_sym_c_int] = ACTIONS(2785), - [anon_sym_c_uint] = ACTIONS(2785), - [anon_sym_c_long] = ACTIONS(2785), - [anon_sym_c_ulong] = ACTIONS(2785), - [anon_sym_c_longlong] = ACTIONS(2785), - [anon_sym_c_ulonglong] = ACTIONS(2785), - [anon_sym_c_float] = ACTIONS(2785), - [anon_sym_c_double] = ACTIONS(2785), - [anon_sym_c_longdouble] = ACTIONS(2785), - [anon_sym_return] = ACTIONS(2785), - [anon_sym_yield] = ACTIONS(2785), - [anon_sym_break] = ACTIONS(2785), - [anon_sym_continue] = ACTIONS(2785), - [anon_sym_defer] = ACTIONS(2785), - [anon_sym_errdefer] = ACTIONS(2785), - [anon_sym_if] = ACTIONS(2785), - [anon_sym_else] = ACTIONS(2785), - [anon_sym_while] = ACTIONS(2785), - [anon_sym_for] = ACTIONS(2785), - [anon_sym_match] = ACTIONS(2785), - [anon_sym_AMP] = ACTIONS(2783), - [anon_sym_try] = ACTIONS(2785), - [anon_sym_DOT] = ACTIONS(2783), - [anon_sym_true] = ACTIONS(2785), - [anon_sym_false] = ACTIONS(2785), - [sym_none] = ACTIONS(2785), - [sym_undefined] = ACTIONS(2785), - [sym_sink] = ACTIONS(2785), - [sym_integer] = ACTIONS(2785), - [sym_float] = ACTIONS(2783), - [anon_sym_DQUOTE] = ACTIONS(2783), - [sym_multiline_string] = ACTIONS(2783), - [sym_character] = ACTIONS(2783), + [ts_builtin_sym_end] = ACTIONS(2785), + [sym_identifier] = ACTIONS(2787), + [anon_sym_import] = ACTIONS(2787), + [anon_sym_func] = ACTIONS(2787), + [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_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_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_for] = ACTIONS(2787), + [anon_sym_match] = ACTIONS(2787), + [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(2783), + [sym__newline] = ACTIONS(2785), }, [STATE(1173)] = { - [ts_builtin_sym_end] = ACTIONS(2787), - [sym_identifier] = ACTIONS(2789), - [anon_sym_import] = ACTIONS(2789), - [anon_sym_func] = ACTIONS(2789), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_struct] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2787), - [anon_sym_RPAREN] = ACTIONS(2787), - [anon_sym_LBRACE] = ACTIONS(2787), - [anon_sym_RBRACE] = ACTIONS(2787), - [anon_sym_DASH] = ACTIONS(2787), - [anon_sym_DOLLAR] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(2787), - [anon_sym_void] = ACTIONS(2789), - [anon_sym_anyopaque] = ACTIONS(2789), - [anon_sym_bool] = ACTIONS(2789), - [anon_sym_int] = ACTIONS(2789), - [anon_sym_float] = ACTIONS(2789), - [anon_sym_range] = ACTIONS(2789), - [anon_sym_i8] = ACTIONS(2789), - [anon_sym_i16] = ACTIONS(2789), - [anon_sym_i32] = ACTIONS(2789), - [anon_sym_i64] = ACTIONS(2789), - [anon_sym_u8] = ACTIONS(2789), - [anon_sym_u16] = ACTIONS(2789), - [anon_sym_u32] = ACTIONS(2789), - [anon_sym_u64] = ACTIONS(2789), - [anon_sym_isize] = ACTIONS(2789), - [anon_sym_usize] = ACTIONS(2789), - [anon_sym_f32] = ACTIONS(2789), - [anon_sym_f64] = ACTIONS(2789), - [anon_sym_c_char] = ACTIONS(2789), - [anon_sym_c_schar] = ACTIONS(2789), - [anon_sym_c_uchar] = ACTIONS(2789), - [anon_sym_c_short] = ACTIONS(2789), - [anon_sym_c_ushort] = ACTIONS(2789), - [anon_sym_c_int] = ACTIONS(2789), - [anon_sym_c_uint] = ACTIONS(2789), - [anon_sym_c_long] = ACTIONS(2789), - [anon_sym_c_ulong] = ACTIONS(2789), - [anon_sym_c_longlong] = ACTIONS(2789), - [anon_sym_c_ulonglong] = ACTIONS(2789), - [anon_sym_c_float] = ACTIONS(2789), - [anon_sym_c_double] = ACTIONS(2789), - [anon_sym_c_longdouble] = ACTIONS(2789), - [anon_sym_return] = ACTIONS(2789), - [anon_sym_yield] = ACTIONS(2789), - [anon_sym_break] = ACTIONS(2789), - [anon_sym_continue] = ACTIONS(2789), - [anon_sym_defer] = ACTIONS(2789), - [anon_sym_errdefer] = ACTIONS(2789), - [anon_sym_if] = ACTIONS(2789), - [anon_sym_else] = ACTIONS(2789), - [anon_sym_while] = ACTIONS(2789), - [anon_sym_for] = ACTIONS(2789), - [anon_sym_match] = ACTIONS(2789), - [anon_sym_AMP] = ACTIONS(2787), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2787), - [anon_sym_true] = ACTIONS(2789), - [anon_sym_false] = ACTIONS(2789), - [sym_none] = ACTIONS(2789), - [sym_undefined] = ACTIONS(2789), - [sym_sink] = ACTIONS(2789), - [sym_integer] = ACTIONS(2789), - [sym_float] = ACTIONS(2787), - [anon_sym_DQUOTE] = ACTIONS(2787), - [sym_multiline_string] = ACTIONS(2787), - [sym_character] = ACTIONS(2787), + [ts_builtin_sym_end] = ACTIONS(2789), + [sym_identifier] = ACTIONS(2791), + [anon_sym_import] = 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_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_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(2787), + [sym__newline] = ACTIONS(2789), }, [STATE(1174)] = { - [ts_builtin_sym_end] = ACTIONS(2791), - [sym_identifier] = ACTIONS(2793), - [anon_sym_import] = ACTIONS(2793), - [anon_sym_func] = ACTIONS(2793), - [anon_sym_BANG] = ACTIONS(2791), - [anon_sym_struct] = ACTIONS(2793), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_DASH] = ACTIONS(2791), - [anon_sym_DOLLAR] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_void] = ACTIONS(2793), - [anon_sym_anyopaque] = ACTIONS(2793), - [anon_sym_bool] = ACTIONS(2793), - [anon_sym_int] = ACTIONS(2793), - [anon_sym_float] = ACTIONS(2793), - [anon_sym_range] = ACTIONS(2793), - [anon_sym_i8] = ACTIONS(2793), - [anon_sym_i16] = ACTIONS(2793), - [anon_sym_i32] = ACTIONS(2793), - [anon_sym_i64] = ACTIONS(2793), - [anon_sym_u8] = ACTIONS(2793), - [anon_sym_u16] = ACTIONS(2793), - [anon_sym_u32] = ACTIONS(2793), - [anon_sym_u64] = ACTIONS(2793), - [anon_sym_isize] = ACTIONS(2793), - [anon_sym_usize] = ACTIONS(2793), - [anon_sym_f32] = ACTIONS(2793), - [anon_sym_f64] = ACTIONS(2793), - [anon_sym_c_char] = ACTIONS(2793), - [anon_sym_c_schar] = ACTIONS(2793), - [anon_sym_c_uchar] = ACTIONS(2793), - [anon_sym_c_short] = ACTIONS(2793), - [anon_sym_c_ushort] = ACTIONS(2793), - [anon_sym_c_int] = ACTIONS(2793), - [anon_sym_c_uint] = ACTIONS(2793), - [anon_sym_c_long] = ACTIONS(2793), - [anon_sym_c_ulong] = ACTIONS(2793), - [anon_sym_c_longlong] = ACTIONS(2793), - [anon_sym_c_ulonglong] = ACTIONS(2793), - [anon_sym_c_float] = ACTIONS(2793), - [anon_sym_c_double] = ACTIONS(2793), - [anon_sym_c_longdouble] = ACTIONS(2793), - [anon_sym_return] = ACTIONS(2793), - [anon_sym_yield] = ACTIONS(2793), - [anon_sym_break] = ACTIONS(2793), - [anon_sym_continue] = ACTIONS(2793), - [anon_sym_defer] = ACTIONS(2793), - [anon_sym_errdefer] = ACTIONS(2793), - [anon_sym_if] = ACTIONS(2793), - [anon_sym_else] = ACTIONS(2793), - [anon_sym_while] = ACTIONS(2793), - [anon_sym_for] = ACTIONS(2793), - [anon_sym_match] = ACTIONS(2793), - [anon_sym_AMP] = ACTIONS(2791), - [anon_sym_try] = ACTIONS(2793), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(2793), - [anon_sym_false] = ACTIONS(2793), - [sym_none] = ACTIONS(2793), - [sym_undefined] = ACTIONS(2793), - [sym_sink] = ACTIONS(2793), - [sym_integer] = ACTIONS(2793), - [sym_float] = ACTIONS(2791), - [anon_sym_DQUOTE] = ACTIONS(2791), - [sym_multiline_string] = ACTIONS(2791), - [sym_character] = ACTIONS(2791), + [ts_builtin_sym_end] = ACTIONS(2793), + [sym_identifier] = ACTIONS(2795), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2791), + [sym__newline] = ACTIONS(2793), }, [STATE(1175)] = { - [ts_builtin_sym_end] = ACTIONS(2795), - [sym_identifier] = ACTIONS(2797), - [anon_sym_import] = ACTIONS(2797), - [anon_sym_func] = ACTIONS(2797), - [anon_sym_BANG] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2795), - [anon_sym_RPAREN] = ACTIONS(2795), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_RBRACE] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_DOLLAR] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2795), - [anon_sym_void] = ACTIONS(2797), - [anon_sym_anyopaque] = ACTIONS(2797), - [anon_sym_bool] = ACTIONS(2797), - [anon_sym_int] = ACTIONS(2797), - [anon_sym_float] = ACTIONS(2797), - [anon_sym_range] = ACTIONS(2797), - [anon_sym_i8] = ACTIONS(2797), - [anon_sym_i16] = ACTIONS(2797), - [anon_sym_i32] = ACTIONS(2797), - [anon_sym_i64] = ACTIONS(2797), - [anon_sym_u8] = ACTIONS(2797), - [anon_sym_u16] = ACTIONS(2797), - [anon_sym_u32] = ACTIONS(2797), - [anon_sym_u64] = ACTIONS(2797), - [anon_sym_isize] = ACTIONS(2797), - [anon_sym_usize] = ACTIONS(2797), - [anon_sym_f32] = ACTIONS(2797), - [anon_sym_f64] = ACTIONS(2797), - [anon_sym_c_char] = ACTIONS(2797), - [anon_sym_c_schar] = ACTIONS(2797), - [anon_sym_c_uchar] = ACTIONS(2797), - [anon_sym_c_short] = ACTIONS(2797), - [anon_sym_c_ushort] = ACTIONS(2797), - [anon_sym_c_int] = ACTIONS(2797), - [anon_sym_c_uint] = ACTIONS(2797), - [anon_sym_c_long] = ACTIONS(2797), - [anon_sym_c_ulong] = ACTIONS(2797), - [anon_sym_c_longlong] = ACTIONS(2797), - [anon_sym_c_ulonglong] = ACTIONS(2797), - [anon_sym_c_float] = ACTIONS(2797), - [anon_sym_c_double] = ACTIONS(2797), - [anon_sym_c_longdouble] = ACTIONS(2797), - [anon_sym_return] = ACTIONS(2797), - [anon_sym_yield] = ACTIONS(2797), - [anon_sym_break] = ACTIONS(2797), - [anon_sym_continue] = ACTIONS(2797), - [anon_sym_defer] = ACTIONS(2797), - [anon_sym_errdefer] = ACTIONS(2797), - [anon_sym_if] = ACTIONS(2797), - [anon_sym_else] = ACTIONS(2797), - [anon_sym_while] = ACTIONS(2797), - [anon_sym_for] = ACTIONS(2797), - [anon_sym_match] = ACTIONS(2797), - [anon_sym_AMP] = ACTIONS(2795), - [anon_sym_try] = ACTIONS(2797), - [anon_sym_DOT] = ACTIONS(2795), - [anon_sym_true] = ACTIONS(2797), - [anon_sym_false] = ACTIONS(2797), - [sym_none] = ACTIONS(2797), - [sym_undefined] = ACTIONS(2797), - [sym_sink] = ACTIONS(2797), - [sym_integer] = ACTIONS(2797), - [sym_float] = ACTIONS(2795), - [anon_sym_DQUOTE] = ACTIONS(2795), - [sym_multiline_string] = ACTIONS(2795), - [sym_character] = ACTIONS(2795), + [ts_builtin_sym_end] = ACTIONS(2797), + [sym_identifier] = ACTIONS(2799), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2795), + [sym__newline] = ACTIONS(2797), }, [STATE(1176)] = { - [ts_builtin_sym_end] = ACTIONS(2799), - [sym_identifier] = ACTIONS(2801), - [anon_sym_import] = ACTIONS(2801), - [anon_sym_func] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2799), - [anon_sym_struct] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2799), - [anon_sym_RPAREN] = ACTIONS(2799), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2799), - [anon_sym_DOLLAR] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_void] = ACTIONS(2801), - [anon_sym_anyopaque] = ACTIONS(2801), - [anon_sym_bool] = ACTIONS(2801), - [anon_sym_int] = ACTIONS(2801), - [anon_sym_float] = ACTIONS(2801), - [anon_sym_range] = ACTIONS(2801), - [anon_sym_i8] = ACTIONS(2801), - [anon_sym_i16] = ACTIONS(2801), - [anon_sym_i32] = ACTIONS(2801), - [anon_sym_i64] = ACTIONS(2801), - [anon_sym_u8] = ACTIONS(2801), - [anon_sym_u16] = ACTIONS(2801), - [anon_sym_u32] = ACTIONS(2801), - [anon_sym_u64] = ACTIONS(2801), - [anon_sym_isize] = ACTIONS(2801), - [anon_sym_usize] = ACTIONS(2801), - [anon_sym_f32] = ACTIONS(2801), - [anon_sym_f64] = ACTIONS(2801), - [anon_sym_c_char] = ACTIONS(2801), - [anon_sym_c_schar] = ACTIONS(2801), - [anon_sym_c_uchar] = ACTIONS(2801), - [anon_sym_c_short] = ACTIONS(2801), - [anon_sym_c_ushort] = ACTIONS(2801), - [anon_sym_c_int] = ACTIONS(2801), - [anon_sym_c_uint] = ACTIONS(2801), - [anon_sym_c_long] = ACTIONS(2801), - [anon_sym_c_ulong] = ACTIONS(2801), - [anon_sym_c_longlong] = ACTIONS(2801), - [anon_sym_c_ulonglong] = ACTIONS(2801), - [anon_sym_c_float] = ACTIONS(2801), - [anon_sym_c_double] = ACTIONS(2801), - [anon_sym_c_longdouble] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2801), - [anon_sym_yield] = ACTIONS(2801), - [anon_sym_break] = ACTIONS(2801), - [anon_sym_continue] = ACTIONS(2801), - [anon_sym_defer] = ACTIONS(2801), - [anon_sym_errdefer] = ACTIONS(2801), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_else] = ACTIONS(2801), - [anon_sym_while] = ACTIONS(2801), - [anon_sym_for] = ACTIONS(2801), - [anon_sym_match] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2799), - [anon_sym_try] = ACTIONS(2801), - [anon_sym_DOT] = ACTIONS(2799), - [anon_sym_true] = ACTIONS(2801), - [anon_sym_false] = ACTIONS(2801), - [sym_none] = ACTIONS(2801), - [sym_undefined] = ACTIONS(2801), - [sym_sink] = ACTIONS(2801), - [sym_integer] = ACTIONS(2801), - [sym_float] = ACTIONS(2799), - [anon_sym_DQUOTE] = ACTIONS(2799), - [sym_multiline_string] = ACTIONS(2799), - [sym_character] = ACTIONS(2799), + [ts_builtin_sym_end] = ACTIONS(2801), + [sym_identifier] = ACTIONS(2803), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2799), + [sym__newline] = ACTIONS(2801), }, [STATE(1177)] = { - [ts_builtin_sym_end] = ACTIONS(2803), - [sym_identifier] = ACTIONS(2805), - [anon_sym_import] = ACTIONS(2805), - [anon_sym_func] = ACTIONS(2805), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2805), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_RPAREN] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_RBRACE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2803), - [anon_sym_DOLLAR] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_void] = ACTIONS(2805), - [anon_sym_anyopaque] = ACTIONS(2805), - [anon_sym_bool] = ACTIONS(2805), - [anon_sym_int] = ACTIONS(2805), - [anon_sym_float] = ACTIONS(2805), - [anon_sym_range] = ACTIONS(2805), - [anon_sym_i8] = ACTIONS(2805), - [anon_sym_i16] = ACTIONS(2805), - [anon_sym_i32] = ACTIONS(2805), - [anon_sym_i64] = ACTIONS(2805), - [anon_sym_u8] = ACTIONS(2805), - [anon_sym_u16] = ACTIONS(2805), - [anon_sym_u32] = ACTIONS(2805), - [anon_sym_u64] = ACTIONS(2805), - [anon_sym_isize] = ACTIONS(2805), - [anon_sym_usize] = ACTIONS(2805), - [anon_sym_f32] = ACTIONS(2805), - [anon_sym_f64] = ACTIONS(2805), - [anon_sym_c_char] = ACTIONS(2805), - [anon_sym_c_schar] = ACTIONS(2805), - [anon_sym_c_uchar] = ACTIONS(2805), - [anon_sym_c_short] = ACTIONS(2805), - [anon_sym_c_ushort] = ACTIONS(2805), - [anon_sym_c_int] = ACTIONS(2805), - [anon_sym_c_uint] = ACTIONS(2805), - [anon_sym_c_long] = ACTIONS(2805), - [anon_sym_c_ulong] = ACTIONS(2805), - [anon_sym_c_longlong] = ACTIONS(2805), - [anon_sym_c_ulonglong] = ACTIONS(2805), - [anon_sym_c_float] = ACTIONS(2805), - [anon_sym_c_double] = ACTIONS(2805), - [anon_sym_c_longdouble] = ACTIONS(2805), - [anon_sym_return] = ACTIONS(2805), - [anon_sym_yield] = ACTIONS(2805), - [anon_sym_break] = ACTIONS(2805), - [anon_sym_continue] = ACTIONS(2805), - [anon_sym_defer] = ACTIONS(2805), - [anon_sym_errdefer] = ACTIONS(2805), - [anon_sym_if] = ACTIONS(2805), - [anon_sym_else] = ACTIONS(2805), - [anon_sym_while] = ACTIONS(2805), - [anon_sym_for] = ACTIONS(2805), - [anon_sym_match] = ACTIONS(2805), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_try] = ACTIONS(2805), - [anon_sym_DOT] = ACTIONS(2803), - [anon_sym_true] = ACTIONS(2805), - [anon_sym_false] = ACTIONS(2805), - [sym_none] = ACTIONS(2805), - [sym_undefined] = ACTIONS(2805), - [sym_sink] = ACTIONS(2805), - [sym_integer] = ACTIONS(2805), - [sym_float] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym_multiline_string] = ACTIONS(2803), - [sym_character] = ACTIONS(2803), + [ts_builtin_sym_end] = ACTIONS(2805), + [sym_identifier] = ACTIONS(2807), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2803), + [sym__newline] = ACTIONS(2805), }, [STATE(1178)] = { - [ts_builtin_sym_end] = ACTIONS(2807), - [sym_identifier] = ACTIONS(2809), - [anon_sym_import] = ACTIONS(2809), - [anon_sym_func] = ACTIONS(2809), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_struct] = ACTIONS(2809), - [anon_sym_LPAREN] = ACTIONS(2807), - [anon_sym_RPAREN] = ACTIONS(2807), - [anon_sym_LBRACE] = ACTIONS(2807), - [anon_sym_RBRACE] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_DOLLAR] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_void] = ACTIONS(2809), - [anon_sym_anyopaque] = ACTIONS(2809), - [anon_sym_bool] = ACTIONS(2809), - [anon_sym_int] = ACTIONS(2809), - [anon_sym_float] = ACTIONS(2809), - [anon_sym_range] = ACTIONS(2809), - [anon_sym_i8] = ACTIONS(2809), - [anon_sym_i16] = ACTIONS(2809), - [anon_sym_i32] = ACTIONS(2809), - [anon_sym_i64] = ACTIONS(2809), - [anon_sym_u8] = ACTIONS(2809), - [anon_sym_u16] = ACTIONS(2809), - [anon_sym_u32] = ACTIONS(2809), - [anon_sym_u64] = ACTIONS(2809), - [anon_sym_isize] = ACTIONS(2809), - [anon_sym_usize] = ACTIONS(2809), - [anon_sym_f32] = ACTIONS(2809), - [anon_sym_f64] = ACTIONS(2809), - [anon_sym_c_char] = ACTIONS(2809), - [anon_sym_c_schar] = ACTIONS(2809), - [anon_sym_c_uchar] = ACTIONS(2809), - [anon_sym_c_short] = ACTIONS(2809), - [anon_sym_c_ushort] = ACTIONS(2809), - [anon_sym_c_int] = ACTIONS(2809), - [anon_sym_c_uint] = ACTIONS(2809), - [anon_sym_c_long] = ACTIONS(2809), - [anon_sym_c_ulong] = ACTIONS(2809), - [anon_sym_c_longlong] = ACTIONS(2809), - [anon_sym_c_ulonglong] = ACTIONS(2809), - [anon_sym_c_float] = ACTIONS(2809), - [anon_sym_c_double] = ACTIONS(2809), - [anon_sym_c_longdouble] = ACTIONS(2809), - [anon_sym_return] = ACTIONS(2809), - [anon_sym_yield] = ACTIONS(2809), - [anon_sym_break] = ACTIONS(2809), - [anon_sym_continue] = ACTIONS(2809), - [anon_sym_defer] = ACTIONS(2809), - [anon_sym_errdefer] = ACTIONS(2809), - [anon_sym_if] = ACTIONS(2809), - [anon_sym_else] = ACTIONS(2809), - [anon_sym_while] = ACTIONS(2809), - [anon_sym_for] = ACTIONS(2809), - [anon_sym_match] = ACTIONS(2809), - [anon_sym_AMP] = ACTIONS(2807), - [anon_sym_try] = ACTIONS(2809), - [anon_sym_DOT] = ACTIONS(2807), - [anon_sym_true] = ACTIONS(2809), - [anon_sym_false] = ACTIONS(2809), - [sym_none] = ACTIONS(2809), - [sym_undefined] = ACTIONS(2809), - [sym_sink] = ACTIONS(2809), - [sym_integer] = ACTIONS(2809), - [sym_float] = ACTIONS(2807), - [anon_sym_DQUOTE] = ACTIONS(2807), - [sym_multiline_string] = ACTIONS(2807), - [sym_character] = ACTIONS(2807), + [ts_builtin_sym_end] = ACTIONS(2809), + [sym_identifier] = ACTIONS(2811), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2807), + [sym__newline] = ACTIONS(2809), }, [STATE(1179)] = { - [ts_builtin_sym_end] = ACTIONS(2811), - [sym_identifier] = ACTIONS(2813), - [anon_sym_import] = ACTIONS(2813), - [anon_sym_func] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(2811), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_RPAREN] = ACTIONS(2811), - [anon_sym_LBRACE] = ACTIONS(2811), - [anon_sym_RBRACE] = ACTIONS(2811), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_DOLLAR] = ACTIONS(2811), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_void] = ACTIONS(2813), - [anon_sym_anyopaque] = ACTIONS(2813), - [anon_sym_bool] = ACTIONS(2813), - [anon_sym_int] = ACTIONS(2813), - [anon_sym_float] = ACTIONS(2813), - [anon_sym_range] = ACTIONS(2813), - [anon_sym_i8] = ACTIONS(2813), - [anon_sym_i16] = ACTIONS(2813), - [anon_sym_i32] = ACTIONS(2813), - [anon_sym_i64] = ACTIONS(2813), - [anon_sym_u8] = ACTIONS(2813), - [anon_sym_u16] = ACTIONS(2813), - [anon_sym_u32] = ACTIONS(2813), - [anon_sym_u64] = ACTIONS(2813), - [anon_sym_isize] = ACTIONS(2813), - [anon_sym_usize] = ACTIONS(2813), - [anon_sym_f32] = ACTIONS(2813), - [anon_sym_f64] = ACTIONS(2813), - [anon_sym_c_char] = ACTIONS(2813), - [anon_sym_c_schar] = ACTIONS(2813), - [anon_sym_c_uchar] = ACTIONS(2813), - [anon_sym_c_short] = ACTIONS(2813), - [anon_sym_c_ushort] = ACTIONS(2813), - [anon_sym_c_int] = ACTIONS(2813), - [anon_sym_c_uint] = ACTIONS(2813), - [anon_sym_c_long] = ACTIONS(2813), - [anon_sym_c_ulong] = ACTIONS(2813), - [anon_sym_c_longlong] = ACTIONS(2813), - [anon_sym_c_ulonglong] = ACTIONS(2813), - [anon_sym_c_float] = ACTIONS(2813), - [anon_sym_c_double] = ACTIONS(2813), - [anon_sym_c_longdouble] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2813), - [anon_sym_yield] = ACTIONS(2813), - [anon_sym_break] = ACTIONS(2813), - [anon_sym_continue] = ACTIONS(2813), - [anon_sym_defer] = ACTIONS(2813), - [anon_sym_errdefer] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_else] = ACTIONS(2813), - [anon_sym_while] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_match] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_try] = ACTIONS(2813), - [anon_sym_DOT] = ACTIONS(2811), - [anon_sym_true] = ACTIONS(2813), - [anon_sym_false] = ACTIONS(2813), - [sym_none] = ACTIONS(2813), - [sym_undefined] = ACTIONS(2813), - [sym_sink] = ACTIONS(2813), - [sym_integer] = ACTIONS(2813), - [sym_float] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(2811), - [sym_multiline_string] = ACTIONS(2811), - [sym_character] = ACTIONS(2811), + [ts_builtin_sym_end] = ACTIONS(2813), + [sym_identifier] = ACTIONS(2815), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2811), + [sym__newline] = ACTIONS(2813), }, [STATE(1180)] = { - [ts_builtin_sym_end] = ACTIONS(2815), - [sym_identifier] = ACTIONS(2817), - [anon_sym_import] = ACTIONS(2817), - [anon_sym_func] = ACTIONS(2817), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(2817), - [anon_sym_LPAREN] = ACTIONS(2815), - [anon_sym_RPAREN] = ACTIONS(2815), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_RBRACE] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_DOLLAR] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2815), - [anon_sym_void] = ACTIONS(2817), - [anon_sym_anyopaque] = ACTIONS(2817), - [anon_sym_bool] = ACTIONS(2817), - [anon_sym_int] = ACTIONS(2817), - [anon_sym_float] = ACTIONS(2817), - [anon_sym_range] = ACTIONS(2817), - [anon_sym_i8] = ACTIONS(2817), - [anon_sym_i16] = ACTIONS(2817), - [anon_sym_i32] = ACTIONS(2817), - [anon_sym_i64] = ACTIONS(2817), - [anon_sym_u8] = ACTIONS(2817), - [anon_sym_u16] = ACTIONS(2817), - [anon_sym_u32] = ACTIONS(2817), - [anon_sym_u64] = ACTIONS(2817), - [anon_sym_isize] = ACTIONS(2817), - [anon_sym_usize] = ACTIONS(2817), - [anon_sym_f32] = ACTIONS(2817), - [anon_sym_f64] = ACTIONS(2817), - [anon_sym_c_char] = ACTIONS(2817), - [anon_sym_c_schar] = ACTIONS(2817), - [anon_sym_c_uchar] = ACTIONS(2817), - [anon_sym_c_short] = ACTIONS(2817), - [anon_sym_c_ushort] = ACTIONS(2817), - [anon_sym_c_int] = ACTIONS(2817), - [anon_sym_c_uint] = ACTIONS(2817), - [anon_sym_c_long] = ACTIONS(2817), - [anon_sym_c_ulong] = ACTIONS(2817), - [anon_sym_c_longlong] = ACTIONS(2817), - [anon_sym_c_ulonglong] = ACTIONS(2817), - [anon_sym_c_float] = ACTIONS(2817), - [anon_sym_c_double] = ACTIONS(2817), - [anon_sym_c_longdouble] = ACTIONS(2817), - [anon_sym_return] = ACTIONS(2817), - [anon_sym_yield] = ACTIONS(2817), - [anon_sym_break] = ACTIONS(2817), - [anon_sym_continue] = ACTIONS(2817), - [anon_sym_defer] = ACTIONS(2817), - [anon_sym_errdefer] = ACTIONS(2817), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_else] = ACTIONS(2817), - [anon_sym_while] = ACTIONS(2817), - [anon_sym_for] = ACTIONS(2817), - [anon_sym_match] = ACTIONS(2817), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_try] = ACTIONS(2817), - [anon_sym_DOT] = ACTIONS(2815), - [anon_sym_true] = ACTIONS(2817), - [anon_sym_false] = ACTIONS(2817), - [sym_none] = ACTIONS(2817), - [sym_undefined] = ACTIONS(2817), - [sym_sink] = ACTIONS(2817), - [sym_integer] = ACTIONS(2817), - [sym_float] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [sym_multiline_string] = ACTIONS(2815), - [sym_character] = ACTIONS(2815), + [ts_builtin_sym_end] = ACTIONS(2817), + [sym_identifier] = ACTIONS(2819), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2815), + [sym__newline] = ACTIONS(2817), }, [STATE(1181)] = { - [ts_builtin_sym_end] = ACTIONS(2819), - [sym_identifier] = ACTIONS(2821), - [anon_sym_import] = ACTIONS(2821), - [anon_sym_func] = ACTIONS(2821), - [anon_sym_BANG] = ACTIONS(2819), - [anon_sym_struct] = ACTIONS(2821), - [anon_sym_LPAREN] = ACTIONS(2819), - [anon_sym_RPAREN] = ACTIONS(2819), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_RBRACE] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(2819), - [anon_sym_DOLLAR] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(2819), - [anon_sym_void] = ACTIONS(2821), - [anon_sym_anyopaque] = ACTIONS(2821), - [anon_sym_bool] = ACTIONS(2821), - [anon_sym_int] = ACTIONS(2821), - [anon_sym_float] = ACTIONS(2821), - [anon_sym_range] = ACTIONS(2821), - [anon_sym_i8] = ACTIONS(2821), - [anon_sym_i16] = ACTIONS(2821), - [anon_sym_i32] = ACTIONS(2821), - [anon_sym_i64] = ACTIONS(2821), - [anon_sym_u8] = ACTIONS(2821), - [anon_sym_u16] = ACTIONS(2821), - [anon_sym_u32] = ACTIONS(2821), - [anon_sym_u64] = ACTIONS(2821), - [anon_sym_isize] = ACTIONS(2821), - [anon_sym_usize] = ACTIONS(2821), - [anon_sym_f32] = ACTIONS(2821), - [anon_sym_f64] = ACTIONS(2821), - [anon_sym_c_char] = ACTIONS(2821), - [anon_sym_c_schar] = ACTIONS(2821), - [anon_sym_c_uchar] = ACTIONS(2821), - [anon_sym_c_short] = ACTIONS(2821), - [anon_sym_c_ushort] = ACTIONS(2821), - [anon_sym_c_int] = ACTIONS(2821), - [anon_sym_c_uint] = ACTIONS(2821), - [anon_sym_c_long] = ACTIONS(2821), - [anon_sym_c_ulong] = ACTIONS(2821), - [anon_sym_c_longlong] = ACTIONS(2821), - [anon_sym_c_ulonglong] = ACTIONS(2821), - [anon_sym_c_float] = ACTIONS(2821), - [anon_sym_c_double] = ACTIONS(2821), - [anon_sym_c_longdouble] = ACTIONS(2821), - [anon_sym_return] = ACTIONS(2821), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_break] = ACTIONS(2821), - [anon_sym_continue] = ACTIONS(2821), - [anon_sym_defer] = ACTIONS(2821), - [anon_sym_errdefer] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2821), - [anon_sym_else] = ACTIONS(2821), - [anon_sym_while] = ACTIONS(2821), - [anon_sym_for] = ACTIONS(2821), - [anon_sym_match] = ACTIONS(2821), - [anon_sym_AMP] = ACTIONS(2819), - [anon_sym_try] = ACTIONS(2821), - [anon_sym_DOT] = ACTIONS(2819), - [anon_sym_true] = ACTIONS(2821), - [anon_sym_false] = ACTIONS(2821), - [sym_none] = ACTIONS(2821), - [sym_undefined] = ACTIONS(2821), - [sym_sink] = ACTIONS(2821), - [sym_integer] = ACTIONS(2821), - [sym_float] = ACTIONS(2819), - [anon_sym_DQUOTE] = ACTIONS(2819), - [sym_multiline_string] = ACTIONS(2819), - [sym_character] = ACTIONS(2819), + [ts_builtin_sym_end] = ACTIONS(2821), + [sym_identifier] = ACTIONS(2823), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2819), + [sym__newline] = ACTIONS(2821), }, [STATE(1182)] = { - [ts_builtin_sym_end] = ACTIONS(2823), - [sym_identifier] = ACTIONS(2825), - [anon_sym_import] = ACTIONS(2825), - [anon_sym_func] = ACTIONS(2825), - [anon_sym_BANG] = ACTIONS(2823), - [anon_sym_struct] = ACTIONS(2825), - [anon_sym_LPAREN] = ACTIONS(2823), - [anon_sym_RPAREN] = ACTIONS(2823), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_RBRACE] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2823), - [anon_sym_DOLLAR] = ACTIONS(2823), - [anon_sym_LBRACK] = ACTIONS(2823), - [anon_sym_void] = ACTIONS(2825), - [anon_sym_anyopaque] = ACTIONS(2825), - [anon_sym_bool] = ACTIONS(2825), - [anon_sym_int] = ACTIONS(2825), - [anon_sym_float] = ACTIONS(2825), - [anon_sym_range] = ACTIONS(2825), - [anon_sym_i8] = ACTIONS(2825), - [anon_sym_i16] = ACTIONS(2825), - [anon_sym_i32] = ACTIONS(2825), - [anon_sym_i64] = ACTIONS(2825), - [anon_sym_u8] = ACTIONS(2825), - [anon_sym_u16] = ACTIONS(2825), - [anon_sym_u32] = ACTIONS(2825), - [anon_sym_u64] = ACTIONS(2825), - [anon_sym_isize] = ACTIONS(2825), - [anon_sym_usize] = ACTIONS(2825), - [anon_sym_f32] = ACTIONS(2825), - [anon_sym_f64] = ACTIONS(2825), - [anon_sym_c_char] = ACTIONS(2825), - [anon_sym_c_schar] = ACTIONS(2825), - [anon_sym_c_uchar] = ACTIONS(2825), - [anon_sym_c_short] = ACTIONS(2825), - [anon_sym_c_ushort] = ACTIONS(2825), - [anon_sym_c_int] = ACTIONS(2825), - [anon_sym_c_uint] = ACTIONS(2825), - [anon_sym_c_long] = ACTIONS(2825), - [anon_sym_c_ulong] = ACTIONS(2825), - [anon_sym_c_longlong] = ACTIONS(2825), - [anon_sym_c_ulonglong] = ACTIONS(2825), - [anon_sym_c_float] = ACTIONS(2825), - [anon_sym_c_double] = ACTIONS(2825), - [anon_sym_c_longdouble] = ACTIONS(2825), - [anon_sym_return] = ACTIONS(2825), - [anon_sym_yield] = ACTIONS(2825), - [anon_sym_break] = ACTIONS(2825), - [anon_sym_continue] = ACTIONS(2825), - [anon_sym_defer] = ACTIONS(2825), - [anon_sym_errdefer] = ACTIONS(2825), - [anon_sym_if] = ACTIONS(2825), - [anon_sym_else] = ACTIONS(2825), - [anon_sym_while] = ACTIONS(2825), - [anon_sym_for] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2825), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_try] = ACTIONS(2825), - [anon_sym_DOT] = ACTIONS(2823), - [anon_sym_true] = ACTIONS(2825), - [anon_sym_false] = ACTIONS(2825), - [sym_none] = ACTIONS(2825), - [sym_undefined] = ACTIONS(2825), - [sym_sink] = ACTIONS(2825), - [sym_integer] = ACTIONS(2825), - [sym_float] = ACTIONS(2823), - [anon_sym_DQUOTE] = ACTIONS(2823), - [sym_multiline_string] = ACTIONS(2823), - [sym_character] = ACTIONS(2823), + [ts_builtin_sym_end] = ACTIONS(2825), + [sym_identifier] = ACTIONS(2827), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2823), + [sym__newline] = ACTIONS(2825), }, [STATE(1183)] = { - [ts_builtin_sym_end] = ACTIONS(2827), - [sym_identifier] = ACTIONS(2829), - [anon_sym_import] = ACTIONS(2829), - [anon_sym_func] = ACTIONS(2829), - [anon_sym_BANG] = ACTIONS(2827), - [anon_sym_struct] = ACTIONS(2829), - [anon_sym_LPAREN] = ACTIONS(2827), - [anon_sym_RPAREN] = ACTIONS(2827), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_RBRACE] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_DOLLAR] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2827), - [anon_sym_void] = ACTIONS(2829), - [anon_sym_anyopaque] = ACTIONS(2829), - [anon_sym_bool] = ACTIONS(2829), - [anon_sym_int] = ACTIONS(2829), - [anon_sym_float] = ACTIONS(2829), - [anon_sym_range] = ACTIONS(2829), - [anon_sym_i8] = ACTIONS(2829), - [anon_sym_i16] = ACTIONS(2829), - [anon_sym_i32] = ACTIONS(2829), - [anon_sym_i64] = ACTIONS(2829), - [anon_sym_u8] = ACTIONS(2829), - [anon_sym_u16] = ACTIONS(2829), - [anon_sym_u32] = ACTIONS(2829), - [anon_sym_u64] = ACTIONS(2829), - [anon_sym_isize] = ACTIONS(2829), - [anon_sym_usize] = ACTIONS(2829), - [anon_sym_f32] = ACTIONS(2829), - [anon_sym_f64] = ACTIONS(2829), - [anon_sym_c_char] = ACTIONS(2829), - [anon_sym_c_schar] = ACTIONS(2829), - [anon_sym_c_uchar] = ACTIONS(2829), - [anon_sym_c_short] = ACTIONS(2829), - [anon_sym_c_ushort] = ACTIONS(2829), - [anon_sym_c_int] = ACTIONS(2829), - [anon_sym_c_uint] = ACTIONS(2829), - [anon_sym_c_long] = ACTIONS(2829), - [anon_sym_c_ulong] = ACTIONS(2829), - [anon_sym_c_longlong] = ACTIONS(2829), - [anon_sym_c_ulonglong] = ACTIONS(2829), - [anon_sym_c_float] = ACTIONS(2829), - [anon_sym_c_double] = ACTIONS(2829), - [anon_sym_c_longdouble] = ACTIONS(2829), - [anon_sym_return] = ACTIONS(2829), - [anon_sym_yield] = ACTIONS(2829), - [anon_sym_break] = ACTIONS(2829), - [anon_sym_continue] = ACTIONS(2829), - [anon_sym_defer] = ACTIONS(2829), - [anon_sym_errdefer] = ACTIONS(2829), - [anon_sym_if] = ACTIONS(2829), - [anon_sym_else] = ACTIONS(2829), - [anon_sym_while] = ACTIONS(2829), - [anon_sym_for] = ACTIONS(2829), - [anon_sym_match] = ACTIONS(2829), - [anon_sym_AMP] = ACTIONS(2827), - [anon_sym_try] = ACTIONS(2829), - [anon_sym_DOT] = ACTIONS(2827), - [anon_sym_true] = ACTIONS(2829), - [anon_sym_false] = ACTIONS(2829), - [sym_none] = ACTIONS(2829), - [sym_undefined] = ACTIONS(2829), - [sym_sink] = ACTIONS(2829), - [sym_integer] = ACTIONS(2829), - [sym_float] = ACTIONS(2827), - [anon_sym_DQUOTE] = ACTIONS(2827), - [sym_multiline_string] = ACTIONS(2827), - [sym_character] = ACTIONS(2827), + [ts_builtin_sym_end] = ACTIONS(2829), + [sym_identifier] = ACTIONS(2831), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2827), + [sym__newline] = ACTIONS(2829), }, [STATE(1184)] = { - [ts_builtin_sym_end] = ACTIONS(2831), - [sym_identifier] = ACTIONS(2833), - [anon_sym_import] = ACTIONS(2833), - [anon_sym_func] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2831), - [anon_sym_struct] = ACTIONS(2833), - [anon_sym_LPAREN] = ACTIONS(2831), - [anon_sym_RPAREN] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_RBRACE] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_DOLLAR] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2831), - [anon_sym_void] = ACTIONS(2833), - [anon_sym_anyopaque] = ACTIONS(2833), - [anon_sym_bool] = ACTIONS(2833), - [anon_sym_int] = ACTIONS(2833), - [anon_sym_float] = ACTIONS(2833), - [anon_sym_range] = ACTIONS(2833), - [anon_sym_i8] = ACTIONS(2833), - [anon_sym_i16] = ACTIONS(2833), - [anon_sym_i32] = ACTIONS(2833), - [anon_sym_i64] = ACTIONS(2833), - [anon_sym_u8] = ACTIONS(2833), - [anon_sym_u16] = ACTIONS(2833), - [anon_sym_u32] = ACTIONS(2833), - [anon_sym_u64] = ACTIONS(2833), - [anon_sym_isize] = ACTIONS(2833), - [anon_sym_usize] = ACTIONS(2833), - [anon_sym_f32] = ACTIONS(2833), - [anon_sym_f64] = ACTIONS(2833), - [anon_sym_c_char] = ACTIONS(2833), - [anon_sym_c_schar] = ACTIONS(2833), - [anon_sym_c_uchar] = ACTIONS(2833), - [anon_sym_c_short] = ACTIONS(2833), - [anon_sym_c_ushort] = ACTIONS(2833), - [anon_sym_c_int] = ACTIONS(2833), - [anon_sym_c_uint] = ACTIONS(2833), - [anon_sym_c_long] = ACTIONS(2833), - [anon_sym_c_ulong] = ACTIONS(2833), - [anon_sym_c_longlong] = ACTIONS(2833), - [anon_sym_c_ulonglong] = ACTIONS(2833), - [anon_sym_c_float] = ACTIONS(2833), - [anon_sym_c_double] = ACTIONS(2833), - [anon_sym_c_longdouble] = ACTIONS(2833), - [anon_sym_return] = ACTIONS(2833), - [anon_sym_yield] = ACTIONS(2833), - [anon_sym_break] = ACTIONS(2833), - [anon_sym_continue] = ACTIONS(2833), - [anon_sym_defer] = ACTIONS(2833), - [anon_sym_errdefer] = ACTIONS(2833), - [anon_sym_if] = ACTIONS(2833), - [anon_sym_else] = ACTIONS(2833), - [anon_sym_while] = ACTIONS(2833), - [anon_sym_for] = ACTIONS(2833), - [anon_sym_match] = ACTIONS(2833), - [anon_sym_AMP] = ACTIONS(2831), - [anon_sym_try] = ACTIONS(2833), - [anon_sym_DOT] = ACTIONS(2831), - [anon_sym_true] = ACTIONS(2833), - [anon_sym_false] = ACTIONS(2833), - [sym_none] = ACTIONS(2833), - [sym_undefined] = ACTIONS(2833), - [sym_sink] = ACTIONS(2833), - [sym_integer] = ACTIONS(2833), - [sym_float] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2831), - [sym_multiline_string] = ACTIONS(2831), - [sym_character] = ACTIONS(2831), + [ts_builtin_sym_end] = ACTIONS(2833), + [sym_identifier] = ACTIONS(2835), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2831), + [sym__newline] = ACTIONS(2833), }, [STATE(1185)] = { - [ts_builtin_sym_end] = ACTIONS(2835), - [sym_identifier] = ACTIONS(2837), - [anon_sym_import] = ACTIONS(2837), - [anon_sym_func] = ACTIONS(2837), - [anon_sym_BANG] = ACTIONS(2835), - [anon_sym_struct] = ACTIONS(2837), - [anon_sym_LPAREN] = ACTIONS(2835), - [anon_sym_RPAREN] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_RBRACE] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_DOLLAR] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_void] = ACTIONS(2837), - [anon_sym_anyopaque] = ACTIONS(2837), - [anon_sym_bool] = ACTIONS(2837), - [anon_sym_int] = ACTIONS(2837), - [anon_sym_float] = ACTIONS(2837), - [anon_sym_range] = ACTIONS(2837), - [anon_sym_i8] = ACTIONS(2837), - [anon_sym_i16] = ACTIONS(2837), - [anon_sym_i32] = ACTIONS(2837), - [anon_sym_i64] = ACTIONS(2837), - [anon_sym_u8] = ACTIONS(2837), - [anon_sym_u16] = ACTIONS(2837), - [anon_sym_u32] = ACTIONS(2837), - [anon_sym_u64] = ACTIONS(2837), - [anon_sym_isize] = ACTIONS(2837), - [anon_sym_usize] = ACTIONS(2837), - [anon_sym_f32] = ACTIONS(2837), - [anon_sym_f64] = ACTIONS(2837), - [anon_sym_c_char] = ACTIONS(2837), - [anon_sym_c_schar] = ACTIONS(2837), - [anon_sym_c_uchar] = ACTIONS(2837), - [anon_sym_c_short] = ACTIONS(2837), - [anon_sym_c_ushort] = ACTIONS(2837), - [anon_sym_c_int] = ACTIONS(2837), - [anon_sym_c_uint] = ACTIONS(2837), - [anon_sym_c_long] = ACTIONS(2837), - [anon_sym_c_ulong] = ACTIONS(2837), - [anon_sym_c_longlong] = ACTIONS(2837), - [anon_sym_c_ulonglong] = ACTIONS(2837), - [anon_sym_c_float] = ACTIONS(2837), - [anon_sym_c_double] = ACTIONS(2837), - [anon_sym_c_longdouble] = ACTIONS(2837), - [anon_sym_return] = ACTIONS(2837), - [anon_sym_yield] = ACTIONS(2837), - [anon_sym_break] = ACTIONS(2837), - [anon_sym_continue] = ACTIONS(2837), - [anon_sym_defer] = ACTIONS(2837), - [anon_sym_errdefer] = ACTIONS(2837), - [anon_sym_if] = ACTIONS(2837), - [anon_sym_else] = ACTIONS(2837), - [anon_sym_while] = ACTIONS(2837), - [anon_sym_for] = ACTIONS(2837), - [anon_sym_match] = ACTIONS(2837), - [anon_sym_AMP] = ACTIONS(2835), - [anon_sym_try] = ACTIONS(2837), - [anon_sym_DOT] = ACTIONS(2835), - [anon_sym_true] = ACTIONS(2837), - [anon_sym_false] = ACTIONS(2837), - [sym_none] = ACTIONS(2837), - [sym_undefined] = ACTIONS(2837), - [sym_sink] = ACTIONS(2837), - [sym_integer] = ACTIONS(2837), - [sym_float] = ACTIONS(2835), - [anon_sym_DQUOTE] = ACTIONS(2835), - [sym_multiline_string] = ACTIONS(2835), - [sym_character] = ACTIONS(2835), + [ts_builtin_sym_end] = ACTIONS(2837), + [sym_identifier] = ACTIONS(2839), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2835), + [sym__newline] = ACTIONS(2837), }, [STATE(1186)] = { - [ts_builtin_sym_end] = ACTIONS(2839), - [sym_identifier] = ACTIONS(2841), - [anon_sym_import] = ACTIONS(2841), - [anon_sym_func] = ACTIONS(2841), - [anon_sym_BANG] = ACTIONS(2839), - [anon_sym_struct] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2839), - [anon_sym_RPAREN] = ACTIONS(2839), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_RBRACE] = ACTIONS(2839), - [anon_sym_DASH] = ACTIONS(2839), - [anon_sym_DOLLAR] = ACTIONS(2839), - [anon_sym_LBRACK] = ACTIONS(2839), - [anon_sym_void] = ACTIONS(2841), - [anon_sym_anyopaque] = ACTIONS(2841), - [anon_sym_bool] = ACTIONS(2841), - [anon_sym_int] = ACTIONS(2841), - [anon_sym_float] = ACTIONS(2841), - [anon_sym_range] = ACTIONS(2841), - [anon_sym_i8] = ACTIONS(2841), - [anon_sym_i16] = ACTIONS(2841), - [anon_sym_i32] = ACTIONS(2841), - [anon_sym_i64] = ACTIONS(2841), - [anon_sym_u8] = ACTIONS(2841), - [anon_sym_u16] = ACTIONS(2841), - [anon_sym_u32] = ACTIONS(2841), - [anon_sym_u64] = ACTIONS(2841), - [anon_sym_isize] = ACTIONS(2841), - [anon_sym_usize] = ACTIONS(2841), - [anon_sym_f32] = ACTIONS(2841), - [anon_sym_f64] = ACTIONS(2841), - [anon_sym_c_char] = ACTIONS(2841), - [anon_sym_c_schar] = ACTIONS(2841), - [anon_sym_c_uchar] = ACTIONS(2841), - [anon_sym_c_short] = ACTIONS(2841), - [anon_sym_c_ushort] = ACTIONS(2841), - [anon_sym_c_int] = ACTIONS(2841), - [anon_sym_c_uint] = ACTIONS(2841), - [anon_sym_c_long] = ACTIONS(2841), - [anon_sym_c_ulong] = ACTIONS(2841), - [anon_sym_c_longlong] = ACTIONS(2841), - [anon_sym_c_ulonglong] = ACTIONS(2841), - [anon_sym_c_float] = ACTIONS(2841), - [anon_sym_c_double] = ACTIONS(2841), - [anon_sym_c_longdouble] = ACTIONS(2841), - [anon_sym_return] = ACTIONS(2841), - [anon_sym_yield] = ACTIONS(2841), - [anon_sym_break] = ACTIONS(2841), - [anon_sym_continue] = ACTIONS(2841), - [anon_sym_defer] = ACTIONS(2841), - [anon_sym_errdefer] = ACTIONS(2841), - [anon_sym_if] = ACTIONS(2841), - [anon_sym_else] = ACTIONS(2841), - [anon_sym_while] = ACTIONS(2841), - [anon_sym_for] = ACTIONS(2841), - [anon_sym_match] = ACTIONS(2841), - [anon_sym_AMP] = ACTIONS(2839), - [anon_sym_try] = ACTIONS(2841), - [anon_sym_DOT] = ACTIONS(2839), - [anon_sym_true] = ACTIONS(2841), - [anon_sym_false] = ACTIONS(2841), - [sym_none] = ACTIONS(2841), - [sym_undefined] = ACTIONS(2841), - [sym_sink] = ACTIONS(2841), - [sym_integer] = ACTIONS(2841), - [sym_float] = ACTIONS(2839), - [anon_sym_DQUOTE] = ACTIONS(2839), - [sym_multiline_string] = ACTIONS(2839), - [sym_character] = ACTIONS(2839), + [ts_builtin_sym_end] = ACTIONS(2841), + [sym_identifier] = ACTIONS(2843), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2839), + [sym__newline] = ACTIONS(2841), }, [STATE(1187)] = { - [ts_builtin_sym_end] = ACTIONS(2843), - [sym_identifier] = ACTIONS(2845), - [anon_sym_import] = ACTIONS(2845), - [anon_sym_func] = ACTIONS(2845), - [anon_sym_BANG] = ACTIONS(2843), - [anon_sym_struct] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_RPAREN] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_RBRACE] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_DOLLAR] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_void] = ACTIONS(2845), - [anon_sym_anyopaque] = ACTIONS(2845), - [anon_sym_bool] = ACTIONS(2845), - [anon_sym_int] = ACTIONS(2845), - [anon_sym_float] = ACTIONS(2845), - [anon_sym_range] = ACTIONS(2845), - [anon_sym_i8] = ACTIONS(2845), - [anon_sym_i16] = ACTIONS(2845), - [anon_sym_i32] = ACTIONS(2845), - [anon_sym_i64] = ACTIONS(2845), - [anon_sym_u8] = ACTIONS(2845), - [anon_sym_u16] = ACTIONS(2845), - [anon_sym_u32] = ACTIONS(2845), - [anon_sym_u64] = ACTIONS(2845), - [anon_sym_isize] = ACTIONS(2845), - [anon_sym_usize] = ACTIONS(2845), - [anon_sym_f32] = ACTIONS(2845), - [anon_sym_f64] = ACTIONS(2845), - [anon_sym_c_char] = ACTIONS(2845), - [anon_sym_c_schar] = ACTIONS(2845), - [anon_sym_c_uchar] = ACTIONS(2845), - [anon_sym_c_short] = ACTIONS(2845), - [anon_sym_c_ushort] = ACTIONS(2845), - [anon_sym_c_int] = ACTIONS(2845), - [anon_sym_c_uint] = ACTIONS(2845), - [anon_sym_c_long] = ACTIONS(2845), - [anon_sym_c_ulong] = ACTIONS(2845), - [anon_sym_c_longlong] = ACTIONS(2845), - [anon_sym_c_ulonglong] = ACTIONS(2845), - [anon_sym_c_float] = ACTIONS(2845), - [anon_sym_c_double] = ACTIONS(2845), - [anon_sym_c_longdouble] = ACTIONS(2845), - [anon_sym_return] = ACTIONS(2845), - [anon_sym_yield] = ACTIONS(2845), - [anon_sym_break] = ACTIONS(2845), - [anon_sym_continue] = ACTIONS(2845), - [anon_sym_defer] = ACTIONS(2845), - [anon_sym_errdefer] = ACTIONS(2845), - [anon_sym_if] = ACTIONS(2845), - [anon_sym_else] = ACTIONS(2845), - [anon_sym_while] = ACTIONS(2845), - [anon_sym_for] = ACTIONS(2845), - [anon_sym_match] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2845), - [anon_sym_DOT] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2845), - [anon_sym_false] = ACTIONS(2845), - [sym_none] = ACTIONS(2845), - [sym_undefined] = ACTIONS(2845), - [sym_sink] = ACTIONS(2845), - [sym_integer] = ACTIONS(2845), - [sym_float] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym_multiline_string] = ACTIONS(2843), - [sym_character] = ACTIONS(2843), + [ts_builtin_sym_end] = ACTIONS(2845), + [sym_identifier] = ACTIONS(2847), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2843), + [sym__newline] = ACTIONS(2845), }, [STATE(1188)] = { - [ts_builtin_sym_end] = ACTIONS(2847), - [sym_identifier] = ACTIONS(2849), - [anon_sym_import] = ACTIONS(2849), - [anon_sym_func] = ACTIONS(2849), - [anon_sym_BANG] = ACTIONS(2847), - [anon_sym_struct] = ACTIONS(2849), - [anon_sym_LPAREN] = ACTIONS(2847), - [anon_sym_RPAREN] = ACTIONS(2847), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_RBRACE] = ACTIONS(2847), - [anon_sym_DASH] = ACTIONS(2847), - [anon_sym_DOLLAR] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2847), - [anon_sym_void] = ACTIONS(2849), - [anon_sym_anyopaque] = ACTIONS(2849), - [anon_sym_bool] = ACTIONS(2849), - [anon_sym_int] = ACTIONS(2849), - [anon_sym_float] = ACTIONS(2849), - [anon_sym_range] = ACTIONS(2849), - [anon_sym_i8] = ACTIONS(2849), - [anon_sym_i16] = ACTIONS(2849), - [anon_sym_i32] = ACTIONS(2849), - [anon_sym_i64] = ACTIONS(2849), - [anon_sym_u8] = ACTIONS(2849), - [anon_sym_u16] = ACTIONS(2849), - [anon_sym_u32] = ACTIONS(2849), - [anon_sym_u64] = ACTIONS(2849), - [anon_sym_isize] = ACTIONS(2849), - [anon_sym_usize] = ACTIONS(2849), - [anon_sym_f32] = ACTIONS(2849), - [anon_sym_f64] = ACTIONS(2849), - [anon_sym_c_char] = ACTIONS(2849), - [anon_sym_c_schar] = ACTIONS(2849), - [anon_sym_c_uchar] = ACTIONS(2849), - [anon_sym_c_short] = ACTIONS(2849), - [anon_sym_c_ushort] = ACTIONS(2849), - [anon_sym_c_int] = ACTIONS(2849), - [anon_sym_c_uint] = ACTIONS(2849), - [anon_sym_c_long] = ACTIONS(2849), - [anon_sym_c_ulong] = ACTIONS(2849), - [anon_sym_c_longlong] = ACTIONS(2849), - [anon_sym_c_ulonglong] = ACTIONS(2849), - [anon_sym_c_float] = ACTIONS(2849), - [anon_sym_c_double] = ACTIONS(2849), - [anon_sym_c_longdouble] = ACTIONS(2849), - [anon_sym_return] = ACTIONS(2849), - [anon_sym_yield] = ACTIONS(2849), - [anon_sym_break] = ACTIONS(2849), - [anon_sym_continue] = ACTIONS(2849), - [anon_sym_defer] = ACTIONS(2849), - [anon_sym_errdefer] = ACTIONS(2849), - [anon_sym_if] = ACTIONS(2849), - [anon_sym_else] = ACTIONS(2849), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_for] = ACTIONS(2849), - [anon_sym_match] = ACTIONS(2849), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_try] = ACTIONS(2849), - [anon_sym_DOT] = ACTIONS(2847), - [anon_sym_true] = ACTIONS(2849), - [anon_sym_false] = ACTIONS(2849), - [sym_none] = ACTIONS(2849), - [sym_undefined] = ACTIONS(2849), - [sym_sink] = ACTIONS(2849), - [sym_integer] = ACTIONS(2849), - [sym_float] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2847), - [sym_multiline_string] = ACTIONS(2847), - [sym_character] = ACTIONS(2847), + [ts_builtin_sym_end] = ACTIONS(2849), + [sym_identifier] = ACTIONS(2851), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2847), + [sym__newline] = ACTIONS(2849), }, [STATE(1189)] = { - [ts_builtin_sym_end] = ACTIONS(2851), - [sym_identifier] = ACTIONS(2853), - [anon_sym_import] = ACTIONS(2853), - [anon_sym_func] = ACTIONS(2853), - [anon_sym_BANG] = ACTIONS(2851), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_LPAREN] = ACTIONS(2851), - [anon_sym_RPAREN] = ACTIONS(2851), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_RBRACE] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2851), - [anon_sym_DOLLAR] = ACTIONS(2851), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_void] = ACTIONS(2853), - [anon_sym_anyopaque] = ACTIONS(2853), - [anon_sym_bool] = ACTIONS(2853), - [anon_sym_int] = ACTIONS(2853), - [anon_sym_float] = ACTIONS(2853), - [anon_sym_range] = ACTIONS(2853), - [anon_sym_i8] = ACTIONS(2853), - [anon_sym_i16] = ACTIONS(2853), - [anon_sym_i32] = ACTIONS(2853), - [anon_sym_i64] = ACTIONS(2853), - [anon_sym_u8] = ACTIONS(2853), - [anon_sym_u16] = ACTIONS(2853), - [anon_sym_u32] = ACTIONS(2853), - [anon_sym_u64] = ACTIONS(2853), - [anon_sym_isize] = ACTIONS(2853), - [anon_sym_usize] = ACTIONS(2853), - [anon_sym_f32] = ACTIONS(2853), - [anon_sym_f64] = ACTIONS(2853), - [anon_sym_c_char] = ACTIONS(2853), - [anon_sym_c_schar] = ACTIONS(2853), - [anon_sym_c_uchar] = ACTIONS(2853), - [anon_sym_c_short] = ACTIONS(2853), - [anon_sym_c_ushort] = ACTIONS(2853), - [anon_sym_c_int] = ACTIONS(2853), - [anon_sym_c_uint] = ACTIONS(2853), - [anon_sym_c_long] = ACTIONS(2853), - [anon_sym_c_ulong] = ACTIONS(2853), - [anon_sym_c_longlong] = ACTIONS(2853), - [anon_sym_c_ulonglong] = ACTIONS(2853), - [anon_sym_c_float] = ACTIONS(2853), - [anon_sym_c_double] = ACTIONS(2853), - [anon_sym_c_longdouble] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_yield] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_defer] = ACTIONS(2853), - [anon_sym_errdefer] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_else] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2853), - [anon_sym_for] = ACTIONS(2853), - [anon_sym_match] = ACTIONS(2853), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_try] = ACTIONS(2853), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym_true] = ACTIONS(2853), - [anon_sym_false] = ACTIONS(2853), - [sym_none] = ACTIONS(2853), - [sym_undefined] = ACTIONS(2853), - [sym_sink] = ACTIONS(2853), - [sym_integer] = ACTIONS(2853), - [sym_float] = ACTIONS(2851), - [anon_sym_DQUOTE] = ACTIONS(2851), - [sym_multiline_string] = ACTIONS(2851), - [sym_character] = ACTIONS(2851), + [ts_builtin_sym_end] = ACTIONS(2853), + [sym_identifier] = ACTIONS(2855), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2851), + [sym__newline] = ACTIONS(2853), }, [STATE(1190)] = { - [ts_builtin_sym_end] = ACTIONS(2855), - [sym_identifier] = ACTIONS(2857), - [anon_sym_import] = ACTIONS(2857), - [anon_sym_func] = ACTIONS(2857), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_struct] = ACTIONS(2857), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_RPAREN] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_DOLLAR] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_void] = ACTIONS(2857), - [anon_sym_anyopaque] = ACTIONS(2857), - [anon_sym_bool] = ACTIONS(2857), - [anon_sym_int] = ACTIONS(2857), - [anon_sym_float] = ACTIONS(2857), - [anon_sym_range] = ACTIONS(2857), - [anon_sym_i8] = ACTIONS(2857), - [anon_sym_i16] = ACTIONS(2857), - [anon_sym_i32] = ACTIONS(2857), - [anon_sym_i64] = ACTIONS(2857), - [anon_sym_u8] = ACTIONS(2857), - [anon_sym_u16] = ACTIONS(2857), - [anon_sym_u32] = ACTIONS(2857), - [anon_sym_u64] = ACTIONS(2857), - [anon_sym_isize] = ACTIONS(2857), - [anon_sym_usize] = ACTIONS(2857), - [anon_sym_f32] = ACTIONS(2857), - [anon_sym_f64] = ACTIONS(2857), - [anon_sym_c_char] = ACTIONS(2857), - [anon_sym_c_schar] = ACTIONS(2857), - [anon_sym_c_uchar] = ACTIONS(2857), - [anon_sym_c_short] = ACTIONS(2857), - [anon_sym_c_ushort] = ACTIONS(2857), - [anon_sym_c_int] = ACTIONS(2857), - [anon_sym_c_uint] = ACTIONS(2857), - [anon_sym_c_long] = ACTIONS(2857), - [anon_sym_c_ulong] = ACTIONS(2857), - [anon_sym_c_longlong] = ACTIONS(2857), - [anon_sym_c_ulonglong] = ACTIONS(2857), - [anon_sym_c_float] = ACTIONS(2857), - [anon_sym_c_double] = ACTIONS(2857), - [anon_sym_c_longdouble] = ACTIONS(2857), - [anon_sym_return] = ACTIONS(2857), - [anon_sym_yield] = ACTIONS(2857), - [anon_sym_break] = ACTIONS(2857), - [anon_sym_continue] = ACTIONS(2857), - [anon_sym_defer] = ACTIONS(2857), - [anon_sym_errdefer] = ACTIONS(2857), - [anon_sym_if] = ACTIONS(2857), - [anon_sym_else] = ACTIONS(2857), - [anon_sym_while] = ACTIONS(2857), - [anon_sym_for] = ACTIONS(2857), - [anon_sym_match] = ACTIONS(2857), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_try] = ACTIONS(2857), - [anon_sym_DOT] = ACTIONS(2855), - [anon_sym_true] = ACTIONS(2857), - [anon_sym_false] = ACTIONS(2857), - [sym_none] = ACTIONS(2857), - [sym_undefined] = ACTIONS(2857), - [sym_sink] = ACTIONS(2857), - [sym_integer] = ACTIONS(2857), - [sym_float] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_multiline_string] = ACTIONS(2855), - [sym_character] = ACTIONS(2855), + [ts_builtin_sym_end] = ACTIONS(2857), + [sym_identifier] = ACTIONS(2859), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2855), + [sym__newline] = ACTIONS(2857), }, [STATE(1191)] = { - [ts_builtin_sym_end] = ACTIONS(2859), - [sym_identifier] = ACTIONS(2861), - [anon_sym_import] = ACTIONS(2861), - [anon_sym_func] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2861), - [anon_sym_LPAREN] = ACTIONS(2859), - [anon_sym_RPAREN] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2859), - [anon_sym_RBRACE] = ACTIONS(2859), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_DOLLAR] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_void] = ACTIONS(2861), - [anon_sym_anyopaque] = ACTIONS(2861), - [anon_sym_bool] = ACTIONS(2861), - [anon_sym_int] = ACTIONS(2861), - [anon_sym_float] = ACTIONS(2861), - [anon_sym_range] = ACTIONS(2861), - [anon_sym_i8] = ACTIONS(2861), - [anon_sym_i16] = ACTIONS(2861), - [anon_sym_i32] = ACTIONS(2861), - [anon_sym_i64] = ACTIONS(2861), - [anon_sym_u8] = ACTIONS(2861), - [anon_sym_u16] = ACTIONS(2861), - [anon_sym_u32] = ACTIONS(2861), - [anon_sym_u64] = ACTIONS(2861), - [anon_sym_isize] = ACTIONS(2861), - [anon_sym_usize] = ACTIONS(2861), - [anon_sym_f32] = ACTIONS(2861), - [anon_sym_f64] = ACTIONS(2861), - [anon_sym_c_char] = ACTIONS(2861), - [anon_sym_c_schar] = ACTIONS(2861), - [anon_sym_c_uchar] = ACTIONS(2861), - [anon_sym_c_short] = ACTIONS(2861), - [anon_sym_c_ushort] = ACTIONS(2861), - [anon_sym_c_int] = ACTIONS(2861), - [anon_sym_c_uint] = ACTIONS(2861), - [anon_sym_c_long] = ACTIONS(2861), - [anon_sym_c_ulong] = ACTIONS(2861), - [anon_sym_c_longlong] = ACTIONS(2861), - [anon_sym_c_ulonglong] = ACTIONS(2861), - [anon_sym_c_float] = ACTIONS(2861), - [anon_sym_c_double] = ACTIONS(2861), - [anon_sym_c_longdouble] = ACTIONS(2861), - [anon_sym_return] = ACTIONS(2861), - [anon_sym_yield] = ACTIONS(2861), - [anon_sym_break] = ACTIONS(2861), - [anon_sym_continue] = ACTIONS(2861), - [anon_sym_defer] = ACTIONS(2861), - [anon_sym_errdefer] = ACTIONS(2861), - [anon_sym_if] = ACTIONS(2861), - [anon_sym_else] = ACTIONS(2861), - [anon_sym_while] = ACTIONS(2861), - [anon_sym_for] = ACTIONS(2861), - [anon_sym_match] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2861), - [anon_sym_DOT] = ACTIONS(2859), - [anon_sym_true] = ACTIONS(2861), - [anon_sym_false] = ACTIONS(2861), - [sym_none] = ACTIONS(2861), - [sym_undefined] = ACTIONS(2861), - [sym_sink] = ACTIONS(2861), - [sym_integer] = ACTIONS(2861), - [sym_float] = ACTIONS(2859), - [anon_sym_DQUOTE] = ACTIONS(2859), - [sym_multiline_string] = ACTIONS(2859), - [sym_character] = ACTIONS(2859), + [ts_builtin_sym_end] = ACTIONS(2861), + [sym_identifier] = ACTIONS(2863), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2859), + [sym__newline] = ACTIONS(2861), }, [STATE(1192)] = { - [ts_builtin_sym_end] = ACTIONS(2863), - [sym_identifier] = ACTIONS(2865), - [anon_sym_import] = ACTIONS(2865), - [anon_sym_func] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2863), - [anon_sym_RPAREN] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2863), - [anon_sym_RBRACE] = ACTIONS(2863), - [anon_sym_DASH] = ACTIONS(2863), - [anon_sym_DOLLAR] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_void] = ACTIONS(2865), - [anon_sym_anyopaque] = ACTIONS(2865), - [anon_sym_bool] = ACTIONS(2865), - [anon_sym_int] = ACTIONS(2865), - [anon_sym_float] = ACTIONS(2865), - [anon_sym_range] = ACTIONS(2865), - [anon_sym_i8] = ACTIONS(2865), - [anon_sym_i16] = ACTIONS(2865), - [anon_sym_i32] = ACTIONS(2865), - [anon_sym_i64] = ACTIONS(2865), - [anon_sym_u8] = ACTIONS(2865), - [anon_sym_u16] = ACTIONS(2865), - [anon_sym_u32] = ACTIONS(2865), - [anon_sym_u64] = ACTIONS(2865), - [anon_sym_isize] = ACTIONS(2865), - [anon_sym_usize] = ACTIONS(2865), - [anon_sym_f32] = ACTIONS(2865), - [anon_sym_f64] = ACTIONS(2865), - [anon_sym_c_char] = ACTIONS(2865), - [anon_sym_c_schar] = ACTIONS(2865), - [anon_sym_c_uchar] = ACTIONS(2865), - [anon_sym_c_short] = ACTIONS(2865), - [anon_sym_c_ushort] = ACTIONS(2865), - [anon_sym_c_int] = ACTIONS(2865), - [anon_sym_c_uint] = ACTIONS(2865), - [anon_sym_c_long] = ACTIONS(2865), - [anon_sym_c_ulong] = ACTIONS(2865), - [anon_sym_c_longlong] = ACTIONS(2865), - [anon_sym_c_ulonglong] = ACTIONS(2865), - [anon_sym_c_float] = ACTIONS(2865), - [anon_sym_c_double] = ACTIONS(2865), - [anon_sym_c_longdouble] = ACTIONS(2865), - [anon_sym_return] = ACTIONS(2865), - [anon_sym_yield] = ACTIONS(2865), - [anon_sym_break] = ACTIONS(2865), - [anon_sym_continue] = ACTIONS(2865), - [anon_sym_defer] = ACTIONS(2865), - [anon_sym_errdefer] = ACTIONS(2865), - [anon_sym_if] = ACTIONS(2865), - [anon_sym_else] = ACTIONS(2865), - [anon_sym_while] = ACTIONS(2865), - [anon_sym_for] = ACTIONS(2865), - [anon_sym_match] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2863), - [anon_sym_try] = ACTIONS(2865), - [anon_sym_DOT] = ACTIONS(2863), - [anon_sym_true] = ACTIONS(2865), - [anon_sym_false] = ACTIONS(2865), - [sym_none] = ACTIONS(2865), - [sym_undefined] = ACTIONS(2865), - [sym_sink] = ACTIONS(2865), - [sym_integer] = ACTIONS(2865), - [sym_float] = ACTIONS(2863), - [anon_sym_DQUOTE] = ACTIONS(2863), - [sym_multiline_string] = ACTIONS(2863), - [sym_character] = ACTIONS(2863), + [ts_builtin_sym_end] = ACTIONS(2865), + [sym_identifier] = ACTIONS(2867), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2863), + [sym__newline] = ACTIONS(2865), }, [STATE(1193)] = { - [ts_builtin_sym_end] = ACTIONS(2867), - [sym_identifier] = ACTIONS(2869), - [anon_sym_import] = ACTIONS(2869), - [anon_sym_func] = ACTIONS(2869), - [anon_sym_BANG] = ACTIONS(2867), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_LPAREN] = ACTIONS(2867), - [anon_sym_RPAREN] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2867), - [anon_sym_RBRACE] = ACTIONS(2867), - [anon_sym_DASH] = ACTIONS(2867), - [anon_sym_DOLLAR] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_void] = ACTIONS(2869), - [anon_sym_anyopaque] = ACTIONS(2869), - [anon_sym_bool] = ACTIONS(2869), - [anon_sym_int] = ACTIONS(2869), - [anon_sym_float] = ACTIONS(2869), - [anon_sym_range] = ACTIONS(2869), - [anon_sym_i8] = ACTIONS(2869), - [anon_sym_i16] = ACTIONS(2869), - [anon_sym_i32] = ACTIONS(2869), - [anon_sym_i64] = ACTIONS(2869), - [anon_sym_u8] = ACTIONS(2869), - [anon_sym_u16] = ACTIONS(2869), - [anon_sym_u32] = ACTIONS(2869), - [anon_sym_u64] = ACTIONS(2869), - [anon_sym_isize] = ACTIONS(2869), - [anon_sym_usize] = ACTIONS(2869), - [anon_sym_f32] = ACTIONS(2869), - [anon_sym_f64] = ACTIONS(2869), - [anon_sym_c_char] = ACTIONS(2869), - [anon_sym_c_schar] = ACTIONS(2869), - [anon_sym_c_uchar] = ACTIONS(2869), - [anon_sym_c_short] = ACTIONS(2869), - [anon_sym_c_ushort] = ACTIONS(2869), - [anon_sym_c_int] = ACTIONS(2869), - [anon_sym_c_uint] = ACTIONS(2869), - [anon_sym_c_long] = ACTIONS(2869), - [anon_sym_c_ulong] = ACTIONS(2869), - [anon_sym_c_longlong] = ACTIONS(2869), - [anon_sym_c_ulonglong] = ACTIONS(2869), - [anon_sym_c_float] = ACTIONS(2869), - [anon_sym_c_double] = ACTIONS(2869), - [anon_sym_c_longdouble] = ACTIONS(2869), - [anon_sym_return] = ACTIONS(2869), - [anon_sym_yield] = ACTIONS(2869), - [anon_sym_break] = ACTIONS(2869), - [anon_sym_continue] = ACTIONS(2869), - [anon_sym_defer] = ACTIONS(2869), - [anon_sym_errdefer] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_else] = ACTIONS(2869), - [anon_sym_while] = ACTIONS(2869), - [anon_sym_for] = ACTIONS(2869), - [anon_sym_match] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2867), - [anon_sym_try] = ACTIONS(2869), - [anon_sym_DOT] = ACTIONS(2867), - [anon_sym_true] = ACTIONS(2869), - [anon_sym_false] = ACTIONS(2869), - [sym_none] = ACTIONS(2869), - [sym_undefined] = ACTIONS(2869), - [sym_sink] = ACTIONS(2869), - [sym_integer] = ACTIONS(2869), - [sym_float] = ACTIONS(2867), - [anon_sym_DQUOTE] = ACTIONS(2867), - [sym_multiline_string] = ACTIONS(2867), - [sym_character] = ACTIONS(2867), + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2871), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2867), + [sym__newline] = ACTIONS(2869), }, [STATE(1194)] = { - [ts_builtin_sym_end] = ACTIONS(2871), - [sym_identifier] = ACTIONS(2873), - [anon_sym_import] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2873), - [anon_sym_BANG] = ACTIONS(2871), - [anon_sym_struct] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2871), - [anon_sym_RPAREN] = ACTIONS(2871), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_RBRACE] = ACTIONS(2871), - [anon_sym_DASH] = ACTIONS(2871), - [anon_sym_DOLLAR] = ACTIONS(2871), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_void] = ACTIONS(2873), - [anon_sym_anyopaque] = ACTIONS(2873), - [anon_sym_bool] = ACTIONS(2873), - [anon_sym_int] = ACTIONS(2873), - [anon_sym_float] = ACTIONS(2873), - [anon_sym_range] = ACTIONS(2873), - [anon_sym_i8] = ACTIONS(2873), - [anon_sym_i16] = ACTIONS(2873), - [anon_sym_i32] = ACTIONS(2873), - [anon_sym_i64] = ACTIONS(2873), - [anon_sym_u8] = ACTIONS(2873), - [anon_sym_u16] = ACTIONS(2873), - [anon_sym_u32] = ACTIONS(2873), - [anon_sym_u64] = ACTIONS(2873), - [anon_sym_isize] = ACTIONS(2873), - [anon_sym_usize] = ACTIONS(2873), - [anon_sym_f32] = ACTIONS(2873), - [anon_sym_f64] = ACTIONS(2873), - [anon_sym_c_char] = ACTIONS(2873), - [anon_sym_c_schar] = ACTIONS(2873), - [anon_sym_c_uchar] = ACTIONS(2873), - [anon_sym_c_short] = ACTIONS(2873), - [anon_sym_c_ushort] = ACTIONS(2873), - [anon_sym_c_int] = ACTIONS(2873), - [anon_sym_c_uint] = ACTIONS(2873), - [anon_sym_c_long] = ACTIONS(2873), - [anon_sym_c_ulong] = ACTIONS(2873), - [anon_sym_c_longlong] = ACTIONS(2873), - [anon_sym_c_ulonglong] = ACTIONS(2873), - [anon_sym_c_float] = ACTIONS(2873), - [anon_sym_c_double] = ACTIONS(2873), - [anon_sym_c_longdouble] = ACTIONS(2873), - [anon_sym_return] = ACTIONS(2873), - [anon_sym_yield] = ACTIONS(2873), - [anon_sym_break] = ACTIONS(2873), - [anon_sym_continue] = ACTIONS(2873), - [anon_sym_defer] = ACTIONS(2873), - [anon_sym_errdefer] = ACTIONS(2873), - [anon_sym_if] = ACTIONS(2873), - [anon_sym_else] = ACTIONS(2873), - [anon_sym_while] = ACTIONS(2873), - [anon_sym_for] = ACTIONS(2873), - [anon_sym_match] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2871), - [anon_sym_try] = ACTIONS(2873), - [anon_sym_DOT] = ACTIONS(2871), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [sym_none] = ACTIONS(2873), - [sym_undefined] = ACTIONS(2873), - [sym_sink] = ACTIONS(2873), - [sym_integer] = ACTIONS(2873), - [sym_float] = ACTIONS(2871), - [anon_sym_DQUOTE] = ACTIONS(2871), - [sym_multiline_string] = ACTIONS(2871), - [sym_character] = ACTIONS(2871), + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2875), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2871), + [sym__newline] = ACTIONS(2873), }, [STATE(1195)] = { - [ts_builtin_sym_end] = ACTIONS(2875), - [sym_identifier] = ACTIONS(2877), - [anon_sym_import] = ACTIONS(2877), - [anon_sym_func] = ACTIONS(2877), - [anon_sym_BANG] = ACTIONS(2875), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_LPAREN] = ACTIONS(2875), - [anon_sym_RPAREN] = ACTIONS(2875), - [anon_sym_LBRACE] = ACTIONS(2875), - [anon_sym_RBRACE] = ACTIONS(2875), - [anon_sym_DASH] = ACTIONS(2875), - [anon_sym_DOLLAR] = ACTIONS(2875), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_void] = ACTIONS(2877), - [anon_sym_anyopaque] = ACTIONS(2877), - [anon_sym_bool] = ACTIONS(2877), - [anon_sym_int] = ACTIONS(2877), - [anon_sym_float] = ACTIONS(2877), - [anon_sym_range] = ACTIONS(2877), - [anon_sym_i8] = ACTIONS(2877), - [anon_sym_i16] = ACTIONS(2877), - [anon_sym_i32] = ACTIONS(2877), - [anon_sym_i64] = ACTIONS(2877), - [anon_sym_u8] = ACTIONS(2877), - [anon_sym_u16] = ACTIONS(2877), - [anon_sym_u32] = ACTIONS(2877), - [anon_sym_u64] = ACTIONS(2877), - [anon_sym_isize] = ACTIONS(2877), - [anon_sym_usize] = ACTIONS(2877), - [anon_sym_f32] = ACTIONS(2877), - [anon_sym_f64] = ACTIONS(2877), - [anon_sym_c_char] = ACTIONS(2877), - [anon_sym_c_schar] = ACTIONS(2877), - [anon_sym_c_uchar] = ACTIONS(2877), - [anon_sym_c_short] = ACTIONS(2877), - [anon_sym_c_ushort] = ACTIONS(2877), - [anon_sym_c_int] = ACTIONS(2877), - [anon_sym_c_uint] = ACTIONS(2877), - [anon_sym_c_long] = ACTIONS(2877), - [anon_sym_c_ulong] = ACTIONS(2877), - [anon_sym_c_longlong] = ACTIONS(2877), - [anon_sym_c_ulonglong] = ACTIONS(2877), - [anon_sym_c_float] = ACTIONS(2877), - [anon_sym_c_double] = ACTIONS(2877), - [anon_sym_c_longdouble] = ACTIONS(2877), - [anon_sym_return] = ACTIONS(2877), - [anon_sym_yield] = ACTIONS(2877), - [anon_sym_break] = ACTIONS(2877), - [anon_sym_continue] = ACTIONS(2877), - [anon_sym_defer] = ACTIONS(2877), - [anon_sym_errdefer] = ACTIONS(2877), - [anon_sym_if] = ACTIONS(2877), - [anon_sym_else] = ACTIONS(2877), - [anon_sym_while] = ACTIONS(2877), - [anon_sym_for] = ACTIONS(2877), - [anon_sym_match] = ACTIONS(2877), - [anon_sym_AMP] = ACTIONS(2875), - [anon_sym_try] = ACTIONS(2877), - [anon_sym_DOT] = ACTIONS(2875), - [anon_sym_true] = ACTIONS(2877), - [anon_sym_false] = ACTIONS(2877), - [sym_none] = ACTIONS(2877), - [sym_undefined] = ACTIONS(2877), - [sym_sink] = ACTIONS(2877), - [sym_integer] = ACTIONS(2877), - [sym_float] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [sym_multiline_string] = ACTIONS(2875), - [sym_character] = ACTIONS(2875), + [ts_builtin_sym_end] = ACTIONS(2877), + [sym_identifier] = ACTIONS(2879), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2875), + [sym__newline] = ACTIONS(2877), }, [STATE(1196)] = { - [ts_builtin_sym_end] = ACTIONS(2879), - [sym_identifier] = ACTIONS(2881), - [anon_sym_import] = ACTIONS(2881), - [anon_sym_func] = ACTIONS(2881), - [anon_sym_BANG] = ACTIONS(2879), - [anon_sym_struct] = ACTIONS(2881), - [anon_sym_LPAREN] = ACTIONS(2879), - [anon_sym_RPAREN] = ACTIONS(2879), - [anon_sym_LBRACE] = ACTIONS(2879), - [anon_sym_RBRACE] = ACTIONS(2879), - [anon_sym_DASH] = ACTIONS(2879), - [anon_sym_DOLLAR] = ACTIONS(2879), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_void] = ACTIONS(2881), - [anon_sym_anyopaque] = ACTIONS(2881), - [anon_sym_bool] = ACTIONS(2881), - [anon_sym_int] = ACTIONS(2881), - [anon_sym_float] = ACTIONS(2881), - [anon_sym_range] = ACTIONS(2881), - [anon_sym_i8] = ACTIONS(2881), - [anon_sym_i16] = ACTIONS(2881), - [anon_sym_i32] = ACTIONS(2881), - [anon_sym_i64] = ACTIONS(2881), - [anon_sym_u8] = ACTIONS(2881), - [anon_sym_u16] = ACTIONS(2881), - [anon_sym_u32] = ACTIONS(2881), - [anon_sym_u64] = ACTIONS(2881), - [anon_sym_isize] = ACTIONS(2881), - [anon_sym_usize] = ACTIONS(2881), - [anon_sym_f32] = ACTIONS(2881), - [anon_sym_f64] = ACTIONS(2881), - [anon_sym_c_char] = ACTIONS(2881), - [anon_sym_c_schar] = ACTIONS(2881), - [anon_sym_c_uchar] = ACTIONS(2881), - [anon_sym_c_short] = ACTIONS(2881), - [anon_sym_c_ushort] = ACTIONS(2881), - [anon_sym_c_int] = ACTIONS(2881), - [anon_sym_c_uint] = ACTIONS(2881), - [anon_sym_c_long] = ACTIONS(2881), - [anon_sym_c_ulong] = ACTIONS(2881), - [anon_sym_c_longlong] = ACTIONS(2881), - [anon_sym_c_ulonglong] = ACTIONS(2881), - [anon_sym_c_float] = ACTIONS(2881), - [anon_sym_c_double] = ACTIONS(2881), - [anon_sym_c_longdouble] = ACTIONS(2881), - [anon_sym_return] = ACTIONS(2881), - [anon_sym_yield] = ACTIONS(2881), - [anon_sym_break] = ACTIONS(2881), - [anon_sym_continue] = ACTIONS(2881), - [anon_sym_defer] = ACTIONS(2881), - [anon_sym_errdefer] = ACTIONS(2881), - [anon_sym_if] = ACTIONS(2881), - [anon_sym_else] = ACTIONS(2881), - [anon_sym_while] = ACTIONS(2881), - [anon_sym_for] = ACTIONS(2881), - [anon_sym_match] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2879), - [anon_sym_try] = ACTIONS(2881), - [anon_sym_DOT] = ACTIONS(2879), - [anon_sym_true] = ACTIONS(2881), - [anon_sym_false] = ACTIONS(2881), - [sym_none] = ACTIONS(2881), - [sym_undefined] = ACTIONS(2881), - [sym_sink] = ACTIONS(2881), - [sym_integer] = ACTIONS(2881), - [sym_float] = ACTIONS(2879), - [anon_sym_DQUOTE] = ACTIONS(2879), - [sym_multiline_string] = ACTIONS(2879), - [sym_character] = ACTIONS(2879), + [ts_builtin_sym_end] = ACTIONS(2881), + [sym_identifier] = ACTIONS(2883), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2879), + [sym__newline] = ACTIONS(2881), }, [STATE(1197)] = { - [ts_builtin_sym_end] = ACTIONS(2883), - [sym_identifier] = ACTIONS(2885), - [anon_sym_import] = ACTIONS(2885), - [anon_sym_func] = ACTIONS(2885), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_RPAREN] = ACTIONS(2883), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_RBRACE] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2883), - [anon_sym_LBRACK] = ACTIONS(2883), - [anon_sym_void] = ACTIONS(2885), - [anon_sym_anyopaque] = ACTIONS(2885), - [anon_sym_bool] = ACTIONS(2885), - [anon_sym_int] = ACTIONS(2885), - [anon_sym_float] = ACTIONS(2885), - [anon_sym_range] = ACTIONS(2885), - [anon_sym_i8] = ACTIONS(2885), - [anon_sym_i16] = ACTIONS(2885), - [anon_sym_i32] = ACTIONS(2885), - [anon_sym_i64] = ACTIONS(2885), - [anon_sym_u8] = ACTIONS(2885), - [anon_sym_u16] = ACTIONS(2885), - [anon_sym_u32] = ACTIONS(2885), - [anon_sym_u64] = ACTIONS(2885), - [anon_sym_isize] = ACTIONS(2885), - [anon_sym_usize] = ACTIONS(2885), - [anon_sym_f32] = ACTIONS(2885), - [anon_sym_f64] = ACTIONS(2885), - [anon_sym_c_char] = ACTIONS(2885), - [anon_sym_c_schar] = ACTIONS(2885), - [anon_sym_c_uchar] = ACTIONS(2885), - [anon_sym_c_short] = ACTIONS(2885), - [anon_sym_c_ushort] = ACTIONS(2885), - [anon_sym_c_int] = ACTIONS(2885), - [anon_sym_c_uint] = ACTIONS(2885), - [anon_sym_c_long] = ACTIONS(2885), - [anon_sym_c_ulong] = ACTIONS(2885), - [anon_sym_c_longlong] = ACTIONS(2885), - [anon_sym_c_ulonglong] = ACTIONS(2885), - [anon_sym_c_float] = ACTIONS(2885), - [anon_sym_c_double] = ACTIONS(2885), - [anon_sym_c_longdouble] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_yield] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_defer] = ACTIONS(2885), - [anon_sym_errdefer] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_else] = ACTIONS(2885), - [anon_sym_while] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_match] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_try] = ACTIONS(2885), - [anon_sym_DOT] = ACTIONS(2883), - [anon_sym_true] = ACTIONS(2885), - [anon_sym_false] = ACTIONS(2885), - [sym_none] = ACTIONS(2885), - [sym_undefined] = ACTIONS(2885), - [sym_sink] = ACTIONS(2885), - [sym_integer] = ACTIONS(2885), - [sym_float] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [sym_multiline_string] = ACTIONS(2883), - [sym_character] = ACTIONS(2883), + [ts_builtin_sym_end] = ACTIONS(2885), + [sym_identifier] = ACTIONS(2887), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2883), + [sym__newline] = ACTIONS(2885), }, [STATE(1198)] = { - [ts_builtin_sym_end] = ACTIONS(2887), - [sym_identifier] = ACTIONS(2889), - [anon_sym_import] = ACTIONS(2889), - [anon_sym_func] = ACTIONS(2889), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_struct] = ACTIONS(2889), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym_RPAREN] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_RBRACE] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_DOLLAR] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_anyopaque] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_int] = ACTIONS(2889), - [anon_sym_float] = ACTIONS(2889), - [anon_sym_range] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_c_char] = ACTIONS(2889), - [anon_sym_c_schar] = ACTIONS(2889), - [anon_sym_c_uchar] = ACTIONS(2889), - [anon_sym_c_short] = ACTIONS(2889), - [anon_sym_c_ushort] = ACTIONS(2889), - [anon_sym_c_int] = ACTIONS(2889), - [anon_sym_c_uint] = ACTIONS(2889), - [anon_sym_c_long] = ACTIONS(2889), - [anon_sym_c_ulong] = ACTIONS(2889), - [anon_sym_c_longlong] = ACTIONS(2889), - [anon_sym_c_ulonglong] = ACTIONS(2889), - [anon_sym_c_float] = ACTIONS(2889), - [anon_sym_c_double] = ACTIONS(2889), - [anon_sym_c_longdouble] = ACTIONS(2889), - [anon_sym_return] = ACTIONS(2889), - [anon_sym_yield] = ACTIONS(2889), - [anon_sym_break] = ACTIONS(2889), - [anon_sym_continue] = ACTIONS(2889), - [anon_sym_defer] = ACTIONS(2889), - [anon_sym_errdefer] = ACTIONS(2889), - [anon_sym_if] = ACTIONS(2889), - [anon_sym_else] = ACTIONS(2889), - [anon_sym_while] = ACTIONS(2889), - [anon_sym_for] = ACTIONS(2889), - [anon_sym_match] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_try] = ACTIONS(2889), - [anon_sym_DOT] = ACTIONS(2887), - [anon_sym_true] = ACTIONS(2889), - [anon_sym_false] = ACTIONS(2889), - [sym_none] = ACTIONS(2889), - [sym_undefined] = ACTIONS(2889), - [sym_sink] = ACTIONS(2889), - [sym_integer] = ACTIONS(2889), - [sym_float] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [sym_multiline_string] = ACTIONS(2887), - [sym_character] = ACTIONS(2887), + [ts_builtin_sym_end] = ACTIONS(2889), + [sym_identifier] = ACTIONS(2891), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2887), + [sym__newline] = ACTIONS(2889), }, [STATE(1199)] = { - [ts_builtin_sym_end] = ACTIONS(2891), - [sym_identifier] = ACTIONS(2893), - [anon_sym_import] = ACTIONS(2893), - [anon_sym_func] = ACTIONS(2893), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(2893), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym_RPAREN] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_RBRACE] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_DOLLAR] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2891), - [anon_sym_void] = ACTIONS(2893), - [anon_sym_anyopaque] = ACTIONS(2893), - [anon_sym_bool] = ACTIONS(2893), - [anon_sym_int] = ACTIONS(2893), - [anon_sym_float] = ACTIONS(2893), - [anon_sym_range] = ACTIONS(2893), - [anon_sym_i8] = ACTIONS(2893), - [anon_sym_i16] = ACTIONS(2893), - [anon_sym_i32] = ACTIONS(2893), - [anon_sym_i64] = ACTIONS(2893), - [anon_sym_u8] = ACTIONS(2893), - [anon_sym_u16] = ACTIONS(2893), - [anon_sym_u32] = ACTIONS(2893), - [anon_sym_u64] = ACTIONS(2893), - [anon_sym_isize] = ACTIONS(2893), - [anon_sym_usize] = ACTIONS(2893), - [anon_sym_f32] = ACTIONS(2893), - [anon_sym_f64] = ACTIONS(2893), - [anon_sym_c_char] = ACTIONS(2893), - [anon_sym_c_schar] = ACTIONS(2893), - [anon_sym_c_uchar] = ACTIONS(2893), - [anon_sym_c_short] = ACTIONS(2893), - [anon_sym_c_ushort] = ACTIONS(2893), - [anon_sym_c_int] = ACTIONS(2893), - [anon_sym_c_uint] = ACTIONS(2893), - [anon_sym_c_long] = ACTIONS(2893), - [anon_sym_c_ulong] = ACTIONS(2893), - [anon_sym_c_longlong] = ACTIONS(2893), - [anon_sym_c_ulonglong] = ACTIONS(2893), - [anon_sym_c_float] = ACTIONS(2893), - [anon_sym_c_double] = ACTIONS(2893), - [anon_sym_c_longdouble] = ACTIONS(2893), - [anon_sym_return] = ACTIONS(2893), - [anon_sym_yield] = ACTIONS(2893), - [anon_sym_break] = ACTIONS(2893), - [anon_sym_continue] = ACTIONS(2893), - [anon_sym_defer] = ACTIONS(2893), - [anon_sym_errdefer] = ACTIONS(2893), - [anon_sym_if] = ACTIONS(2893), - [anon_sym_else] = ACTIONS(2893), - [anon_sym_while] = ACTIONS(2893), - [anon_sym_for] = ACTIONS(2893), - [anon_sym_match] = ACTIONS(2893), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_try] = ACTIONS(2893), - [anon_sym_DOT] = ACTIONS(2891), - [anon_sym_true] = ACTIONS(2893), - [anon_sym_false] = ACTIONS(2893), - [sym_none] = ACTIONS(2893), - [sym_undefined] = ACTIONS(2893), - [sym_sink] = ACTIONS(2893), - [sym_integer] = ACTIONS(2893), - [sym_float] = ACTIONS(2891), - [anon_sym_DQUOTE] = ACTIONS(2891), - [sym_multiline_string] = ACTIONS(2891), - [sym_character] = ACTIONS(2891), + [ts_builtin_sym_end] = ACTIONS(2893), + [sym_identifier] = ACTIONS(2895), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2891), + [sym__newline] = ACTIONS(2893), }, [STATE(1200)] = { - [ts_builtin_sym_end] = ACTIONS(2895), - [sym_identifier] = ACTIONS(2897), - [anon_sym_import] = ACTIONS(2897), - [anon_sym_func] = ACTIONS(2897), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_struct] = ACTIONS(2897), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_RPAREN] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_RBRACE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_DOLLAR] = ACTIONS(2895), - [anon_sym_LBRACK] = ACTIONS(2895), - [anon_sym_void] = ACTIONS(2897), - [anon_sym_anyopaque] = ACTIONS(2897), - [anon_sym_bool] = ACTIONS(2897), - [anon_sym_int] = ACTIONS(2897), - [anon_sym_float] = ACTIONS(2897), - [anon_sym_range] = ACTIONS(2897), - [anon_sym_i8] = ACTIONS(2897), - [anon_sym_i16] = ACTIONS(2897), - [anon_sym_i32] = ACTIONS(2897), - [anon_sym_i64] = ACTIONS(2897), - [anon_sym_u8] = ACTIONS(2897), - [anon_sym_u16] = ACTIONS(2897), - [anon_sym_u32] = ACTIONS(2897), - [anon_sym_u64] = ACTIONS(2897), - [anon_sym_isize] = ACTIONS(2897), - [anon_sym_usize] = ACTIONS(2897), - [anon_sym_f32] = ACTIONS(2897), - [anon_sym_f64] = ACTIONS(2897), - [anon_sym_c_char] = ACTIONS(2897), - [anon_sym_c_schar] = ACTIONS(2897), - [anon_sym_c_uchar] = ACTIONS(2897), - [anon_sym_c_short] = ACTIONS(2897), - [anon_sym_c_ushort] = ACTIONS(2897), - [anon_sym_c_int] = ACTIONS(2897), - [anon_sym_c_uint] = ACTIONS(2897), - [anon_sym_c_long] = ACTIONS(2897), - [anon_sym_c_ulong] = ACTIONS(2897), - [anon_sym_c_longlong] = ACTIONS(2897), - [anon_sym_c_ulonglong] = ACTIONS(2897), - [anon_sym_c_float] = ACTIONS(2897), - [anon_sym_c_double] = ACTIONS(2897), - [anon_sym_c_longdouble] = ACTIONS(2897), - [anon_sym_return] = ACTIONS(2897), - [anon_sym_yield] = ACTIONS(2897), - [anon_sym_break] = ACTIONS(2897), - [anon_sym_continue] = ACTIONS(2897), - [anon_sym_defer] = ACTIONS(2897), - [anon_sym_errdefer] = ACTIONS(2897), - [anon_sym_if] = ACTIONS(2897), - [anon_sym_else] = ACTIONS(2897), - [anon_sym_while] = ACTIONS(2897), - [anon_sym_for] = ACTIONS(2897), - [anon_sym_match] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2895), - [anon_sym_try] = ACTIONS(2897), - [anon_sym_DOT] = ACTIONS(2895), - [anon_sym_true] = ACTIONS(2897), - [anon_sym_false] = ACTIONS(2897), - [sym_none] = ACTIONS(2897), - [sym_undefined] = ACTIONS(2897), - [sym_sink] = ACTIONS(2897), - [sym_integer] = ACTIONS(2897), - [sym_float] = ACTIONS(2895), - [anon_sym_DQUOTE] = ACTIONS(2895), - [sym_multiline_string] = ACTIONS(2895), - [sym_character] = ACTIONS(2895), + [ts_builtin_sym_end] = ACTIONS(2897), + [sym_identifier] = ACTIONS(2899), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2895), + [sym__newline] = ACTIONS(2897), }, [STATE(1201)] = { - [ts_builtin_sym_end] = ACTIONS(2899), - [sym_identifier] = ACTIONS(2901), - [anon_sym_import] = ACTIONS(2901), - [anon_sym_func] = ACTIONS(2901), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_struct] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2899), - [anon_sym_RPAREN] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_RBRACE] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_DOLLAR] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_void] = ACTIONS(2901), - [anon_sym_anyopaque] = ACTIONS(2901), - [anon_sym_bool] = ACTIONS(2901), - [anon_sym_int] = ACTIONS(2901), - [anon_sym_float] = ACTIONS(2901), - [anon_sym_range] = ACTIONS(2901), - [anon_sym_i8] = ACTIONS(2901), - [anon_sym_i16] = ACTIONS(2901), - [anon_sym_i32] = ACTIONS(2901), - [anon_sym_i64] = ACTIONS(2901), - [anon_sym_u8] = ACTIONS(2901), - [anon_sym_u16] = ACTIONS(2901), - [anon_sym_u32] = ACTIONS(2901), - [anon_sym_u64] = ACTIONS(2901), - [anon_sym_isize] = ACTIONS(2901), - [anon_sym_usize] = ACTIONS(2901), - [anon_sym_f32] = ACTIONS(2901), - [anon_sym_f64] = ACTIONS(2901), - [anon_sym_c_char] = ACTIONS(2901), - [anon_sym_c_schar] = ACTIONS(2901), - [anon_sym_c_uchar] = ACTIONS(2901), - [anon_sym_c_short] = ACTIONS(2901), - [anon_sym_c_ushort] = ACTIONS(2901), - [anon_sym_c_int] = ACTIONS(2901), - [anon_sym_c_uint] = ACTIONS(2901), - [anon_sym_c_long] = ACTIONS(2901), - [anon_sym_c_ulong] = ACTIONS(2901), - [anon_sym_c_longlong] = ACTIONS(2901), - [anon_sym_c_ulonglong] = ACTIONS(2901), - [anon_sym_c_float] = ACTIONS(2901), - [anon_sym_c_double] = ACTIONS(2901), - [anon_sym_c_longdouble] = ACTIONS(2901), - [anon_sym_return] = ACTIONS(2901), - [anon_sym_yield] = ACTIONS(2901), - [anon_sym_break] = ACTIONS(2901), - [anon_sym_continue] = ACTIONS(2901), - [anon_sym_defer] = ACTIONS(2901), - [anon_sym_errdefer] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2901), - [anon_sym_else] = ACTIONS(2901), - [anon_sym_while] = ACTIONS(2901), - [anon_sym_for] = ACTIONS(2901), - [anon_sym_match] = ACTIONS(2901), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_try] = ACTIONS(2901), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_true] = ACTIONS(2901), - [anon_sym_false] = ACTIONS(2901), - [sym_none] = ACTIONS(2901), - [sym_undefined] = ACTIONS(2901), - [sym_sink] = ACTIONS(2901), - [sym_integer] = ACTIONS(2901), - [sym_float] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [sym_multiline_string] = ACTIONS(2899), - [sym_character] = ACTIONS(2899), + [ts_builtin_sym_end] = ACTIONS(2901), + [sym_identifier] = ACTIONS(2903), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2899), + [sym__newline] = ACTIONS(2901), }, [STATE(1202)] = { - [ts_builtin_sym_end] = ACTIONS(2903), - [sym_identifier] = ACTIONS(2905), - [anon_sym_import] = ACTIONS(2905), - [anon_sym_func] = ACTIONS(2905), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_RPAREN] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_RBRACE] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2903), - [anon_sym_void] = ACTIONS(2905), - [anon_sym_anyopaque] = ACTIONS(2905), - [anon_sym_bool] = ACTIONS(2905), - [anon_sym_int] = ACTIONS(2905), - [anon_sym_float] = ACTIONS(2905), - [anon_sym_range] = ACTIONS(2905), - [anon_sym_i8] = ACTIONS(2905), - [anon_sym_i16] = ACTIONS(2905), - [anon_sym_i32] = ACTIONS(2905), - [anon_sym_i64] = ACTIONS(2905), - [anon_sym_u8] = ACTIONS(2905), - [anon_sym_u16] = ACTIONS(2905), - [anon_sym_u32] = ACTIONS(2905), - [anon_sym_u64] = ACTIONS(2905), - [anon_sym_isize] = ACTIONS(2905), - [anon_sym_usize] = ACTIONS(2905), - [anon_sym_f32] = ACTIONS(2905), - [anon_sym_f64] = ACTIONS(2905), - [anon_sym_c_char] = ACTIONS(2905), - [anon_sym_c_schar] = ACTIONS(2905), - [anon_sym_c_uchar] = ACTIONS(2905), - [anon_sym_c_short] = ACTIONS(2905), - [anon_sym_c_ushort] = ACTIONS(2905), - [anon_sym_c_int] = ACTIONS(2905), - [anon_sym_c_uint] = ACTIONS(2905), - [anon_sym_c_long] = ACTIONS(2905), - [anon_sym_c_ulong] = ACTIONS(2905), - [anon_sym_c_longlong] = ACTIONS(2905), - [anon_sym_c_ulonglong] = ACTIONS(2905), - [anon_sym_c_float] = ACTIONS(2905), - [anon_sym_c_double] = ACTIONS(2905), - [anon_sym_c_longdouble] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_yield] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_defer] = ACTIONS(2905), - [anon_sym_errdefer] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_else] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_match] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_try] = ACTIONS(2905), - [anon_sym_DOT] = ACTIONS(2903), - [anon_sym_true] = ACTIONS(2905), - [anon_sym_false] = ACTIONS(2905), - [sym_none] = ACTIONS(2905), - [sym_undefined] = ACTIONS(2905), - [sym_sink] = ACTIONS(2905), - [sym_integer] = ACTIONS(2905), - [sym_float] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym_multiline_string] = ACTIONS(2903), - [sym_character] = ACTIONS(2903), + [ts_builtin_sym_end] = ACTIONS(2905), + [sym_identifier] = ACTIONS(2907), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2903), + [sym__newline] = ACTIONS(2905), }, [STATE(1203)] = { - [ts_builtin_sym_end] = ACTIONS(2907), - [sym_identifier] = ACTIONS(2909), - [anon_sym_import] = ACTIONS(2909), - [anon_sym_func] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_RPAREN] = ACTIONS(2907), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_RBRACE] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_DOLLAR] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_void] = ACTIONS(2909), - [anon_sym_anyopaque] = ACTIONS(2909), - [anon_sym_bool] = ACTIONS(2909), - [anon_sym_int] = ACTIONS(2909), - [anon_sym_float] = ACTIONS(2909), - [anon_sym_range] = ACTIONS(2909), - [anon_sym_i8] = ACTIONS(2909), - [anon_sym_i16] = ACTIONS(2909), - [anon_sym_i32] = ACTIONS(2909), - [anon_sym_i64] = ACTIONS(2909), - [anon_sym_u8] = ACTIONS(2909), - [anon_sym_u16] = ACTIONS(2909), - [anon_sym_u32] = ACTIONS(2909), - [anon_sym_u64] = ACTIONS(2909), - [anon_sym_isize] = ACTIONS(2909), - [anon_sym_usize] = ACTIONS(2909), - [anon_sym_f32] = ACTIONS(2909), - [anon_sym_f64] = ACTIONS(2909), - [anon_sym_c_char] = ACTIONS(2909), - [anon_sym_c_schar] = ACTIONS(2909), - [anon_sym_c_uchar] = ACTIONS(2909), - [anon_sym_c_short] = ACTIONS(2909), - [anon_sym_c_ushort] = ACTIONS(2909), - [anon_sym_c_int] = ACTIONS(2909), - [anon_sym_c_uint] = ACTIONS(2909), - [anon_sym_c_long] = ACTIONS(2909), - [anon_sym_c_ulong] = ACTIONS(2909), - [anon_sym_c_longlong] = ACTIONS(2909), - [anon_sym_c_ulonglong] = ACTIONS(2909), - [anon_sym_c_float] = ACTIONS(2909), - [anon_sym_c_double] = ACTIONS(2909), - [anon_sym_c_longdouble] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_yield] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_defer] = ACTIONS(2909), - [anon_sym_errdefer] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_else] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_match] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_try] = ACTIONS(2909), - [anon_sym_DOT] = ACTIONS(2907), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [sym_none] = ACTIONS(2909), - [sym_undefined] = ACTIONS(2909), - [sym_sink] = ACTIONS(2909), - [sym_integer] = ACTIONS(2909), - [sym_float] = ACTIONS(2907), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_multiline_string] = ACTIONS(2907), - [sym_character] = ACTIONS(2907), + [ts_builtin_sym_end] = ACTIONS(2909), + [sym_identifier] = ACTIONS(2911), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2907), + [sym__newline] = ACTIONS(2909), }, [STATE(1204)] = { - [ts_builtin_sym_end] = ACTIONS(2911), - [sym_identifier] = ACTIONS(2913), - [anon_sym_import] = ACTIONS(2913), - [anon_sym_func] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_RPAREN] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_DOLLAR] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_void] = ACTIONS(2913), - [anon_sym_anyopaque] = ACTIONS(2913), - [anon_sym_bool] = ACTIONS(2913), - [anon_sym_int] = ACTIONS(2913), - [anon_sym_float] = ACTIONS(2913), - [anon_sym_range] = ACTIONS(2913), - [anon_sym_i8] = ACTIONS(2913), - [anon_sym_i16] = ACTIONS(2913), - [anon_sym_i32] = ACTIONS(2913), - [anon_sym_i64] = ACTIONS(2913), - [anon_sym_u8] = ACTIONS(2913), - [anon_sym_u16] = ACTIONS(2913), - [anon_sym_u32] = ACTIONS(2913), - [anon_sym_u64] = ACTIONS(2913), - [anon_sym_isize] = ACTIONS(2913), - [anon_sym_usize] = ACTIONS(2913), - [anon_sym_f32] = ACTIONS(2913), - [anon_sym_f64] = ACTIONS(2913), - [anon_sym_c_char] = ACTIONS(2913), - [anon_sym_c_schar] = ACTIONS(2913), - [anon_sym_c_uchar] = ACTIONS(2913), - [anon_sym_c_short] = ACTIONS(2913), - [anon_sym_c_ushort] = ACTIONS(2913), - [anon_sym_c_int] = ACTIONS(2913), - [anon_sym_c_uint] = ACTIONS(2913), - [anon_sym_c_long] = ACTIONS(2913), - [anon_sym_c_ulong] = ACTIONS(2913), - [anon_sym_c_longlong] = ACTIONS(2913), - [anon_sym_c_ulonglong] = ACTIONS(2913), - [anon_sym_c_float] = ACTIONS(2913), - [anon_sym_c_double] = ACTIONS(2913), - [anon_sym_c_longdouble] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_yield] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_defer] = ACTIONS(2913), - [anon_sym_errdefer] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_else] = ACTIONS(2913), - [anon_sym_while] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_match] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_try] = ACTIONS(2913), - [anon_sym_DOT] = ACTIONS(2911), - [anon_sym_true] = ACTIONS(2913), - [anon_sym_false] = ACTIONS(2913), - [sym_none] = ACTIONS(2913), - [sym_undefined] = ACTIONS(2913), - [sym_sink] = ACTIONS(2913), - [sym_integer] = ACTIONS(2913), - [sym_float] = ACTIONS(2911), - [anon_sym_DQUOTE] = ACTIONS(2911), - [sym_multiline_string] = ACTIONS(2911), - [sym_character] = ACTIONS(2911), + [ts_builtin_sym_end] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2915), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2911), + [sym__newline] = ACTIONS(2913), }, [STATE(1205)] = { - [ts_builtin_sym_end] = ACTIONS(2915), - [sym_identifier] = ACTIONS(2917), - [anon_sym_import] = ACTIONS(2917), - [anon_sym_func] = ACTIONS(2917), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym_RPAREN] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_RBRACE] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_DOLLAR] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_void] = ACTIONS(2917), - [anon_sym_anyopaque] = ACTIONS(2917), - [anon_sym_bool] = ACTIONS(2917), - [anon_sym_int] = ACTIONS(2917), - [anon_sym_float] = ACTIONS(2917), - [anon_sym_range] = ACTIONS(2917), - [anon_sym_i8] = ACTIONS(2917), - [anon_sym_i16] = ACTIONS(2917), - [anon_sym_i32] = ACTIONS(2917), - [anon_sym_i64] = ACTIONS(2917), - [anon_sym_u8] = ACTIONS(2917), - [anon_sym_u16] = ACTIONS(2917), - [anon_sym_u32] = ACTIONS(2917), - [anon_sym_u64] = ACTIONS(2917), - [anon_sym_isize] = ACTIONS(2917), - [anon_sym_usize] = ACTIONS(2917), - [anon_sym_f32] = ACTIONS(2917), - [anon_sym_f64] = ACTIONS(2917), - [anon_sym_c_char] = ACTIONS(2917), - [anon_sym_c_schar] = ACTIONS(2917), - [anon_sym_c_uchar] = ACTIONS(2917), - [anon_sym_c_short] = ACTIONS(2917), - [anon_sym_c_ushort] = ACTIONS(2917), - [anon_sym_c_int] = ACTIONS(2917), - [anon_sym_c_uint] = ACTIONS(2917), - [anon_sym_c_long] = ACTIONS(2917), - [anon_sym_c_ulong] = ACTIONS(2917), - [anon_sym_c_longlong] = ACTIONS(2917), - [anon_sym_c_ulonglong] = ACTIONS(2917), - [anon_sym_c_float] = ACTIONS(2917), - [anon_sym_c_double] = ACTIONS(2917), - [anon_sym_c_longdouble] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_defer] = ACTIONS(2917), - [anon_sym_errdefer] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_else] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_DOT] = ACTIONS(2915), - [anon_sym_true] = ACTIONS(2917), - [anon_sym_false] = ACTIONS(2917), - [sym_none] = ACTIONS(2917), - [sym_undefined] = ACTIONS(2917), - [sym_sink] = ACTIONS(2917), - [sym_integer] = ACTIONS(2917), - [sym_float] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(2915), - [sym_multiline_string] = ACTIONS(2915), - [sym_character] = ACTIONS(2915), + [ts_builtin_sym_end] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2919), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2915), + [sym__newline] = ACTIONS(2917), }, [STATE(1206)] = { - [ts_builtin_sym_end] = ACTIONS(2919), - [sym_identifier] = ACTIONS(2921), - [anon_sym_import] = ACTIONS(2921), - [anon_sym_func] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_RPAREN] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_RBRACE] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_void] = ACTIONS(2921), - [anon_sym_anyopaque] = ACTIONS(2921), - [anon_sym_bool] = ACTIONS(2921), - [anon_sym_int] = ACTIONS(2921), - [anon_sym_float] = ACTIONS(2921), - [anon_sym_range] = ACTIONS(2921), - [anon_sym_i8] = ACTIONS(2921), - [anon_sym_i16] = ACTIONS(2921), - [anon_sym_i32] = ACTIONS(2921), - [anon_sym_i64] = ACTIONS(2921), - [anon_sym_u8] = ACTIONS(2921), - [anon_sym_u16] = ACTIONS(2921), - [anon_sym_u32] = ACTIONS(2921), - [anon_sym_u64] = ACTIONS(2921), - [anon_sym_isize] = ACTIONS(2921), - [anon_sym_usize] = ACTIONS(2921), - [anon_sym_f32] = ACTIONS(2921), - [anon_sym_f64] = ACTIONS(2921), - [anon_sym_c_char] = ACTIONS(2921), - [anon_sym_c_schar] = ACTIONS(2921), - [anon_sym_c_uchar] = ACTIONS(2921), - [anon_sym_c_short] = ACTIONS(2921), - [anon_sym_c_ushort] = ACTIONS(2921), - [anon_sym_c_int] = ACTIONS(2921), - [anon_sym_c_uint] = ACTIONS(2921), - [anon_sym_c_long] = ACTIONS(2921), - [anon_sym_c_ulong] = ACTIONS(2921), - [anon_sym_c_longlong] = ACTIONS(2921), - [anon_sym_c_ulonglong] = ACTIONS(2921), - [anon_sym_c_float] = ACTIONS(2921), - [anon_sym_c_double] = ACTIONS(2921), - [anon_sym_c_longdouble] = ACTIONS(2921), - [anon_sym_return] = ACTIONS(2921), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_break] = ACTIONS(2921), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_defer] = ACTIONS(2921), - [anon_sym_errdefer] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_else] = ACTIONS(2921), - [anon_sym_while] = ACTIONS(2921), - [anon_sym_for] = ACTIONS(2921), - [anon_sym_match] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2921), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_true] = ACTIONS(2921), - [anon_sym_false] = ACTIONS(2921), - [sym_none] = ACTIONS(2921), - [sym_undefined] = ACTIONS(2921), - [sym_sink] = ACTIONS(2921), - [sym_integer] = ACTIONS(2921), - [sym_float] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [sym_multiline_string] = ACTIONS(2919), - [sym_character] = ACTIONS(2919), + [ts_builtin_sym_end] = ACTIONS(2921), + [sym_identifier] = ACTIONS(2923), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2919), + [sym__newline] = ACTIONS(2921), }, [STATE(1207)] = { - [ts_builtin_sym_end] = ACTIONS(2923), - [sym_identifier] = ACTIONS(2925), - [anon_sym_import] = ACTIONS(2925), - [anon_sym_func] = ACTIONS(2925), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_RPAREN] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_RBRACE] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_DOLLAR] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_void] = ACTIONS(2925), - [anon_sym_anyopaque] = ACTIONS(2925), - [anon_sym_bool] = ACTIONS(2925), - [anon_sym_int] = ACTIONS(2925), - [anon_sym_float] = ACTIONS(2925), - [anon_sym_range] = ACTIONS(2925), - [anon_sym_i8] = ACTIONS(2925), - [anon_sym_i16] = ACTIONS(2925), - [anon_sym_i32] = ACTIONS(2925), - [anon_sym_i64] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2925), - [anon_sym_u16] = ACTIONS(2925), - [anon_sym_u32] = ACTIONS(2925), - [anon_sym_u64] = ACTIONS(2925), - [anon_sym_isize] = ACTIONS(2925), - [anon_sym_usize] = ACTIONS(2925), - [anon_sym_f32] = ACTIONS(2925), - [anon_sym_f64] = ACTIONS(2925), - [anon_sym_c_char] = ACTIONS(2925), - [anon_sym_c_schar] = ACTIONS(2925), - [anon_sym_c_uchar] = ACTIONS(2925), - [anon_sym_c_short] = ACTIONS(2925), - [anon_sym_c_ushort] = ACTIONS(2925), - [anon_sym_c_int] = ACTIONS(2925), - [anon_sym_c_uint] = ACTIONS(2925), - [anon_sym_c_long] = ACTIONS(2925), - [anon_sym_c_ulong] = ACTIONS(2925), - [anon_sym_c_longlong] = ACTIONS(2925), - [anon_sym_c_ulonglong] = ACTIONS(2925), - [anon_sym_c_float] = ACTIONS(2925), - [anon_sym_c_double] = ACTIONS(2925), - [anon_sym_c_longdouble] = ACTIONS(2925), - [anon_sym_return] = ACTIONS(2925), - [anon_sym_yield] = ACTIONS(2925), - [anon_sym_break] = ACTIONS(2925), - [anon_sym_continue] = ACTIONS(2925), - [anon_sym_defer] = ACTIONS(2925), - [anon_sym_errdefer] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2925), - [anon_sym_else] = ACTIONS(2925), - [anon_sym_while] = ACTIONS(2925), - [anon_sym_for] = ACTIONS(2925), - [anon_sym_match] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_try] = ACTIONS(2925), - [anon_sym_DOT] = ACTIONS(2923), - [anon_sym_true] = ACTIONS(2925), - [anon_sym_false] = ACTIONS(2925), - [sym_none] = ACTIONS(2925), - [sym_undefined] = ACTIONS(2925), - [sym_sink] = ACTIONS(2925), - [sym_integer] = ACTIONS(2925), - [sym_float] = ACTIONS(2923), - [anon_sym_DQUOTE] = ACTIONS(2923), - [sym_multiline_string] = ACTIONS(2923), - [sym_character] = ACTIONS(2923), + [ts_builtin_sym_end] = ACTIONS(2925), + [sym_identifier] = ACTIONS(2927), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2923), + [sym__newline] = ACTIONS(2925), }, [STATE(1208)] = { - [ts_builtin_sym_end] = ACTIONS(2927), - [sym_identifier] = ACTIONS(2929), - [anon_sym_import] = ACTIONS(2929), - [anon_sym_func] = ACTIONS(2929), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_struct] = ACTIONS(2929), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym_RPAREN] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_RBRACE] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_DOLLAR] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_void] = ACTIONS(2929), - [anon_sym_anyopaque] = ACTIONS(2929), - [anon_sym_bool] = ACTIONS(2929), - [anon_sym_int] = ACTIONS(2929), - [anon_sym_float] = ACTIONS(2929), - [anon_sym_range] = ACTIONS(2929), - [anon_sym_i8] = ACTIONS(2929), - [anon_sym_i16] = ACTIONS(2929), - [anon_sym_i32] = ACTIONS(2929), - [anon_sym_i64] = ACTIONS(2929), - [anon_sym_u8] = ACTIONS(2929), - [anon_sym_u16] = ACTIONS(2929), - [anon_sym_u32] = ACTIONS(2929), - [anon_sym_u64] = ACTIONS(2929), - [anon_sym_isize] = ACTIONS(2929), - [anon_sym_usize] = ACTIONS(2929), - [anon_sym_f32] = ACTIONS(2929), - [anon_sym_f64] = ACTIONS(2929), - [anon_sym_c_char] = ACTIONS(2929), - [anon_sym_c_schar] = ACTIONS(2929), - [anon_sym_c_uchar] = ACTIONS(2929), - [anon_sym_c_short] = ACTIONS(2929), - [anon_sym_c_ushort] = ACTIONS(2929), - [anon_sym_c_int] = ACTIONS(2929), - [anon_sym_c_uint] = ACTIONS(2929), - [anon_sym_c_long] = ACTIONS(2929), - [anon_sym_c_ulong] = ACTIONS(2929), - [anon_sym_c_longlong] = ACTIONS(2929), - [anon_sym_c_ulonglong] = ACTIONS(2929), - [anon_sym_c_float] = ACTIONS(2929), - [anon_sym_c_double] = ACTIONS(2929), - [anon_sym_c_longdouble] = ACTIONS(2929), - [anon_sym_return] = ACTIONS(2929), - [anon_sym_yield] = ACTIONS(2929), - [anon_sym_break] = ACTIONS(2929), - [anon_sym_continue] = ACTIONS(2929), - [anon_sym_defer] = ACTIONS(2929), - [anon_sym_errdefer] = ACTIONS(2929), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_else] = ACTIONS(2929), - [anon_sym_while] = ACTIONS(2929), - [anon_sym_for] = ACTIONS(2929), - [anon_sym_match] = ACTIONS(2929), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_try] = ACTIONS(2929), - [anon_sym_DOT] = ACTIONS(2927), - [anon_sym_true] = ACTIONS(2929), - [anon_sym_false] = ACTIONS(2929), - [sym_none] = ACTIONS(2929), - [sym_undefined] = ACTIONS(2929), - [sym_sink] = ACTIONS(2929), - [sym_integer] = ACTIONS(2929), - [sym_float] = ACTIONS(2927), - [anon_sym_DQUOTE] = ACTIONS(2927), - [sym_multiline_string] = ACTIONS(2927), - [sym_character] = ACTIONS(2927), + [ts_builtin_sym_end] = ACTIONS(2929), + [sym_identifier] = ACTIONS(2931), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2927), + [sym__newline] = ACTIONS(2929), }, [STATE(1209)] = { - [ts_builtin_sym_end] = ACTIONS(2931), - [sym_identifier] = ACTIONS(2933), - [anon_sym_import] = ACTIONS(2933), - [anon_sym_func] = ACTIONS(2933), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_struct] = ACTIONS(2933), - [anon_sym_LPAREN] = ACTIONS(2931), - [anon_sym_RPAREN] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_RBRACE] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_DOLLAR] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2931), - [anon_sym_void] = ACTIONS(2933), - [anon_sym_anyopaque] = ACTIONS(2933), - [anon_sym_bool] = ACTIONS(2933), - [anon_sym_int] = ACTIONS(2933), - [anon_sym_float] = ACTIONS(2933), - [anon_sym_range] = ACTIONS(2933), - [anon_sym_i8] = ACTIONS(2933), - [anon_sym_i16] = ACTIONS(2933), - [anon_sym_i32] = ACTIONS(2933), - [anon_sym_i64] = ACTIONS(2933), - [anon_sym_u8] = ACTIONS(2933), - [anon_sym_u16] = ACTIONS(2933), - [anon_sym_u32] = ACTIONS(2933), - [anon_sym_u64] = ACTIONS(2933), - [anon_sym_isize] = ACTIONS(2933), - [anon_sym_usize] = ACTIONS(2933), - [anon_sym_f32] = ACTIONS(2933), - [anon_sym_f64] = ACTIONS(2933), - [anon_sym_c_char] = ACTIONS(2933), - [anon_sym_c_schar] = ACTIONS(2933), - [anon_sym_c_uchar] = ACTIONS(2933), - [anon_sym_c_short] = ACTIONS(2933), - [anon_sym_c_ushort] = ACTIONS(2933), - [anon_sym_c_int] = ACTIONS(2933), - [anon_sym_c_uint] = ACTIONS(2933), - [anon_sym_c_long] = ACTIONS(2933), - [anon_sym_c_ulong] = ACTIONS(2933), - [anon_sym_c_longlong] = ACTIONS(2933), - [anon_sym_c_ulonglong] = ACTIONS(2933), - [anon_sym_c_float] = ACTIONS(2933), - [anon_sym_c_double] = ACTIONS(2933), - [anon_sym_c_longdouble] = ACTIONS(2933), - [anon_sym_return] = ACTIONS(2933), - [anon_sym_yield] = ACTIONS(2933), - [anon_sym_break] = ACTIONS(2933), - [anon_sym_continue] = ACTIONS(2933), - [anon_sym_defer] = ACTIONS(2933), - [anon_sym_errdefer] = ACTIONS(2933), - [anon_sym_if] = ACTIONS(2933), - [anon_sym_else] = ACTIONS(2933), - [anon_sym_while] = ACTIONS(2933), - [anon_sym_for] = ACTIONS(2933), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_try] = ACTIONS(2933), - [anon_sym_DOT] = ACTIONS(2931), - [anon_sym_true] = ACTIONS(2933), - [anon_sym_false] = ACTIONS(2933), - [sym_none] = ACTIONS(2933), - [sym_undefined] = ACTIONS(2933), - [sym_sink] = ACTIONS(2933), - [sym_integer] = ACTIONS(2933), - [sym_float] = ACTIONS(2931), - [anon_sym_DQUOTE] = ACTIONS(2931), - [sym_multiline_string] = ACTIONS(2931), - [sym_character] = ACTIONS(2931), + [ts_builtin_sym_end] = ACTIONS(2933), + [sym_identifier] = ACTIONS(2935), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2931), + [sym__newline] = ACTIONS(2933), }, [STATE(1210)] = { - [ts_builtin_sym_end] = ACTIONS(2935), - [sym_identifier] = ACTIONS(2937), - [anon_sym_import] = ACTIONS(2937), - [anon_sym_func] = ACTIONS(2937), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_struct] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_RPAREN] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_RBRACE] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_DOLLAR] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_void] = ACTIONS(2937), - [anon_sym_anyopaque] = ACTIONS(2937), - [anon_sym_bool] = ACTIONS(2937), - [anon_sym_int] = ACTIONS(2937), - [anon_sym_float] = ACTIONS(2937), - [anon_sym_range] = ACTIONS(2937), - [anon_sym_i8] = ACTIONS(2937), - [anon_sym_i16] = ACTIONS(2937), - [anon_sym_i32] = ACTIONS(2937), - [anon_sym_i64] = ACTIONS(2937), - [anon_sym_u8] = ACTIONS(2937), - [anon_sym_u16] = ACTIONS(2937), - [anon_sym_u32] = ACTIONS(2937), - [anon_sym_u64] = ACTIONS(2937), - [anon_sym_isize] = ACTIONS(2937), - [anon_sym_usize] = ACTIONS(2937), - [anon_sym_f32] = ACTIONS(2937), - [anon_sym_f64] = ACTIONS(2937), - [anon_sym_c_char] = ACTIONS(2937), - [anon_sym_c_schar] = ACTIONS(2937), - [anon_sym_c_uchar] = ACTIONS(2937), - [anon_sym_c_short] = ACTIONS(2937), - [anon_sym_c_ushort] = ACTIONS(2937), - [anon_sym_c_int] = ACTIONS(2937), - [anon_sym_c_uint] = ACTIONS(2937), - [anon_sym_c_long] = ACTIONS(2937), - [anon_sym_c_ulong] = ACTIONS(2937), - [anon_sym_c_longlong] = ACTIONS(2937), - [anon_sym_c_ulonglong] = ACTIONS(2937), - [anon_sym_c_float] = ACTIONS(2937), - [anon_sym_c_double] = ACTIONS(2937), - [anon_sym_c_longdouble] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2937), - [anon_sym_break] = ACTIONS(2937), - [anon_sym_continue] = ACTIONS(2937), - [anon_sym_defer] = ACTIONS(2937), - [anon_sym_errdefer] = ACTIONS(2937), - [anon_sym_if] = ACTIONS(2937), - [anon_sym_else] = ACTIONS(2937), - [anon_sym_while] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2937), - [anon_sym_match] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2937), - [anon_sym_DOT] = ACTIONS(2935), - [anon_sym_true] = ACTIONS(2937), - [anon_sym_false] = ACTIONS(2937), - [sym_none] = ACTIONS(2937), - [sym_undefined] = ACTIONS(2937), - [sym_sink] = ACTIONS(2937), - [sym_integer] = ACTIONS(2937), - [sym_float] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [sym_multiline_string] = ACTIONS(2935), - [sym_character] = ACTIONS(2935), + [ts_builtin_sym_end] = ACTIONS(2937), + [sym_identifier] = ACTIONS(2939), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2935), + [sym__newline] = ACTIONS(2937), }, [STATE(1211)] = { - [ts_builtin_sym_end] = ACTIONS(2939), - [sym_identifier] = ACTIONS(2941), - [anon_sym_import] = ACTIONS(2941), - [anon_sym_func] = ACTIONS(2941), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_struct] = ACTIONS(2941), - [anon_sym_LPAREN] = ACTIONS(2939), - [anon_sym_RPAREN] = ACTIONS(2939), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_RBRACE] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_DOLLAR] = ACTIONS(2939), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_void] = ACTIONS(2941), - [anon_sym_anyopaque] = ACTIONS(2941), - [anon_sym_bool] = ACTIONS(2941), - [anon_sym_int] = ACTIONS(2941), - [anon_sym_float] = ACTIONS(2941), - [anon_sym_range] = ACTIONS(2941), - [anon_sym_i8] = ACTIONS(2941), - [anon_sym_i16] = ACTIONS(2941), - [anon_sym_i32] = ACTIONS(2941), - [anon_sym_i64] = ACTIONS(2941), - [anon_sym_u8] = ACTIONS(2941), - [anon_sym_u16] = ACTIONS(2941), - [anon_sym_u32] = ACTIONS(2941), - [anon_sym_u64] = ACTIONS(2941), - [anon_sym_isize] = ACTIONS(2941), - [anon_sym_usize] = ACTIONS(2941), - [anon_sym_f32] = ACTIONS(2941), - [anon_sym_f64] = ACTIONS(2941), - [anon_sym_c_char] = ACTIONS(2941), - [anon_sym_c_schar] = ACTIONS(2941), - [anon_sym_c_uchar] = ACTIONS(2941), - [anon_sym_c_short] = ACTIONS(2941), - [anon_sym_c_ushort] = ACTIONS(2941), - [anon_sym_c_int] = ACTIONS(2941), - [anon_sym_c_uint] = ACTIONS(2941), - [anon_sym_c_long] = ACTIONS(2941), - [anon_sym_c_ulong] = ACTIONS(2941), - [anon_sym_c_longlong] = ACTIONS(2941), - [anon_sym_c_ulonglong] = ACTIONS(2941), - [anon_sym_c_float] = ACTIONS(2941), - [anon_sym_c_double] = ACTIONS(2941), - [anon_sym_c_longdouble] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_yield] = ACTIONS(2941), - [anon_sym_break] = ACTIONS(2941), - [anon_sym_continue] = ACTIONS(2941), - [anon_sym_defer] = ACTIONS(2941), - [anon_sym_errdefer] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_else] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_DOT] = ACTIONS(2939), - [anon_sym_true] = ACTIONS(2941), - [anon_sym_false] = ACTIONS(2941), - [sym_none] = ACTIONS(2941), - [sym_undefined] = ACTIONS(2941), - [sym_sink] = ACTIONS(2941), - [sym_integer] = ACTIONS(2941), - [sym_float] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym_multiline_string] = ACTIONS(2939), - [sym_character] = ACTIONS(2939), + [ts_builtin_sym_end] = ACTIONS(2941), + [sym_identifier] = ACTIONS(2943), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2939), + [sym__newline] = ACTIONS(2941), }, [STATE(1212)] = { - [ts_builtin_sym_end] = ACTIONS(2943), - [sym_identifier] = ACTIONS(2945), - [anon_sym_import] = ACTIONS(2945), - [anon_sym_func] = ACTIONS(2945), - [anon_sym_BANG] = ACTIONS(2943), - [anon_sym_struct] = ACTIONS(2945), - [anon_sym_LPAREN] = ACTIONS(2943), - [anon_sym_RPAREN] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_RBRACE] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_DOLLAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2943), - [anon_sym_void] = ACTIONS(2945), - [anon_sym_anyopaque] = ACTIONS(2945), - [anon_sym_bool] = ACTIONS(2945), - [anon_sym_int] = ACTIONS(2945), - [anon_sym_float] = ACTIONS(2945), - [anon_sym_range] = ACTIONS(2945), - [anon_sym_i8] = ACTIONS(2945), - [anon_sym_i16] = ACTIONS(2945), - [anon_sym_i32] = ACTIONS(2945), - [anon_sym_i64] = ACTIONS(2945), - [anon_sym_u8] = ACTIONS(2945), - [anon_sym_u16] = ACTIONS(2945), - [anon_sym_u32] = ACTIONS(2945), - [anon_sym_u64] = ACTIONS(2945), - [anon_sym_isize] = ACTIONS(2945), - [anon_sym_usize] = ACTIONS(2945), - [anon_sym_f32] = ACTIONS(2945), - [anon_sym_f64] = ACTIONS(2945), - [anon_sym_c_char] = ACTIONS(2945), - [anon_sym_c_schar] = ACTIONS(2945), - [anon_sym_c_uchar] = ACTIONS(2945), - [anon_sym_c_short] = ACTIONS(2945), - [anon_sym_c_ushort] = ACTIONS(2945), - [anon_sym_c_int] = ACTIONS(2945), - [anon_sym_c_uint] = ACTIONS(2945), - [anon_sym_c_long] = ACTIONS(2945), - [anon_sym_c_ulong] = ACTIONS(2945), - [anon_sym_c_longlong] = ACTIONS(2945), - [anon_sym_c_ulonglong] = ACTIONS(2945), - [anon_sym_c_float] = ACTIONS(2945), - [anon_sym_c_double] = ACTIONS(2945), - [anon_sym_c_longdouble] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_yield] = ACTIONS(2945), - [anon_sym_break] = ACTIONS(2945), - [anon_sym_continue] = ACTIONS(2945), - [anon_sym_defer] = ACTIONS(2945), - [anon_sym_errdefer] = ACTIONS(2945), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_match] = ACTIONS(2945), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_try] = ACTIONS(2945), - [anon_sym_DOT] = ACTIONS(2943), - [anon_sym_true] = ACTIONS(2945), - [anon_sym_false] = ACTIONS(2945), - [sym_none] = ACTIONS(2945), - [sym_undefined] = ACTIONS(2945), - [sym_sink] = ACTIONS(2945), - [sym_integer] = ACTIONS(2945), - [sym_float] = ACTIONS(2943), - [anon_sym_DQUOTE] = ACTIONS(2943), - [sym_multiline_string] = ACTIONS(2943), - [sym_character] = ACTIONS(2943), + [ts_builtin_sym_end] = ACTIONS(2945), + [sym_identifier] = ACTIONS(2947), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2943), + [sym__newline] = ACTIONS(2945), }, [STATE(1213)] = { - [ts_builtin_sym_end] = ACTIONS(2947), - [sym_identifier] = ACTIONS(2949), - [anon_sym_import] = ACTIONS(2949), - [anon_sym_func] = ACTIONS(2949), - [anon_sym_BANG] = ACTIONS(2947), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2947), - [anon_sym_RPAREN] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_RBRACE] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_DOLLAR] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2947), - [anon_sym_void] = ACTIONS(2949), - [anon_sym_anyopaque] = ACTIONS(2949), - [anon_sym_bool] = ACTIONS(2949), - [anon_sym_int] = ACTIONS(2949), - [anon_sym_float] = ACTIONS(2949), - [anon_sym_range] = ACTIONS(2949), - [anon_sym_i8] = ACTIONS(2949), - [anon_sym_i16] = ACTIONS(2949), - [anon_sym_i32] = ACTIONS(2949), - [anon_sym_i64] = ACTIONS(2949), - [anon_sym_u8] = ACTIONS(2949), - [anon_sym_u16] = ACTIONS(2949), - [anon_sym_u32] = ACTIONS(2949), - [anon_sym_u64] = ACTIONS(2949), - [anon_sym_isize] = ACTIONS(2949), - [anon_sym_usize] = ACTIONS(2949), - [anon_sym_f32] = ACTIONS(2949), - [anon_sym_f64] = ACTIONS(2949), - [anon_sym_c_char] = ACTIONS(2949), - [anon_sym_c_schar] = ACTIONS(2949), - [anon_sym_c_uchar] = ACTIONS(2949), - [anon_sym_c_short] = ACTIONS(2949), - [anon_sym_c_ushort] = ACTIONS(2949), - [anon_sym_c_int] = ACTIONS(2949), - [anon_sym_c_uint] = ACTIONS(2949), - [anon_sym_c_long] = ACTIONS(2949), - [anon_sym_c_ulong] = ACTIONS(2949), - [anon_sym_c_longlong] = ACTIONS(2949), - [anon_sym_c_ulonglong] = ACTIONS(2949), - [anon_sym_c_float] = ACTIONS(2949), - [anon_sym_c_double] = ACTIONS(2949), - [anon_sym_c_longdouble] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_yield] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_defer] = ACTIONS(2949), - [anon_sym_errdefer] = ACTIONS(2949), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_else] = ACTIONS(2949), - [anon_sym_while] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_match] = ACTIONS(2949), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_try] = ACTIONS(2949), - [anon_sym_DOT] = ACTIONS(2947), - [anon_sym_true] = ACTIONS(2949), - [anon_sym_false] = ACTIONS(2949), - [sym_none] = ACTIONS(2949), - [sym_undefined] = ACTIONS(2949), - [sym_sink] = ACTIONS(2949), - [sym_integer] = ACTIONS(2949), - [sym_float] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(2947), - [sym_multiline_string] = ACTIONS(2947), - [sym_character] = ACTIONS(2947), + [ts_builtin_sym_end] = ACTIONS(2949), + [sym_identifier] = ACTIONS(2951), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2947), + [sym__newline] = ACTIONS(2949), }, [STATE(1214)] = { - [ts_builtin_sym_end] = ACTIONS(2951), - [sym_identifier] = ACTIONS(2953), - [anon_sym_import] = ACTIONS(2953), - [anon_sym_func] = ACTIONS(2953), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_RPAREN] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_RBRACE] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_DOLLAR] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_void] = ACTIONS(2953), - [anon_sym_anyopaque] = ACTIONS(2953), - [anon_sym_bool] = ACTIONS(2953), - [anon_sym_int] = ACTIONS(2953), - [anon_sym_float] = ACTIONS(2953), - [anon_sym_range] = ACTIONS(2953), - [anon_sym_i8] = ACTIONS(2953), - [anon_sym_i16] = ACTIONS(2953), - [anon_sym_i32] = ACTIONS(2953), - [anon_sym_i64] = ACTIONS(2953), - [anon_sym_u8] = ACTIONS(2953), - [anon_sym_u16] = ACTIONS(2953), - [anon_sym_u32] = ACTIONS(2953), - [anon_sym_u64] = ACTIONS(2953), - [anon_sym_isize] = ACTIONS(2953), - [anon_sym_usize] = ACTIONS(2953), - [anon_sym_f32] = ACTIONS(2953), - [anon_sym_f64] = ACTIONS(2953), - [anon_sym_c_char] = ACTIONS(2953), - [anon_sym_c_schar] = ACTIONS(2953), - [anon_sym_c_uchar] = ACTIONS(2953), - [anon_sym_c_short] = ACTIONS(2953), - [anon_sym_c_ushort] = ACTIONS(2953), - [anon_sym_c_int] = ACTIONS(2953), - [anon_sym_c_uint] = ACTIONS(2953), - [anon_sym_c_long] = ACTIONS(2953), - [anon_sym_c_ulong] = ACTIONS(2953), - [anon_sym_c_longlong] = ACTIONS(2953), - [anon_sym_c_ulonglong] = ACTIONS(2953), - [anon_sym_c_float] = ACTIONS(2953), - [anon_sym_c_double] = ACTIONS(2953), - [anon_sym_c_longdouble] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_break] = ACTIONS(2953), - [anon_sym_continue] = ACTIONS(2953), - [anon_sym_defer] = ACTIONS(2953), - [anon_sym_errdefer] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_else] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_true] = ACTIONS(2953), - [anon_sym_false] = ACTIONS(2953), - [sym_none] = ACTIONS(2953), - [sym_undefined] = ACTIONS(2953), - [sym_sink] = ACTIONS(2953), - [sym_integer] = ACTIONS(2953), - [sym_float] = ACTIONS(2951), - [anon_sym_DQUOTE] = ACTIONS(2951), - [sym_multiline_string] = ACTIONS(2951), - [sym_character] = ACTIONS(2951), + [ts_builtin_sym_end] = ACTIONS(2953), + [sym_identifier] = ACTIONS(2955), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2951), + [sym__newline] = ACTIONS(2953), }, [STATE(1215)] = { - [ts_builtin_sym_end] = ACTIONS(2955), - [sym_identifier] = ACTIONS(2957), - [anon_sym_import] = ACTIONS(2957), - [anon_sym_func] = ACTIONS(2957), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_struct] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2955), - [anon_sym_RPAREN] = ACTIONS(2955), - [anon_sym_LBRACE] = ACTIONS(2955), - [anon_sym_RBRACE] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_DOLLAR] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_void] = ACTIONS(2957), - [anon_sym_anyopaque] = ACTIONS(2957), - [anon_sym_bool] = ACTIONS(2957), - [anon_sym_int] = ACTIONS(2957), - [anon_sym_float] = ACTIONS(2957), - [anon_sym_range] = ACTIONS(2957), - [anon_sym_i8] = ACTIONS(2957), - [anon_sym_i16] = ACTIONS(2957), - [anon_sym_i32] = ACTIONS(2957), - [anon_sym_i64] = ACTIONS(2957), - [anon_sym_u8] = ACTIONS(2957), - [anon_sym_u16] = ACTIONS(2957), - [anon_sym_u32] = ACTIONS(2957), - [anon_sym_u64] = ACTIONS(2957), - [anon_sym_isize] = ACTIONS(2957), - [anon_sym_usize] = ACTIONS(2957), - [anon_sym_f32] = ACTIONS(2957), - [anon_sym_f64] = ACTIONS(2957), - [anon_sym_c_char] = ACTIONS(2957), - [anon_sym_c_schar] = ACTIONS(2957), - [anon_sym_c_uchar] = ACTIONS(2957), - [anon_sym_c_short] = ACTIONS(2957), - [anon_sym_c_ushort] = ACTIONS(2957), - [anon_sym_c_int] = ACTIONS(2957), - [anon_sym_c_uint] = ACTIONS(2957), - [anon_sym_c_long] = ACTIONS(2957), - [anon_sym_c_ulong] = ACTIONS(2957), - [anon_sym_c_longlong] = ACTIONS(2957), - [anon_sym_c_ulonglong] = ACTIONS(2957), - [anon_sym_c_float] = ACTIONS(2957), - [anon_sym_c_double] = ACTIONS(2957), - [anon_sym_c_longdouble] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2957), - [anon_sym_break] = ACTIONS(2957), - [anon_sym_continue] = ACTIONS(2957), - [anon_sym_defer] = ACTIONS(2957), - [anon_sym_errdefer] = ACTIONS(2957), - [anon_sym_if] = ACTIONS(2957), - [anon_sym_else] = ACTIONS(2957), - [anon_sym_while] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2957), - [anon_sym_match] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_try] = ACTIONS(2957), - [anon_sym_DOT] = ACTIONS(2955), - [anon_sym_true] = ACTIONS(2957), - [anon_sym_false] = ACTIONS(2957), - [sym_none] = ACTIONS(2957), - [sym_undefined] = ACTIONS(2957), - [sym_sink] = ACTIONS(2957), - [sym_integer] = ACTIONS(2957), - [sym_float] = ACTIONS(2955), - [anon_sym_DQUOTE] = ACTIONS(2955), - [sym_multiline_string] = ACTIONS(2955), - [sym_character] = ACTIONS(2955), + [ts_builtin_sym_end] = ACTIONS(2957), + [sym_identifier] = ACTIONS(2959), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2955), + [sym__newline] = ACTIONS(2957), }, [STATE(1216)] = { - [ts_builtin_sym_end] = ACTIONS(2959), - [sym_identifier] = ACTIONS(2961), - [anon_sym_import] = ACTIONS(2961), - [anon_sym_func] = ACTIONS(2961), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_RPAREN] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_RBRACE] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_void] = ACTIONS(2961), - [anon_sym_anyopaque] = ACTIONS(2961), - [anon_sym_bool] = ACTIONS(2961), - [anon_sym_int] = ACTIONS(2961), - [anon_sym_float] = ACTIONS(2961), - [anon_sym_range] = ACTIONS(2961), - [anon_sym_i8] = ACTIONS(2961), - [anon_sym_i16] = ACTIONS(2961), - [anon_sym_i32] = ACTIONS(2961), - [anon_sym_i64] = ACTIONS(2961), - [anon_sym_u8] = ACTIONS(2961), - [anon_sym_u16] = ACTIONS(2961), - [anon_sym_u32] = ACTIONS(2961), - [anon_sym_u64] = ACTIONS(2961), - [anon_sym_isize] = ACTIONS(2961), - [anon_sym_usize] = ACTIONS(2961), - [anon_sym_f32] = ACTIONS(2961), - [anon_sym_f64] = ACTIONS(2961), - [anon_sym_c_char] = ACTIONS(2961), - [anon_sym_c_schar] = ACTIONS(2961), - [anon_sym_c_uchar] = ACTIONS(2961), - [anon_sym_c_short] = ACTIONS(2961), - [anon_sym_c_ushort] = ACTIONS(2961), - [anon_sym_c_int] = ACTIONS(2961), - [anon_sym_c_uint] = ACTIONS(2961), - [anon_sym_c_long] = ACTIONS(2961), - [anon_sym_c_ulong] = ACTIONS(2961), - [anon_sym_c_longlong] = ACTIONS(2961), - [anon_sym_c_ulonglong] = ACTIONS(2961), - [anon_sym_c_float] = ACTIONS(2961), - [anon_sym_c_double] = ACTIONS(2961), - [anon_sym_c_longdouble] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2961), - [anon_sym_yield] = ACTIONS(2961), - [anon_sym_break] = ACTIONS(2961), - [anon_sym_continue] = ACTIONS(2961), - [anon_sym_defer] = ACTIONS(2961), - [anon_sym_errdefer] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_else] = ACTIONS(2961), - [anon_sym_while] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_match] = ACTIONS(2961), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2961), - [anon_sym_DOT] = ACTIONS(2959), - [anon_sym_true] = ACTIONS(2961), - [anon_sym_false] = ACTIONS(2961), - [sym_none] = ACTIONS(2961), - [sym_undefined] = ACTIONS(2961), - [sym_sink] = ACTIONS(2961), - [sym_integer] = ACTIONS(2961), - [sym_float] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym_multiline_string] = ACTIONS(2959), - [sym_character] = ACTIONS(2959), + [ts_builtin_sym_end] = ACTIONS(2961), + [sym_identifier] = ACTIONS(2963), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2959), + [sym__newline] = ACTIONS(2961), }, [STATE(1217)] = { - [ts_builtin_sym_end] = ACTIONS(2963), - [sym_identifier] = ACTIONS(2965), - [anon_sym_import] = ACTIONS(2965), - [anon_sym_func] = ACTIONS(2965), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(2963), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_RBRACE] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_DOLLAR] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_void] = ACTIONS(2965), - [anon_sym_anyopaque] = ACTIONS(2965), - [anon_sym_bool] = ACTIONS(2965), - [anon_sym_int] = ACTIONS(2965), - [anon_sym_float] = ACTIONS(2965), - [anon_sym_range] = ACTIONS(2965), - [anon_sym_i8] = ACTIONS(2965), - [anon_sym_i16] = ACTIONS(2965), - [anon_sym_i32] = ACTIONS(2965), - [anon_sym_i64] = ACTIONS(2965), - [anon_sym_u8] = ACTIONS(2965), - [anon_sym_u16] = ACTIONS(2965), - [anon_sym_u32] = ACTIONS(2965), - [anon_sym_u64] = ACTIONS(2965), - [anon_sym_isize] = ACTIONS(2965), - [anon_sym_usize] = ACTIONS(2965), - [anon_sym_f32] = ACTIONS(2965), - [anon_sym_f64] = ACTIONS(2965), - [anon_sym_c_char] = ACTIONS(2965), - [anon_sym_c_schar] = ACTIONS(2965), - [anon_sym_c_uchar] = ACTIONS(2965), - [anon_sym_c_short] = ACTIONS(2965), - [anon_sym_c_ushort] = ACTIONS(2965), - [anon_sym_c_int] = ACTIONS(2965), - [anon_sym_c_uint] = ACTIONS(2965), - [anon_sym_c_long] = ACTIONS(2965), - [anon_sym_c_ulong] = ACTIONS(2965), - [anon_sym_c_longlong] = ACTIONS(2965), - [anon_sym_c_ulonglong] = ACTIONS(2965), - [anon_sym_c_float] = ACTIONS(2965), - [anon_sym_c_double] = ACTIONS(2965), - [anon_sym_c_longdouble] = ACTIONS(2965), - [anon_sym_return] = ACTIONS(2965), - [anon_sym_yield] = ACTIONS(2965), - [anon_sym_break] = ACTIONS(2965), - [anon_sym_continue] = ACTIONS(2965), - [anon_sym_defer] = ACTIONS(2965), - [anon_sym_errdefer] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_else] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2965), - [anon_sym_match] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_try] = ACTIONS(2965), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_true] = ACTIONS(2965), - [anon_sym_false] = ACTIONS(2965), - [sym_none] = ACTIONS(2965), - [sym_undefined] = ACTIONS(2965), - [sym_sink] = ACTIONS(2965), - [sym_integer] = ACTIONS(2965), - [sym_float] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [sym_multiline_string] = ACTIONS(2963), - [sym_character] = ACTIONS(2963), + [ts_builtin_sym_end] = ACTIONS(2965), + [sym_identifier] = ACTIONS(2967), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2963), + [sym__newline] = ACTIONS(2965), }, [STATE(1218)] = { - [ts_builtin_sym_end] = ACTIONS(2967), - [sym_identifier] = ACTIONS(2969), - [anon_sym_import] = ACTIONS(2969), - [anon_sym_func] = ACTIONS(2969), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_LPAREN] = ACTIONS(2967), - [anon_sym_RPAREN] = ACTIONS(2967), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_RBRACE] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2967), - [anon_sym_DOLLAR] = ACTIONS(2967), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_void] = ACTIONS(2969), - [anon_sym_anyopaque] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_int] = ACTIONS(2969), - [anon_sym_float] = ACTIONS(2969), - [anon_sym_range] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_c_char] = ACTIONS(2969), - [anon_sym_c_schar] = ACTIONS(2969), - [anon_sym_c_uchar] = ACTIONS(2969), - [anon_sym_c_short] = ACTIONS(2969), - [anon_sym_c_ushort] = ACTIONS(2969), - [anon_sym_c_int] = ACTIONS(2969), - [anon_sym_c_uint] = ACTIONS(2969), - [anon_sym_c_long] = ACTIONS(2969), - [anon_sym_c_ulong] = ACTIONS(2969), - [anon_sym_c_longlong] = ACTIONS(2969), - [anon_sym_c_ulonglong] = ACTIONS(2969), - [anon_sym_c_float] = ACTIONS(2969), - [anon_sym_c_double] = ACTIONS(2969), - [anon_sym_c_longdouble] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_yield] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_defer] = ACTIONS(2969), - [anon_sym_errdefer] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_match] = ACTIONS(2969), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_DOT] = ACTIONS(2967), - [anon_sym_true] = ACTIONS(2969), - [anon_sym_false] = ACTIONS(2969), - [sym_none] = ACTIONS(2969), - [sym_undefined] = ACTIONS(2969), - [sym_sink] = ACTIONS(2969), - [sym_integer] = ACTIONS(2969), - [sym_float] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_multiline_string] = ACTIONS(2967), - [sym_character] = ACTIONS(2967), + [ts_builtin_sym_end] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2971), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2967), + [sym__newline] = ACTIONS(2969), }, [STATE(1219)] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2973), - [anon_sym_import] = ACTIONS(2973), - [anon_sym_func] = ACTIONS(2973), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_struct] = ACTIONS(2973), - [anon_sym_LPAREN] = ACTIONS(2971), - [anon_sym_RPAREN] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2971), - [anon_sym_LBRACK] = ACTIONS(2971), - [anon_sym_void] = ACTIONS(2973), - [anon_sym_anyopaque] = ACTIONS(2973), - [anon_sym_bool] = ACTIONS(2973), - [anon_sym_int] = ACTIONS(2973), - [anon_sym_float] = ACTIONS(2973), - [anon_sym_range] = ACTIONS(2973), - [anon_sym_i8] = ACTIONS(2973), - [anon_sym_i16] = ACTIONS(2973), - [anon_sym_i32] = ACTIONS(2973), - [anon_sym_i64] = ACTIONS(2973), - [anon_sym_u8] = ACTIONS(2973), - [anon_sym_u16] = ACTIONS(2973), - [anon_sym_u32] = ACTIONS(2973), - [anon_sym_u64] = ACTIONS(2973), - [anon_sym_isize] = ACTIONS(2973), - [anon_sym_usize] = ACTIONS(2973), - [anon_sym_f32] = ACTIONS(2973), - [anon_sym_f64] = ACTIONS(2973), - [anon_sym_c_char] = ACTIONS(2973), - [anon_sym_c_schar] = ACTIONS(2973), - [anon_sym_c_uchar] = ACTIONS(2973), - [anon_sym_c_short] = ACTIONS(2973), - [anon_sym_c_ushort] = ACTIONS(2973), - [anon_sym_c_int] = ACTIONS(2973), - [anon_sym_c_uint] = ACTIONS(2973), - [anon_sym_c_long] = ACTIONS(2973), - [anon_sym_c_ulong] = ACTIONS(2973), - [anon_sym_c_longlong] = ACTIONS(2973), - [anon_sym_c_ulonglong] = ACTIONS(2973), - [anon_sym_c_float] = ACTIONS(2973), - [anon_sym_c_double] = ACTIONS(2973), - [anon_sym_c_longdouble] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_break] = ACTIONS(2973), - [anon_sym_continue] = ACTIONS(2973), - [anon_sym_defer] = ACTIONS(2973), - [anon_sym_errdefer] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_else] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_DOT] = ACTIONS(2971), - [anon_sym_true] = ACTIONS(2973), - [anon_sym_false] = ACTIONS(2973), - [sym_none] = ACTIONS(2973), - [sym_undefined] = ACTIONS(2973), - [sym_sink] = ACTIONS(2973), - [sym_integer] = ACTIONS(2973), - [sym_float] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_multiline_string] = ACTIONS(2971), - [sym_character] = ACTIONS(2971), + [ts_builtin_sym_end] = ACTIONS(2973), + [sym_identifier] = ACTIONS(2975), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2971), + [sym__newline] = ACTIONS(2973), }, [STATE(1220)] = { - [ts_builtin_sym_end] = ACTIONS(2975), - [sym_identifier] = ACTIONS(2977), - [anon_sym_import] = ACTIONS(2977), - [anon_sym_func] = ACTIONS(2977), - [anon_sym_BANG] = ACTIONS(2975), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2975), - [anon_sym_RPAREN] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_RBRACE] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2975), - [anon_sym_LBRACK] = ACTIONS(2975), - [anon_sym_void] = ACTIONS(2977), - [anon_sym_anyopaque] = ACTIONS(2977), - [anon_sym_bool] = ACTIONS(2977), - [anon_sym_int] = ACTIONS(2977), - [anon_sym_float] = ACTIONS(2977), - [anon_sym_range] = ACTIONS(2977), - [anon_sym_i8] = ACTIONS(2977), - [anon_sym_i16] = ACTIONS(2977), - [anon_sym_i32] = ACTIONS(2977), - [anon_sym_i64] = ACTIONS(2977), - [anon_sym_u8] = ACTIONS(2977), - [anon_sym_u16] = ACTIONS(2977), - [anon_sym_u32] = ACTIONS(2977), - [anon_sym_u64] = ACTIONS(2977), - [anon_sym_isize] = ACTIONS(2977), - [anon_sym_usize] = ACTIONS(2977), - [anon_sym_f32] = ACTIONS(2977), - [anon_sym_f64] = ACTIONS(2977), - [anon_sym_c_char] = ACTIONS(2977), - [anon_sym_c_schar] = ACTIONS(2977), - [anon_sym_c_uchar] = ACTIONS(2977), - [anon_sym_c_short] = ACTIONS(2977), - [anon_sym_c_ushort] = ACTIONS(2977), - [anon_sym_c_int] = ACTIONS(2977), - [anon_sym_c_uint] = ACTIONS(2977), - [anon_sym_c_long] = ACTIONS(2977), - [anon_sym_c_ulong] = ACTIONS(2977), - [anon_sym_c_longlong] = ACTIONS(2977), - [anon_sym_c_ulonglong] = ACTIONS(2977), - [anon_sym_c_float] = ACTIONS(2977), - [anon_sym_c_double] = ACTIONS(2977), - [anon_sym_c_longdouble] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_break] = ACTIONS(2977), - [anon_sym_continue] = ACTIONS(2977), - [anon_sym_defer] = ACTIONS(2977), - [anon_sym_errdefer] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_else] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2975), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2975), - [anon_sym_true] = ACTIONS(2977), - [anon_sym_false] = ACTIONS(2977), - [sym_none] = ACTIONS(2977), - [sym_undefined] = ACTIONS(2977), - [sym_sink] = ACTIONS(2977), - [sym_integer] = ACTIONS(2977), - [sym_float] = ACTIONS(2975), - [anon_sym_DQUOTE] = ACTIONS(2975), - [sym_multiline_string] = ACTIONS(2975), - [sym_character] = ACTIONS(2975), + [ts_builtin_sym_end] = ACTIONS(2977), + [sym_identifier] = ACTIONS(2979), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2975), + [sym__newline] = ACTIONS(2977), }, [STATE(1221)] = { - [ts_builtin_sym_end] = ACTIONS(2979), - [sym_identifier] = ACTIONS(2981), - [anon_sym_import] = ACTIONS(2981), - [anon_sym_func] = ACTIONS(2981), - [anon_sym_BANG] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_RPAREN] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_RBRACE] = ACTIONS(2979), - [anon_sym_DASH] = ACTIONS(2979), - [anon_sym_DOLLAR] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_void] = ACTIONS(2981), - [anon_sym_anyopaque] = ACTIONS(2981), - [anon_sym_bool] = ACTIONS(2981), - [anon_sym_int] = ACTIONS(2981), - [anon_sym_float] = ACTIONS(2981), - [anon_sym_range] = ACTIONS(2981), - [anon_sym_i8] = ACTIONS(2981), - [anon_sym_i16] = ACTIONS(2981), - [anon_sym_i32] = ACTIONS(2981), - [anon_sym_i64] = ACTIONS(2981), - [anon_sym_u8] = ACTIONS(2981), - [anon_sym_u16] = ACTIONS(2981), - [anon_sym_u32] = ACTIONS(2981), - [anon_sym_u64] = ACTIONS(2981), - [anon_sym_isize] = ACTIONS(2981), - [anon_sym_usize] = ACTIONS(2981), - [anon_sym_f32] = ACTIONS(2981), - [anon_sym_f64] = ACTIONS(2981), - [anon_sym_c_char] = ACTIONS(2981), - [anon_sym_c_schar] = ACTIONS(2981), - [anon_sym_c_uchar] = ACTIONS(2981), - [anon_sym_c_short] = ACTIONS(2981), - [anon_sym_c_ushort] = ACTIONS(2981), - [anon_sym_c_int] = ACTIONS(2981), - [anon_sym_c_uint] = ACTIONS(2981), - [anon_sym_c_long] = ACTIONS(2981), - [anon_sym_c_ulong] = ACTIONS(2981), - [anon_sym_c_longlong] = ACTIONS(2981), - [anon_sym_c_ulonglong] = ACTIONS(2981), - [anon_sym_c_float] = ACTIONS(2981), - [anon_sym_c_double] = ACTIONS(2981), - [anon_sym_c_longdouble] = ACTIONS(2981), - [anon_sym_return] = ACTIONS(2981), - [anon_sym_yield] = ACTIONS(2981), - [anon_sym_break] = ACTIONS(2981), - [anon_sym_continue] = ACTIONS(2981), - [anon_sym_defer] = ACTIONS(2981), - [anon_sym_errdefer] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_else] = ACTIONS(2981), - [anon_sym_while] = ACTIONS(2981), - [anon_sym_for] = ACTIONS(2981), - [anon_sym_match] = ACTIONS(2981), - [anon_sym_AMP] = ACTIONS(2979), - [anon_sym_try] = ACTIONS(2981), - [anon_sym_DOT] = ACTIONS(2979), - [anon_sym_true] = ACTIONS(2981), - [anon_sym_false] = ACTIONS(2981), - [sym_none] = ACTIONS(2981), - [sym_undefined] = ACTIONS(2981), - [sym_sink] = ACTIONS(2981), - [sym_integer] = ACTIONS(2981), - [sym_float] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym_multiline_string] = ACTIONS(2979), - [sym_character] = ACTIONS(2979), + [ts_builtin_sym_end] = ACTIONS(2981), + [sym_identifier] = ACTIONS(2983), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2979), + [sym__newline] = ACTIONS(2981), }, [STATE(1222)] = { - [ts_builtin_sym_end] = ACTIONS(2983), - [sym_identifier] = ACTIONS(2985), - [anon_sym_import] = ACTIONS(2985), - [anon_sym_func] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2983), - [anon_sym_RPAREN] = ACTIONS(2983), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_DOLLAR] = ACTIONS(2983), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_void] = ACTIONS(2985), - [anon_sym_anyopaque] = ACTIONS(2985), - [anon_sym_bool] = ACTIONS(2985), - [anon_sym_int] = ACTIONS(2985), - [anon_sym_float] = ACTIONS(2985), - [anon_sym_range] = ACTIONS(2985), - [anon_sym_i8] = ACTIONS(2985), - [anon_sym_i16] = ACTIONS(2985), - [anon_sym_i32] = ACTIONS(2985), - [anon_sym_i64] = ACTIONS(2985), - [anon_sym_u8] = ACTIONS(2985), - [anon_sym_u16] = ACTIONS(2985), - [anon_sym_u32] = ACTIONS(2985), - [anon_sym_u64] = ACTIONS(2985), - [anon_sym_isize] = ACTIONS(2985), - [anon_sym_usize] = ACTIONS(2985), - [anon_sym_f32] = ACTIONS(2985), - [anon_sym_f64] = ACTIONS(2985), - [anon_sym_c_char] = ACTIONS(2985), - [anon_sym_c_schar] = ACTIONS(2985), - [anon_sym_c_uchar] = ACTIONS(2985), - [anon_sym_c_short] = ACTIONS(2985), - [anon_sym_c_ushort] = ACTIONS(2985), - [anon_sym_c_int] = ACTIONS(2985), - [anon_sym_c_uint] = ACTIONS(2985), - [anon_sym_c_long] = ACTIONS(2985), - [anon_sym_c_ulong] = ACTIONS(2985), - [anon_sym_c_longlong] = ACTIONS(2985), - [anon_sym_c_ulonglong] = ACTIONS(2985), - [anon_sym_c_float] = ACTIONS(2985), - [anon_sym_c_double] = ACTIONS(2985), - [anon_sym_c_longdouble] = ACTIONS(2985), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_yield] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_defer] = ACTIONS(2985), - [anon_sym_errdefer] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_else] = ACTIONS(2985), - [anon_sym_while] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_match] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_try] = ACTIONS(2985), - [anon_sym_DOT] = ACTIONS(2983), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [sym_none] = ACTIONS(2985), - [sym_undefined] = ACTIONS(2985), - [sym_sink] = ACTIONS(2985), - [sym_integer] = ACTIONS(2985), - [sym_float] = ACTIONS(2983), - [anon_sym_DQUOTE] = ACTIONS(2983), - [sym_multiline_string] = ACTIONS(2983), - [sym_character] = ACTIONS(2983), + [ts_builtin_sym_end] = ACTIONS(2985), + [sym_identifier] = ACTIONS(2987), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2983), + [sym__newline] = ACTIONS(2985), }, [STATE(1223)] = { - [ts_builtin_sym_end] = ACTIONS(2987), - [sym_identifier] = ACTIONS(2989), - [anon_sym_import] = ACTIONS(2989), - [anon_sym_func] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(2987), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_RPAREN] = ACTIONS(2987), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_DOLLAR] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_void] = ACTIONS(2989), - [anon_sym_anyopaque] = ACTIONS(2989), - [anon_sym_bool] = ACTIONS(2989), - [anon_sym_int] = ACTIONS(2989), - [anon_sym_float] = ACTIONS(2989), - [anon_sym_range] = ACTIONS(2989), - [anon_sym_i8] = ACTIONS(2989), - [anon_sym_i16] = ACTIONS(2989), - [anon_sym_i32] = ACTIONS(2989), - [anon_sym_i64] = ACTIONS(2989), - [anon_sym_u8] = ACTIONS(2989), - [anon_sym_u16] = ACTIONS(2989), - [anon_sym_u32] = ACTIONS(2989), - [anon_sym_u64] = ACTIONS(2989), - [anon_sym_isize] = ACTIONS(2989), - [anon_sym_usize] = ACTIONS(2989), - [anon_sym_f32] = ACTIONS(2989), - [anon_sym_f64] = ACTIONS(2989), - [anon_sym_c_char] = ACTIONS(2989), - [anon_sym_c_schar] = ACTIONS(2989), - [anon_sym_c_uchar] = ACTIONS(2989), - [anon_sym_c_short] = ACTIONS(2989), - [anon_sym_c_ushort] = ACTIONS(2989), - [anon_sym_c_int] = ACTIONS(2989), - [anon_sym_c_uint] = ACTIONS(2989), - [anon_sym_c_long] = ACTIONS(2989), - [anon_sym_c_ulong] = ACTIONS(2989), - [anon_sym_c_longlong] = ACTIONS(2989), - [anon_sym_c_ulonglong] = ACTIONS(2989), - [anon_sym_c_float] = ACTIONS(2989), - [anon_sym_c_double] = ACTIONS(2989), - [anon_sym_c_longdouble] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_yield] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_defer] = ACTIONS(2989), - [anon_sym_errdefer] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_else] = ACTIONS(2989), - [anon_sym_while] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_match] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_try] = ACTIONS(2989), - [anon_sym_DOT] = ACTIONS(2987), - [anon_sym_true] = ACTIONS(2989), - [anon_sym_false] = ACTIONS(2989), - [sym_none] = ACTIONS(2989), - [sym_undefined] = ACTIONS(2989), - [sym_sink] = ACTIONS(2989), - [sym_integer] = ACTIONS(2989), - [sym_float] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [sym_multiline_string] = ACTIONS(2987), - [sym_character] = ACTIONS(2987), + [ts_builtin_sym_end] = ACTIONS(2989), + [sym_identifier] = ACTIONS(2991), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2987), + [sym__newline] = ACTIONS(2989), }, [STATE(1224)] = { - [ts_builtin_sym_end] = ACTIONS(2991), - [sym_identifier] = ACTIONS(2993), - [anon_sym_import] = ACTIONS(2993), - [anon_sym_func] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2991), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(2991), - [anon_sym_RPAREN] = ACTIONS(2991), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_RBRACE] = ACTIONS(2991), - [anon_sym_DASH] = ACTIONS(2991), - [anon_sym_DOLLAR] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_void] = ACTIONS(2993), - [anon_sym_anyopaque] = ACTIONS(2993), - [anon_sym_bool] = ACTIONS(2993), - [anon_sym_int] = ACTIONS(2993), - [anon_sym_float] = ACTIONS(2993), - [anon_sym_range] = ACTIONS(2993), - [anon_sym_i8] = ACTIONS(2993), - [anon_sym_i16] = ACTIONS(2993), - [anon_sym_i32] = ACTIONS(2993), - [anon_sym_i64] = ACTIONS(2993), - [anon_sym_u8] = ACTIONS(2993), - [anon_sym_u16] = ACTIONS(2993), - [anon_sym_u32] = ACTIONS(2993), - [anon_sym_u64] = ACTIONS(2993), - [anon_sym_isize] = ACTIONS(2993), - [anon_sym_usize] = ACTIONS(2993), - [anon_sym_f32] = ACTIONS(2993), - [anon_sym_f64] = ACTIONS(2993), - [anon_sym_c_char] = ACTIONS(2993), - [anon_sym_c_schar] = ACTIONS(2993), - [anon_sym_c_uchar] = ACTIONS(2993), - [anon_sym_c_short] = ACTIONS(2993), - [anon_sym_c_ushort] = ACTIONS(2993), - [anon_sym_c_int] = ACTIONS(2993), - [anon_sym_c_uint] = ACTIONS(2993), - [anon_sym_c_long] = ACTIONS(2993), - [anon_sym_c_ulong] = ACTIONS(2993), - [anon_sym_c_longlong] = ACTIONS(2993), - [anon_sym_c_ulonglong] = ACTIONS(2993), - [anon_sym_c_float] = ACTIONS(2993), - [anon_sym_c_double] = ACTIONS(2993), - [anon_sym_c_longdouble] = ACTIONS(2993), - [anon_sym_return] = ACTIONS(2993), - [anon_sym_yield] = ACTIONS(2993), - [anon_sym_break] = ACTIONS(2993), - [anon_sym_continue] = ACTIONS(2993), - [anon_sym_defer] = ACTIONS(2993), - [anon_sym_errdefer] = ACTIONS(2993), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_else] = ACTIONS(2993), - [anon_sym_while] = ACTIONS(2993), - [anon_sym_for] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2993), - [anon_sym_AMP] = ACTIONS(2991), - [anon_sym_try] = ACTIONS(2993), - [anon_sym_DOT] = ACTIONS(2991), - [anon_sym_true] = ACTIONS(2993), - [anon_sym_false] = ACTIONS(2993), - [sym_none] = ACTIONS(2993), - [sym_undefined] = ACTIONS(2993), - [sym_sink] = ACTIONS(2993), - [sym_integer] = ACTIONS(2993), - [sym_float] = ACTIONS(2991), - [anon_sym_DQUOTE] = ACTIONS(2991), - [sym_multiline_string] = ACTIONS(2991), - [sym_character] = ACTIONS(2991), + [ts_builtin_sym_end] = ACTIONS(2993), + [sym_identifier] = ACTIONS(2995), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2991), + [sym__newline] = ACTIONS(2993), }, [STATE(1225)] = { - [ts_builtin_sym_end] = ACTIONS(2995), - [sym_identifier] = ACTIONS(2997), - [anon_sym_import] = ACTIONS(2997), - [anon_sym_func] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_RPAREN] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_RBRACE] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_void] = ACTIONS(2997), - [anon_sym_anyopaque] = ACTIONS(2997), - [anon_sym_bool] = ACTIONS(2997), - [anon_sym_int] = ACTIONS(2997), - [anon_sym_float] = ACTIONS(2997), - [anon_sym_range] = ACTIONS(2997), - [anon_sym_i8] = ACTIONS(2997), - [anon_sym_i16] = ACTIONS(2997), - [anon_sym_i32] = ACTIONS(2997), - [anon_sym_i64] = ACTIONS(2997), - [anon_sym_u8] = ACTIONS(2997), - [anon_sym_u16] = ACTIONS(2997), - [anon_sym_u32] = ACTIONS(2997), - [anon_sym_u64] = ACTIONS(2997), - [anon_sym_isize] = ACTIONS(2997), - [anon_sym_usize] = ACTIONS(2997), - [anon_sym_f32] = ACTIONS(2997), - [anon_sym_f64] = ACTIONS(2997), - [anon_sym_c_char] = ACTIONS(2997), - [anon_sym_c_schar] = ACTIONS(2997), - [anon_sym_c_uchar] = ACTIONS(2997), - [anon_sym_c_short] = ACTIONS(2997), - [anon_sym_c_ushort] = ACTIONS(2997), - [anon_sym_c_int] = ACTIONS(2997), - [anon_sym_c_uint] = ACTIONS(2997), - [anon_sym_c_long] = ACTIONS(2997), - [anon_sym_c_ulong] = ACTIONS(2997), - [anon_sym_c_longlong] = ACTIONS(2997), - [anon_sym_c_ulonglong] = ACTIONS(2997), - [anon_sym_c_float] = ACTIONS(2997), - [anon_sym_c_double] = ACTIONS(2997), - [anon_sym_c_longdouble] = ACTIONS(2997), - [anon_sym_return] = ACTIONS(2997), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_break] = ACTIONS(2997), - [anon_sym_continue] = ACTIONS(2997), - [anon_sym_defer] = ACTIONS(2997), - [anon_sym_errdefer] = ACTIONS(2997), - [anon_sym_if] = ACTIONS(2997), - [anon_sym_else] = ACTIONS(2997), - [anon_sym_while] = ACTIONS(2997), - [anon_sym_for] = ACTIONS(2997), - [anon_sym_match] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2995), - [anon_sym_try] = ACTIONS(2997), - [anon_sym_DOT] = ACTIONS(2995), - [anon_sym_true] = ACTIONS(2997), - [anon_sym_false] = ACTIONS(2997), - [sym_none] = ACTIONS(2997), - [sym_undefined] = ACTIONS(2997), - [sym_sink] = ACTIONS(2997), - [sym_integer] = ACTIONS(2997), - [sym_float] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2995), - [sym_multiline_string] = ACTIONS(2995), - [sym_character] = ACTIONS(2995), + [ts_builtin_sym_end] = ACTIONS(2997), + [sym_identifier] = ACTIONS(2999), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2995), + [sym__newline] = ACTIONS(2997), }, [STATE(1226)] = { - [ts_builtin_sym_end] = ACTIONS(2999), - [sym_identifier] = ACTIONS(3001), - [anon_sym_import] = ACTIONS(3001), - [anon_sym_func] = ACTIONS(3001), - [anon_sym_BANG] = ACTIONS(2999), - [anon_sym_struct] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2999), - [anon_sym_RPAREN] = ACTIONS(2999), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_RBRACE] = ACTIONS(2999), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_DOLLAR] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_void] = ACTIONS(3001), - [anon_sym_anyopaque] = ACTIONS(3001), - [anon_sym_bool] = ACTIONS(3001), - [anon_sym_int] = ACTIONS(3001), - [anon_sym_float] = ACTIONS(3001), - [anon_sym_range] = ACTIONS(3001), - [anon_sym_i8] = ACTIONS(3001), - [anon_sym_i16] = ACTIONS(3001), - [anon_sym_i32] = ACTIONS(3001), - [anon_sym_i64] = ACTIONS(3001), - [anon_sym_u8] = ACTIONS(3001), - [anon_sym_u16] = ACTIONS(3001), - [anon_sym_u32] = ACTIONS(3001), - [anon_sym_u64] = ACTIONS(3001), - [anon_sym_isize] = ACTIONS(3001), - [anon_sym_usize] = ACTIONS(3001), - [anon_sym_f32] = ACTIONS(3001), - [anon_sym_f64] = ACTIONS(3001), - [anon_sym_c_char] = ACTIONS(3001), - [anon_sym_c_schar] = ACTIONS(3001), - [anon_sym_c_uchar] = ACTIONS(3001), - [anon_sym_c_short] = ACTIONS(3001), - [anon_sym_c_ushort] = ACTIONS(3001), - [anon_sym_c_int] = ACTIONS(3001), - [anon_sym_c_uint] = ACTIONS(3001), - [anon_sym_c_long] = ACTIONS(3001), - [anon_sym_c_ulong] = ACTIONS(3001), - [anon_sym_c_longlong] = ACTIONS(3001), - [anon_sym_c_ulonglong] = ACTIONS(3001), - [anon_sym_c_float] = ACTIONS(3001), - [anon_sym_c_double] = ACTIONS(3001), - [anon_sym_c_longdouble] = ACTIONS(3001), - [anon_sym_return] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3001), - [anon_sym_break] = ACTIONS(3001), - [anon_sym_continue] = ACTIONS(3001), - [anon_sym_defer] = ACTIONS(3001), - [anon_sym_errdefer] = ACTIONS(3001), - [anon_sym_if] = ACTIONS(3001), - [anon_sym_else] = ACTIONS(3001), - [anon_sym_while] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3001), - [anon_sym_match] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(2999), - [anon_sym_try] = ACTIONS(3001), - [anon_sym_DOT] = ACTIONS(2999), - [anon_sym_true] = ACTIONS(3001), - [anon_sym_false] = ACTIONS(3001), - [sym_none] = ACTIONS(3001), - [sym_undefined] = ACTIONS(3001), - [sym_sink] = ACTIONS(3001), - [sym_integer] = ACTIONS(3001), - [sym_float] = ACTIONS(2999), - [anon_sym_DQUOTE] = ACTIONS(2999), - [sym_multiline_string] = ACTIONS(2999), - [sym_character] = ACTIONS(2999), + [ts_builtin_sym_end] = ACTIONS(3001), + [sym_identifier] = ACTIONS(3003), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2999), + [sym__newline] = ACTIONS(3001), }, [STATE(1227)] = { - [ts_builtin_sym_end] = ACTIONS(3003), - [sym_identifier] = ACTIONS(3005), - [anon_sym_import] = ACTIONS(3005), - [anon_sym_func] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_RPAREN] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_RBRACE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_DOLLAR] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_void] = ACTIONS(3005), - [anon_sym_anyopaque] = ACTIONS(3005), - [anon_sym_bool] = ACTIONS(3005), - [anon_sym_int] = ACTIONS(3005), - [anon_sym_float] = ACTIONS(3005), - [anon_sym_range] = ACTIONS(3005), - [anon_sym_i8] = ACTIONS(3005), - [anon_sym_i16] = ACTIONS(3005), - [anon_sym_i32] = ACTIONS(3005), - [anon_sym_i64] = ACTIONS(3005), - [anon_sym_u8] = ACTIONS(3005), - [anon_sym_u16] = ACTIONS(3005), - [anon_sym_u32] = ACTIONS(3005), - [anon_sym_u64] = ACTIONS(3005), - [anon_sym_isize] = ACTIONS(3005), - [anon_sym_usize] = ACTIONS(3005), - [anon_sym_f32] = ACTIONS(3005), - [anon_sym_f64] = ACTIONS(3005), - [anon_sym_c_char] = ACTIONS(3005), - [anon_sym_c_schar] = ACTIONS(3005), - [anon_sym_c_uchar] = ACTIONS(3005), - [anon_sym_c_short] = ACTIONS(3005), - [anon_sym_c_ushort] = ACTIONS(3005), - [anon_sym_c_int] = ACTIONS(3005), - [anon_sym_c_uint] = ACTIONS(3005), - [anon_sym_c_long] = ACTIONS(3005), - [anon_sym_c_ulong] = ACTIONS(3005), - [anon_sym_c_longlong] = ACTIONS(3005), - [anon_sym_c_ulonglong] = ACTIONS(3005), - [anon_sym_c_float] = ACTIONS(3005), - [anon_sym_c_double] = ACTIONS(3005), - [anon_sym_c_longdouble] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_yield] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_defer] = ACTIONS(3005), - [anon_sym_errdefer] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_while] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3005), - [anon_sym_match] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3003), - [anon_sym_true] = ACTIONS(3005), - [anon_sym_false] = ACTIONS(3005), - [sym_none] = ACTIONS(3005), - [sym_undefined] = ACTIONS(3005), - [sym_sink] = ACTIONS(3005), - [sym_integer] = ACTIONS(3005), - [sym_float] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [sym_multiline_string] = ACTIONS(3003), - [sym_character] = ACTIONS(3003), + [ts_builtin_sym_end] = ACTIONS(3005), + [sym_identifier] = ACTIONS(3007), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3003), + [sym__newline] = ACTIONS(3005), }, [STATE(1228)] = { - [ts_builtin_sym_end] = ACTIONS(3007), - [sym_identifier] = ACTIONS(3009), - [anon_sym_import] = ACTIONS(3009), - [anon_sym_func] = ACTIONS(3009), - [anon_sym_BANG] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_RPAREN] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_DOLLAR] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_void] = ACTIONS(3009), - [anon_sym_anyopaque] = ACTIONS(3009), - [anon_sym_bool] = ACTIONS(3009), - [anon_sym_int] = ACTIONS(3009), - [anon_sym_float] = ACTIONS(3009), - [anon_sym_range] = ACTIONS(3009), - [anon_sym_i8] = ACTIONS(3009), - [anon_sym_i16] = ACTIONS(3009), - [anon_sym_i32] = ACTIONS(3009), - [anon_sym_i64] = ACTIONS(3009), - [anon_sym_u8] = ACTIONS(3009), - [anon_sym_u16] = ACTIONS(3009), - [anon_sym_u32] = ACTIONS(3009), - [anon_sym_u64] = ACTIONS(3009), - [anon_sym_isize] = ACTIONS(3009), - [anon_sym_usize] = ACTIONS(3009), - [anon_sym_f32] = ACTIONS(3009), - [anon_sym_f64] = ACTIONS(3009), - [anon_sym_c_char] = ACTIONS(3009), - [anon_sym_c_schar] = ACTIONS(3009), - [anon_sym_c_uchar] = ACTIONS(3009), - [anon_sym_c_short] = ACTIONS(3009), - [anon_sym_c_ushort] = ACTIONS(3009), - [anon_sym_c_int] = ACTIONS(3009), - [anon_sym_c_uint] = ACTIONS(3009), - [anon_sym_c_long] = ACTIONS(3009), - [anon_sym_c_ulong] = ACTIONS(3009), - [anon_sym_c_longlong] = ACTIONS(3009), - [anon_sym_c_ulonglong] = ACTIONS(3009), - [anon_sym_c_float] = ACTIONS(3009), - [anon_sym_c_double] = ACTIONS(3009), - [anon_sym_c_longdouble] = ACTIONS(3009), - [anon_sym_return] = ACTIONS(3009), - [anon_sym_yield] = ACTIONS(3009), - [anon_sym_break] = ACTIONS(3009), - [anon_sym_continue] = ACTIONS(3009), - [anon_sym_defer] = ACTIONS(3009), - [anon_sym_errdefer] = ACTIONS(3009), - [anon_sym_if] = ACTIONS(3009), - [anon_sym_else] = ACTIONS(3009), - [anon_sym_while] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3009), - [anon_sym_match] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3009), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_true] = ACTIONS(3009), - [anon_sym_false] = ACTIONS(3009), - [sym_none] = ACTIONS(3009), - [sym_undefined] = ACTIONS(3009), - [sym_sink] = ACTIONS(3009), - [sym_integer] = ACTIONS(3009), - [sym_float] = ACTIONS(3007), - [anon_sym_DQUOTE] = ACTIONS(3007), - [sym_multiline_string] = ACTIONS(3007), - [sym_character] = ACTIONS(3007), + [ts_builtin_sym_end] = ACTIONS(3009), + [sym_identifier] = ACTIONS(3011), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3007), + [sym__newline] = ACTIONS(3009), }, [STATE(1229)] = { - [ts_builtin_sym_end] = ACTIONS(3011), - [sym_identifier] = ACTIONS(3013), - [anon_sym_import] = ACTIONS(3013), - [anon_sym_func] = ACTIONS(3013), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(3011), - [anon_sym_RPAREN] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(3011), - [anon_sym_RBRACE] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_DOLLAR] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_void] = ACTIONS(3013), - [anon_sym_anyopaque] = ACTIONS(3013), - [anon_sym_bool] = ACTIONS(3013), - [anon_sym_int] = ACTIONS(3013), - [anon_sym_float] = ACTIONS(3013), - [anon_sym_range] = ACTIONS(3013), - [anon_sym_i8] = ACTIONS(3013), - [anon_sym_i16] = ACTIONS(3013), - [anon_sym_i32] = ACTIONS(3013), - [anon_sym_i64] = ACTIONS(3013), - [anon_sym_u8] = ACTIONS(3013), - [anon_sym_u16] = ACTIONS(3013), - [anon_sym_u32] = ACTIONS(3013), - [anon_sym_u64] = ACTIONS(3013), - [anon_sym_isize] = ACTIONS(3013), - [anon_sym_usize] = ACTIONS(3013), - [anon_sym_f32] = ACTIONS(3013), - [anon_sym_f64] = ACTIONS(3013), - [anon_sym_c_char] = ACTIONS(3013), - [anon_sym_c_schar] = ACTIONS(3013), - [anon_sym_c_uchar] = ACTIONS(3013), - [anon_sym_c_short] = ACTIONS(3013), - [anon_sym_c_ushort] = ACTIONS(3013), - [anon_sym_c_int] = ACTIONS(3013), - [anon_sym_c_uint] = ACTIONS(3013), - [anon_sym_c_long] = ACTIONS(3013), - [anon_sym_c_ulong] = ACTIONS(3013), - [anon_sym_c_longlong] = ACTIONS(3013), - [anon_sym_c_ulonglong] = ACTIONS(3013), - [anon_sym_c_float] = ACTIONS(3013), - [anon_sym_c_double] = ACTIONS(3013), - [anon_sym_c_longdouble] = ACTIONS(3013), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_yield] = ACTIONS(3013), - [anon_sym_break] = ACTIONS(3013), - [anon_sym_continue] = ACTIONS(3013), - [anon_sym_defer] = ACTIONS(3013), - [anon_sym_errdefer] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_else] = ACTIONS(3013), - [anon_sym_while] = ACTIONS(3013), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3011), - [anon_sym_try] = ACTIONS(3013), - [anon_sym_DOT] = ACTIONS(3011), - [anon_sym_true] = ACTIONS(3013), - [anon_sym_false] = ACTIONS(3013), - [sym_none] = ACTIONS(3013), - [sym_undefined] = ACTIONS(3013), - [sym_sink] = ACTIONS(3013), - [sym_integer] = ACTIONS(3013), - [sym_float] = ACTIONS(3011), - [anon_sym_DQUOTE] = ACTIONS(3011), - [sym_multiline_string] = ACTIONS(3011), - [sym_character] = ACTIONS(3011), + [ts_builtin_sym_end] = ACTIONS(3013), + [sym_identifier] = ACTIONS(3015), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3011), + [sym__newline] = ACTIONS(3013), }, [STATE(1230)] = { - [ts_builtin_sym_end] = ACTIONS(3015), - [sym_identifier] = ACTIONS(3017), - [anon_sym_import] = ACTIONS(3017), - [anon_sym_func] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3015), - [anon_sym_struct] = ACTIONS(3017), - [anon_sym_LPAREN] = ACTIONS(3015), - [anon_sym_RPAREN] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3015), - [anon_sym_RBRACE] = ACTIONS(3015), - [anon_sym_DASH] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_void] = ACTIONS(3017), - [anon_sym_anyopaque] = ACTIONS(3017), - [anon_sym_bool] = ACTIONS(3017), - [anon_sym_int] = ACTIONS(3017), - [anon_sym_float] = ACTIONS(3017), - [anon_sym_range] = ACTIONS(3017), - [anon_sym_i8] = ACTIONS(3017), - [anon_sym_i16] = ACTIONS(3017), - [anon_sym_i32] = ACTIONS(3017), - [anon_sym_i64] = ACTIONS(3017), - [anon_sym_u8] = ACTIONS(3017), - [anon_sym_u16] = ACTIONS(3017), - [anon_sym_u32] = ACTIONS(3017), - [anon_sym_u64] = ACTIONS(3017), - [anon_sym_isize] = ACTIONS(3017), - [anon_sym_usize] = ACTIONS(3017), - [anon_sym_f32] = ACTIONS(3017), - [anon_sym_f64] = ACTIONS(3017), - [anon_sym_c_char] = ACTIONS(3017), - [anon_sym_c_schar] = ACTIONS(3017), - [anon_sym_c_uchar] = ACTIONS(3017), - [anon_sym_c_short] = ACTIONS(3017), - [anon_sym_c_ushort] = ACTIONS(3017), - [anon_sym_c_int] = ACTIONS(3017), - [anon_sym_c_uint] = ACTIONS(3017), - [anon_sym_c_long] = ACTIONS(3017), - [anon_sym_c_ulong] = ACTIONS(3017), - [anon_sym_c_longlong] = ACTIONS(3017), - [anon_sym_c_ulonglong] = ACTIONS(3017), - [anon_sym_c_float] = ACTIONS(3017), - [anon_sym_c_double] = ACTIONS(3017), - [anon_sym_c_longdouble] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_break] = ACTIONS(3017), - [anon_sym_continue] = ACTIONS(3017), - [anon_sym_defer] = ACTIONS(3017), - [anon_sym_errdefer] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_else] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3015), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_DOT] = ACTIONS(3015), - [anon_sym_true] = ACTIONS(3017), - [anon_sym_false] = ACTIONS(3017), - [sym_none] = ACTIONS(3017), - [sym_undefined] = ACTIONS(3017), - [sym_sink] = ACTIONS(3017), - [sym_integer] = ACTIONS(3017), - [sym_float] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym_multiline_string] = ACTIONS(3015), - [sym_character] = ACTIONS(3015), + [ts_builtin_sym_end] = ACTIONS(3017), + [sym_identifier] = ACTIONS(3019), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3015), + [sym__newline] = ACTIONS(3017), }, [STATE(1231)] = { - [ts_builtin_sym_end] = ACTIONS(3019), - [sym_identifier] = ACTIONS(3021), - [anon_sym_import] = ACTIONS(3021), - [anon_sym_func] = ACTIONS(3021), - [anon_sym_BANG] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_RPAREN] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_RBRACE] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_DOLLAR] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_void] = ACTIONS(3021), - [anon_sym_anyopaque] = ACTIONS(3021), - [anon_sym_bool] = ACTIONS(3021), - [anon_sym_int] = ACTIONS(3021), - [anon_sym_float] = ACTIONS(3021), - [anon_sym_range] = ACTIONS(3021), - [anon_sym_i8] = ACTIONS(3021), - [anon_sym_i16] = ACTIONS(3021), - [anon_sym_i32] = ACTIONS(3021), - [anon_sym_i64] = ACTIONS(3021), - [anon_sym_u8] = ACTIONS(3021), - [anon_sym_u16] = ACTIONS(3021), - [anon_sym_u32] = ACTIONS(3021), - [anon_sym_u64] = ACTIONS(3021), - [anon_sym_isize] = ACTIONS(3021), - [anon_sym_usize] = ACTIONS(3021), - [anon_sym_f32] = ACTIONS(3021), - [anon_sym_f64] = ACTIONS(3021), - [anon_sym_c_char] = ACTIONS(3021), - [anon_sym_c_schar] = ACTIONS(3021), - [anon_sym_c_uchar] = ACTIONS(3021), - [anon_sym_c_short] = ACTIONS(3021), - [anon_sym_c_ushort] = ACTIONS(3021), - [anon_sym_c_int] = ACTIONS(3021), - [anon_sym_c_uint] = ACTIONS(3021), - [anon_sym_c_long] = ACTIONS(3021), - [anon_sym_c_ulong] = ACTIONS(3021), - [anon_sym_c_longlong] = ACTIONS(3021), - [anon_sym_c_ulonglong] = ACTIONS(3021), - [anon_sym_c_float] = ACTIONS(3021), - [anon_sym_c_double] = ACTIONS(3021), - [anon_sym_c_longdouble] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_yield] = ACTIONS(3021), - [anon_sym_break] = ACTIONS(3021), - [anon_sym_continue] = ACTIONS(3021), - [anon_sym_defer] = ACTIONS(3021), - [anon_sym_errdefer] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_else] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3021), - [anon_sym_DOT] = ACTIONS(3019), - [anon_sym_true] = ACTIONS(3021), - [anon_sym_false] = ACTIONS(3021), - [sym_none] = ACTIONS(3021), - [sym_undefined] = ACTIONS(3021), - [sym_sink] = ACTIONS(3021), - [sym_integer] = ACTIONS(3021), - [sym_float] = ACTIONS(3019), - [anon_sym_DQUOTE] = ACTIONS(3019), - [sym_multiline_string] = ACTIONS(3019), - [sym_character] = ACTIONS(3019), + [ts_builtin_sym_end] = ACTIONS(3021), + [sym_identifier] = ACTIONS(3023), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3019), + [sym__newline] = ACTIONS(3021), }, [STATE(1232)] = { - [ts_builtin_sym_end] = ACTIONS(3023), - [sym_identifier] = ACTIONS(3025), - [anon_sym_import] = ACTIONS(3025), - [anon_sym_func] = ACTIONS(3025), - [anon_sym_BANG] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(3023), - [anon_sym_RPAREN] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3023), - [anon_sym_RBRACE] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_void] = ACTIONS(3025), - [anon_sym_anyopaque] = ACTIONS(3025), - [anon_sym_bool] = ACTIONS(3025), - [anon_sym_int] = ACTIONS(3025), - [anon_sym_float] = ACTIONS(3025), - [anon_sym_range] = ACTIONS(3025), - [anon_sym_i8] = ACTIONS(3025), - [anon_sym_i16] = ACTIONS(3025), - [anon_sym_i32] = ACTIONS(3025), - [anon_sym_i64] = ACTIONS(3025), - [anon_sym_u8] = ACTIONS(3025), - [anon_sym_u16] = ACTIONS(3025), - [anon_sym_u32] = ACTIONS(3025), - [anon_sym_u64] = ACTIONS(3025), - [anon_sym_isize] = ACTIONS(3025), - [anon_sym_usize] = ACTIONS(3025), - [anon_sym_f32] = ACTIONS(3025), - [anon_sym_f64] = ACTIONS(3025), - [anon_sym_c_char] = ACTIONS(3025), - [anon_sym_c_schar] = ACTIONS(3025), - [anon_sym_c_uchar] = ACTIONS(3025), - [anon_sym_c_short] = ACTIONS(3025), - [anon_sym_c_ushort] = ACTIONS(3025), - [anon_sym_c_int] = ACTIONS(3025), - [anon_sym_c_uint] = ACTIONS(3025), - [anon_sym_c_long] = ACTIONS(3025), - [anon_sym_c_ulong] = ACTIONS(3025), - [anon_sym_c_longlong] = ACTIONS(3025), - [anon_sym_c_ulonglong] = ACTIONS(3025), - [anon_sym_c_float] = ACTIONS(3025), - [anon_sym_c_double] = ACTIONS(3025), - [anon_sym_c_longdouble] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(3025), - [anon_sym_break] = ACTIONS(3025), - [anon_sym_continue] = ACTIONS(3025), - [anon_sym_defer] = ACTIONS(3025), - [anon_sym_errdefer] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_else] = ACTIONS(3025), - [anon_sym_while] = ACTIONS(3025), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3025), - [anon_sym_DOT] = ACTIONS(3023), - [anon_sym_true] = ACTIONS(3025), - [anon_sym_false] = ACTIONS(3025), - [sym_none] = ACTIONS(3025), - [sym_undefined] = ACTIONS(3025), - [sym_sink] = ACTIONS(3025), - [sym_integer] = ACTIONS(3025), - [sym_float] = ACTIONS(3023), - [anon_sym_DQUOTE] = ACTIONS(3023), - [sym_multiline_string] = ACTIONS(3023), - [sym_character] = ACTIONS(3023), + [ts_builtin_sym_end] = ACTIONS(3025), + [sym_identifier] = ACTIONS(3027), + [anon_sym_import] = 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_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_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3023), + [sym__newline] = ACTIONS(3025), }, [STATE(1233)] = { - [ts_builtin_sym_end] = ACTIONS(3027), - [sym_identifier] = ACTIONS(3029), - [anon_sym_import] = ACTIONS(3029), - [anon_sym_func] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3027), - [anon_sym_RPAREN] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3027), - [anon_sym_RBRACE] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_void] = ACTIONS(3029), - [anon_sym_anyopaque] = ACTIONS(3029), - [anon_sym_bool] = ACTIONS(3029), - [anon_sym_int] = ACTIONS(3029), - [anon_sym_float] = ACTIONS(3029), - [anon_sym_range] = ACTIONS(3029), - [anon_sym_i8] = ACTIONS(3029), - [anon_sym_i16] = ACTIONS(3029), - [anon_sym_i32] = ACTIONS(3029), - [anon_sym_i64] = ACTIONS(3029), - [anon_sym_u8] = ACTIONS(3029), - [anon_sym_u16] = ACTIONS(3029), - [anon_sym_u32] = ACTIONS(3029), - [anon_sym_u64] = ACTIONS(3029), - [anon_sym_isize] = ACTIONS(3029), - [anon_sym_usize] = ACTIONS(3029), - [anon_sym_f32] = ACTIONS(3029), - [anon_sym_f64] = ACTIONS(3029), - [anon_sym_c_char] = ACTIONS(3029), - [anon_sym_c_schar] = ACTIONS(3029), - [anon_sym_c_uchar] = ACTIONS(3029), - [anon_sym_c_short] = ACTIONS(3029), - [anon_sym_c_ushort] = ACTIONS(3029), - [anon_sym_c_int] = ACTIONS(3029), - [anon_sym_c_uint] = ACTIONS(3029), - [anon_sym_c_long] = ACTIONS(3029), - [anon_sym_c_ulong] = ACTIONS(3029), - [anon_sym_c_longlong] = ACTIONS(3029), - [anon_sym_c_ulonglong] = ACTIONS(3029), - [anon_sym_c_float] = ACTIONS(3029), - [anon_sym_c_double] = ACTIONS(3029), - [anon_sym_c_longdouble] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_yield] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_defer] = ACTIONS(3029), - [anon_sym_errdefer] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_else] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(3027), - [anon_sym_true] = ACTIONS(3029), - [anon_sym_false] = ACTIONS(3029), - [sym_none] = ACTIONS(3029), - [sym_undefined] = ACTIONS(3029), - [sym_sink] = ACTIONS(3029), - [sym_integer] = ACTIONS(3029), - [sym_float] = ACTIONS(3027), - [anon_sym_DQUOTE] = ACTIONS(3027), - [sym_multiline_string] = ACTIONS(3027), - [sym_character] = ACTIONS(3027), + [ts_builtin_sym_end] = ACTIONS(3029), + [sym_identifier] = ACTIONS(3031), + [anon_sym_import] = ACTIONS(3031), + [anon_sym_func] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_struct] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(3029), + [anon_sym_RPAREN] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3029), + [anon_sym_RBRACE] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_DOLLAR] = ACTIONS(3029), + [anon_sym_LBRACK] = ACTIONS(3029), + [anon_sym_void] = ACTIONS(3031), + [anon_sym_anyopaque] = ACTIONS(3031), + [anon_sym_bool] = ACTIONS(3031), + [anon_sym_int] = ACTIONS(3031), + [anon_sym_float] = ACTIONS(3031), + [anon_sym_range] = ACTIONS(3031), + [anon_sym_i8] = ACTIONS(3031), + [anon_sym_i16] = ACTIONS(3031), + [anon_sym_i32] = ACTIONS(3031), + [anon_sym_i64] = ACTIONS(3031), + [anon_sym_u8] = ACTIONS(3031), + [anon_sym_u16] = ACTIONS(3031), + [anon_sym_u32] = ACTIONS(3031), + [anon_sym_u64] = ACTIONS(3031), + [anon_sym_isize] = ACTIONS(3031), + [anon_sym_usize] = ACTIONS(3031), + [anon_sym_f32] = ACTIONS(3031), + [anon_sym_f64] = ACTIONS(3031), + [anon_sym_c_char] = ACTIONS(3031), + [anon_sym_c_schar] = ACTIONS(3031), + [anon_sym_c_uchar] = ACTIONS(3031), + [anon_sym_c_short] = ACTIONS(3031), + [anon_sym_c_ushort] = ACTIONS(3031), + [anon_sym_c_int] = ACTIONS(3031), + [anon_sym_c_uint] = ACTIONS(3031), + [anon_sym_c_long] = ACTIONS(3031), + [anon_sym_c_ulong] = ACTIONS(3031), + [anon_sym_c_longlong] = ACTIONS(3031), + [anon_sym_c_ulonglong] = ACTIONS(3031), + [anon_sym_c_float] = ACTIONS(3031), + [anon_sym_c_double] = ACTIONS(3031), + [anon_sym_c_longdouble] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_yield] = ACTIONS(3031), + [anon_sym_break] = ACTIONS(3031), + [anon_sym_continue] = ACTIONS(3031), + [anon_sym_defer] = ACTIONS(3031), + [anon_sym_errdefer] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_else] = ACTIONS(3031), + [anon_sym_while] = ACTIONS(3031), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_match] = ACTIONS(3031), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_try] = ACTIONS(3031), + [anon_sym_DOT] = ACTIONS(3029), + [anon_sym_true] = ACTIONS(3031), + [anon_sym_false] = ACTIONS(3031), + [sym_none] = ACTIONS(3031), + [sym_undefined] = ACTIONS(3031), + [sym_sink] = ACTIONS(3031), + [sym_integer] = ACTIONS(3031), + [sym_float] = ACTIONS(3029), + [anon_sym_DQUOTE] = ACTIONS(3029), + [sym_multiline_string] = ACTIONS(3029), + [sym_character] = ACTIONS(3029), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3027), + [sym__newline] = ACTIONS(3029), }, [STATE(1234)] = { - [aux_sym_import_declaration_repeat1] = STATE(1973), - [sym_identifier] = ACTIONS(3031), - [anon_sym_func] = ACTIONS(3031), + [ts_builtin_sym_end] = ACTIONS(3033), + [sym_identifier] = ACTIONS(3035), + [anon_sym_import] = ACTIONS(3035), + [anon_sym_func] = ACTIONS(3035), [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_struct] = ACTIONS(3031), + [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(3031), - [anon_sym_anyopaque] = ACTIONS(3031), - [anon_sym_bool] = ACTIONS(3031), - [anon_sym_int] = ACTIONS(3031), - [anon_sym_float] = ACTIONS(3031), - [anon_sym_range] = ACTIONS(3031), - [anon_sym_i8] = ACTIONS(3031), - [anon_sym_i16] = ACTIONS(3031), - [anon_sym_i32] = ACTIONS(3031), - [anon_sym_i64] = ACTIONS(3031), - [anon_sym_u8] = ACTIONS(3031), - [anon_sym_u16] = ACTIONS(3031), - [anon_sym_u32] = ACTIONS(3031), - [anon_sym_u64] = ACTIONS(3031), - [anon_sym_isize] = ACTIONS(3031), - [anon_sym_usize] = ACTIONS(3031), - [anon_sym_f32] = ACTIONS(3031), - [anon_sym_f64] = ACTIONS(3031), - [anon_sym_c_char] = ACTIONS(3031), - [anon_sym_c_schar] = ACTIONS(3031), - [anon_sym_c_uchar] = ACTIONS(3031), - [anon_sym_c_short] = ACTIONS(3031), - [anon_sym_c_ushort] = ACTIONS(3031), - [anon_sym_c_int] = ACTIONS(3031), - [anon_sym_c_uint] = ACTIONS(3031), - [anon_sym_c_long] = ACTIONS(3031), - [anon_sym_c_ulong] = ACTIONS(3031), - [anon_sym_c_longlong] = ACTIONS(3031), - [anon_sym_c_ulonglong] = ACTIONS(3031), - [anon_sym_c_float] = ACTIONS(3031), - [anon_sym_c_double] = ACTIONS(3031), - [anon_sym_c_longdouble] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_yield] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_defer] = ACTIONS(3031), - [anon_sym_errdefer] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), + [anon_sym_void] = ACTIONS(3035), + [anon_sym_anyopaque] = ACTIONS(3035), + [anon_sym_bool] = ACTIONS(3035), + [anon_sym_int] = 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(3031), - [anon_sym_for] = ACTIONS(3031), - [anon_sym_match] = ACTIONS(3031), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3035), [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3031), + [anon_sym_try] = ACTIONS(3035), [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_true] = ACTIONS(3031), - [anon_sym_false] = ACTIONS(3031), - [sym_none] = ACTIONS(3031), - [sym_undefined] = ACTIONS(3031), - [sym_sink] = ACTIONS(3031), - [sym_integer] = ACTIONS(3031), + [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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3038), + [sym__newline] = ACTIONS(3033), }, [STATE(1235)] = { - [aux_sym_import_declaration_repeat1] = STATE(1970), - [sym_identifier] = ACTIONS(3041), - [anon_sym_func] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_RBRACE] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_DOLLAR] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_void] = ACTIONS(3041), - [anon_sym_anyopaque] = ACTIONS(3041), - [anon_sym_bool] = ACTIONS(3041), - [anon_sym_int] = ACTIONS(3041), - [anon_sym_float] = ACTIONS(3041), - [anon_sym_range] = ACTIONS(3041), - [anon_sym_i8] = ACTIONS(3041), - [anon_sym_i16] = ACTIONS(3041), - [anon_sym_i32] = ACTIONS(3041), - [anon_sym_i64] = ACTIONS(3041), - [anon_sym_u8] = ACTIONS(3041), - [anon_sym_u16] = ACTIONS(3041), - [anon_sym_u32] = ACTIONS(3041), - [anon_sym_u64] = ACTIONS(3041), - [anon_sym_isize] = ACTIONS(3041), - [anon_sym_usize] = ACTIONS(3041), - [anon_sym_f32] = ACTIONS(3041), - [anon_sym_f64] = ACTIONS(3041), - [anon_sym_c_char] = ACTIONS(3041), - [anon_sym_c_schar] = ACTIONS(3041), - [anon_sym_c_uchar] = ACTIONS(3041), - [anon_sym_c_short] = ACTIONS(3041), - [anon_sym_c_ushort] = ACTIONS(3041), - [anon_sym_c_int] = ACTIONS(3041), - [anon_sym_c_uint] = ACTIONS(3041), - [anon_sym_c_long] = ACTIONS(3041), - [anon_sym_c_ulong] = ACTIONS(3041), - [anon_sym_c_longlong] = ACTIONS(3041), - [anon_sym_c_ulonglong] = ACTIONS(3041), - [anon_sym_c_float] = ACTIONS(3041), - [anon_sym_c_double] = ACTIONS(3041), - [anon_sym_c_longdouble] = ACTIONS(3041), - [anon_sym_return] = ACTIONS(3041), - [anon_sym_yield] = ACTIONS(3041), - [anon_sym_break] = ACTIONS(3041), - [anon_sym_continue] = ACTIONS(3041), - [anon_sym_defer] = ACTIONS(3041), - [anon_sym_errdefer] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_else] = ACTIONS(3045), - [anon_sym_while] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_match] = ACTIONS(3041), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_try] = ACTIONS(3041), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_true] = ACTIONS(3041), - [anon_sym_false] = ACTIONS(3041), - [sym_none] = ACTIONS(3041), - [sym_undefined] = ACTIONS(3041), - [sym_sink] = ACTIONS(3041), - [sym_integer] = ACTIONS(3041), - [sym_float] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [sym_multiline_string] = ACTIONS(3043), - [sym_character] = ACTIONS(3043), + [aux_sym_import_declaration_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(3037), + [anon_sym_func] = ACTIONS(3037), + [anon_sym_BANG] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3037), + [anon_sym_LPAREN] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(3039), + [anon_sym_RBRACE] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_DOLLAR] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_void] = ACTIONS(3037), + [anon_sym_anyopaque] = ACTIONS(3037), + [anon_sym_bool] = ACTIONS(3037), + [anon_sym_int] = 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_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(3041), + [anon_sym_while] = ACTIONS(3037), + [anon_sym_for] = ACTIONS(3037), + [anon_sym_match] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3037), + [anon_sym_DOT] = ACTIONS(3039), + [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(3039), + [anon_sym_DQUOTE] = ACTIONS(3039), + [sym_multiline_string] = ACTIONS(3039), + [sym_character] = ACTIONS(3039), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3047), + [sym__newline] = ACTIONS(3044), }, [STATE(1236)] = { - [aux_sym_import_declaration_repeat1] = STATE(1975), - [sym_identifier] = ACTIONS(3050), - [anon_sym_func] = ACTIONS(3050), - [anon_sym_BANG] = ACTIONS(3052), - [anon_sym_struct] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_RBRACE] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3052), - [anon_sym_DOLLAR] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_void] = ACTIONS(3050), - [anon_sym_anyopaque] = ACTIONS(3050), - [anon_sym_bool] = ACTIONS(3050), - [anon_sym_int] = ACTIONS(3050), - [anon_sym_float] = ACTIONS(3050), - [anon_sym_range] = ACTIONS(3050), - [anon_sym_i8] = ACTIONS(3050), - [anon_sym_i16] = ACTIONS(3050), - [anon_sym_i32] = ACTIONS(3050), - [anon_sym_i64] = ACTIONS(3050), - [anon_sym_u8] = ACTIONS(3050), - [anon_sym_u16] = ACTIONS(3050), - [anon_sym_u32] = ACTIONS(3050), - [anon_sym_u64] = ACTIONS(3050), - [anon_sym_isize] = ACTIONS(3050), - [anon_sym_usize] = ACTIONS(3050), - [anon_sym_f32] = ACTIONS(3050), - [anon_sym_f64] = ACTIONS(3050), - [anon_sym_c_char] = ACTIONS(3050), - [anon_sym_c_schar] = ACTIONS(3050), - [anon_sym_c_uchar] = ACTIONS(3050), - [anon_sym_c_short] = ACTIONS(3050), - [anon_sym_c_ushort] = ACTIONS(3050), - [anon_sym_c_int] = ACTIONS(3050), - [anon_sym_c_uint] = ACTIONS(3050), - [anon_sym_c_long] = ACTIONS(3050), - [anon_sym_c_ulong] = ACTIONS(3050), - [anon_sym_c_longlong] = ACTIONS(3050), - [anon_sym_c_ulonglong] = ACTIONS(3050), - [anon_sym_c_float] = ACTIONS(3050), - [anon_sym_c_double] = ACTIONS(3050), - [anon_sym_c_longdouble] = ACTIONS(3050), - [anon_sym_return] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3050), - [anon_sym_break] = ACTIONS(3050), - [anon_sym_continue] = ACTIONS(3050), - [anon_sym_defer] = ACTIONS(3050), - [anon_sym_errdefer] = ACTIONS(3050), - [anon_sym_if] = ACTIONS(3050), - [anon_sym_else] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3050), - [anon_sym_match] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3050), - [anon_sym_DOT] = ACTIONS(3052), - [anon_sym_true] = ACTIONS(3050), - [anon_sym_false] = ACTIONS(3050), - [sym_none] = ACTIONS(3050), - [sym_undefined] = ACTIONS(3050), - [sym_sink] = ACTIONS(3050), - [sym_integer] = ACTIONS(3050), - [sym_float] = ACTIONS(3052), - [anon_sym_DQUOTE] = ACTIONS(3052), - [sym_multiline_string] = ACTIONS(3052), - [sym_character] = ACTIONS(3052), + [aux_sym_import_declaration_repeat1] = STATE(2006), + [sym_identifier] = ACTIONS(3047), + [anon_sym_func] = ACTIONS(3047), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_struct] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_DOLLAR] = ACTIONS(3049), + [anon_sym_LBRACK] = ACTIONS(3049), + [anon_sym_void] = ACTIONS(3047), + [anon_sym_anyopaque] = ACTIONS(3047), + [anon_sym_bool] = ACTIONS(3047), + [anon_sym_int] = ACTIONS(3047), + [anon_sym_float] = ACTIONS(3047), + [anon_sym_range] = ACTIONS(3047), + [anon_sym_i8] = ACTIONS(3047), + [anon_sym_i16] = ACTIONS(3047), + [anon_sym_i32] = ACTIONS(3047), + [anon_sym_i64] = ACTIONS(3047), + [anon_sym_u8] = ACTIONS(3047), + [anon_sym_u16] = ACTIONS(3047), + [anon_sym_u32] = ACTIONS(3047), + [anon_sym_u64] = ACTIONS(3047), + [anon_sym_isize] = ACTIONS(3047), + [anon_sym_usize] = ACTIONS(3047), + [anon_sym_f32] = ACTIONS(3047), + [anon_sym_f64] = ACTIONS(3047), + [anon_sym_c_char] = ACTIONS(3047), + [anon_sym_c_schar] = ACTIONS(3047), + [anon_sym_c_uchar] = ACTIONS(3047), + [anon_sym_c_short] = ACTIONS(3047), + [anon_sym_c_ushort] = ACTIONS(3047), + [anon_sym_c_int] = ACTIONS(3047), + [anon_sym_c_uint] = ACTIONS(3047), + [anon_sym_c_long] = ACTIONS(3047), + [anon_sym_c_ulong] = ACTIONS(3047), + [anon_sym_c_longlong] = ACTIONS(3047), + [anon_sym_c_ulonglong] = ACTIONS(3047), + [anon_sym_c_float] = ACTIONS(3047), + [anon_sym_c_double] = ACTIONS(3047), + [anon_sym_c_longdouble] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_defer] = ACTIONS(3047), + [anon_sym_errdefer] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_else] = ACTIONS(3051), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_for] = ACTIONS(3047), + [anon_sym_match] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_try] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(3049), + [anon_sym_true] = ACTIONS(3047), + [anon_sym_false] = ACTIONS(3047), + [sym_none] = ACTIONS(3047), + [sym_undefined] = ACTIONS(3047), + [sym_sink] = ACTIONS(3047), + [sym_integer] = ACTIONS(3047), + [sym_float] = ACTIONS(3049), + [anon_sym_DQUOTE] = ACTIONS(3049), + [sym_multiline_string] = ACTIONS(3049), + [sym_character] = ACTIONS(3049), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3057), + [sym__newline] = ACTIONS(3053), }, [STATE(1237)] = { - [aux_sym_import_declaration_repeat1] = STATE(1979), - [sym_identifier] = ACTIONS(3060), - [anon_sym_func] = ACTIONS(3060), - [anon_sym_BANG] = ACTIONS(3062), - [anon_sym_struct] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3062), - [anon_sym_RBRACE] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(3062), - [anon_sym_void] = ACTIONS(3060), - [anon_sym_anyopaque] = ACTIONS(3060), - [anon_sym_bool] = ACTIONS(3060), - [anon_sym_int] = ACTIONS(3060), - [anon_sym_float] = ACTIONS(3060), - [anon_sym_range] = ACTIONS(3060), - [anon_sym_i8] = ACTIONS(3060), - [anon_sym_i16] = ACTIONS(3060), - [anon_sym_i32] = ACTIONS(3060), - [anon_sym_i64] = ACTIONS(3060), - [anon_sym_u8] = ACTIONS(3060), - [anon_sym_u16] = ACTIONS(3060), - [anon_sym_u32] = ACTIONS(3060), - [anon_sym_u64] = ACTIONS(3060), - [anon_sym_isize] = ACTIONS(3060), - [anon_sym_usize] = ACTIONS(3060), - [anon_sym_f32] = ACTIONS(3060), - [anon_sym_f64] = ACTIONS(3060), - [anon_sym_c_char] = ACTIONS(3060), - [anon_sym_c_schar] = ACTIONS(3060), - [anon_sym_c_uchar] = ACTIONS(3060), - [anon_sym_c_short] = ACTIONS(3060), - [anon_sym_c_ushort] = ACTIONS(3060), - [anon_sym_c_int] = ACTIONS(3060), - [anon_sym_c_uint] = ACTIONS(3060), - [anon_sym_c_long] = ACTIONS(3060), - [anon_sym_c_ulong] = ACTIONS(3060), - [anon_sym_c_longlong] = ACTIONS(3060), - [anon_sym_c_ulonglong] = ACTIONS(3060), - [anon_sym_c_float] = ACTIONS(3060), - [anon_sym_c_double] = ACTIONS(3060), - [anon_sym_c_longdouble] = ACTIONS(3060), - [anon_sym_return] = ACTIONS(3060), - [anon_sym_yield] = ACTIONS(3060), - [anon_sym_break] = ACTIONS(3060), - [anon_sym_continue] = ACTIONS(3060), - [anon_sym_defer] = ACTIONS(3060), - [anon_sym_errdefer] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3060), - [anon_sym_else] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3060), - [anon_sym_for] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3062), - [anon_sym_try] = ACTIONS(3060), - [anon_sym_DOT] = ACTIONS(3062), - [anon_sym_true] = ACTIONS(3060), - [anon_sym_false] = ACTIONS(3060), - [sym_none] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [sym_sink] = ACTIONS(3060), - [sym_integer] = ACTIONS(3060), - [sym_float] = ACTIONS(3062), - [anon_sym_DQUOTE] = ACTIONS(3062), - [sym_multiline_string] = ACTIONS(3062), - [sym_character] = ACTIONS(3062), + [aux_sym_import_declaration_repeat1] = STATE(2039), + [sym_identifier] = ACTIONS(3056), + [anon_sym_func] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_RBRACE] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_void] = ACTIONS(3056), + [anon_sym_anyopaque] = ACTIONS(3056), + [anon_sym_bool] = ACTIONS(3056), + [anon_sym_int] = ACTIONS(3056), + [anon_sym_float] = ACTIONS(3056), + [anon_sym_range] = ACTIONS(3056), + [anon_sym_i8] = ACTIONS(3056), + [anon_sym_i16] = ACTIONS(3056), + [anon_sym_i32] = ACTIONS(3056), + [anon_sym_i64] = ACTIONS(3056), + [anon_sym_u8] = ACTIONS(3056), + [anon_sym_u16] = ACTIONS(3056), + [anon_sym_u32] = ACTIONS(3056), + [anon_sym_u64] = ACTIONS(3056), + [anon_sym_isize] = ACTIONS(3056), + [anon_sym_usize] = ACTIONS(3056), + [anon_sym_f32] = ACTIONS(3056), + [anon_sym_f64] = ACTIONS(3056), + [anon_sym_c_char] = ACTIONS(3056), + [anon_sym_c_schar] = ACTIONS(3056), + [anon_sym_c_uchar] = ACTIONS(3056), + [anon_sym_c_short] = ACTIONS(3056), + [anon_sym_c_ushort] = ACTIONS(3056), + [anon_sym_c_int] = ACTIONS(3056), + [anon_sym_c_uint] = ACTIONS(3056), + [anon_sym_c_long] = ACTIONS(3056), + [anon_sym_c_ulong] = ACTIONS(3056), + [anon_sym_c_longlong] = ACTIONS(3056), + [anon_sym_c_ulonglong] = ACTIONS(3056), + [anon_sym_c_float] = ACTIONS(3056), + [anon_sym_c_double] = ACTIONS(3056), + [anon_sym_c_longdouble] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_yield] = ACTIONS(3056), + [anon_sym_break] = ACTIONS(3056), + [anon_sym_continue] = ACTIONS(3056), + [anon_sym_defer] = ACTIONS(3056), + [anon_sym_errdefer] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_else] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_match] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_true] = ACTIONS(3056), + [anon_sym_false] = ACTIONS(3056), + [sym_none] = ACTIONS(3056), + [sym_undefined] = ACTIONS(3056), + [sym_sink] = ACTIONS(3056), + [sym_integer] = ACTIONS(3056), + [sym_float] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_multiline_string] = ACTIONS(3058), + [sym_character] = ACTIONS(3058), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3067), + [sym__newline] = ACTIONS(3062), }, [STATE(1238)] = { - [aux_sym_import_declaration_repeat1] = STATE(1942), - [sym_identifier] = ACTIONS(3050), - [anon_sym_func] = ACTIONS(3050), - [anon_sym_BANG] = ACTIONS(3052), - [anon_sym_struct] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_RBRACE] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3052), - [anon_sym_DOLLAR] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_void] = ACTIONS(3050), - [anon_sym_anyopaque] = ACTIONS(3050), - [anon_sym_bool] = ACTIONS(3050), - [anon_sym_int] = ACTIONS(3050), - [anon_sym_float] = ACTIONS(3050), - [anon_sym_range] = ACTIONS(3050), - [anon_sym_i8] = ACTIONS(3050), - [anon_sym_i16] = ACTIONS(3050), - [anon_sym_i32] = ACTIONS(3050), - [anon_sym_i64] = ACTIONS(3050), - [anon_sym_u8] = ACTIONS(3050), - [anon_sym_u16] = ACTIONS(3050), - [anon_sym_u32] = ACTIONS(3050), - [anon_sym_u64] = ACTIONS(3050), - [anon_sym_isize] = ACTIONS(3050), - [anon_sym_usize] = ACTIONS(3050), - [anon_sym_f32] = ACTIONS(3050), - [anon_sym_f64] = ACTIONS(3050), - [anon_sym_c_char] = ACTIONS(3050), - [anon_sym_c_schar] = ACTIONS(3050), - [anon_sym_c_uchar] = ACTIONS(3050), - [anon_sym_c_short] = ACTIONS(3050), - [anon_sym_c_ushort] = ACTIONS(3050), - [anon_sym_c_int] = ACTIONS(3050), - [anon_sym_c_uint] = ACTIONS(3050), - [anon_sym_c_long] = ACTIONS(3050), - [anon_sym_c_ulong] = ACTIONS(3050), - [anon_sym_c_longlong] = ACTIONS(3050), - [anon_sym_c_ulonglong] = ACTIONS(3050), - [anon_sym_c_float] = ACTIONS(3050), - [anon_sym_c_double] = ACTIONS(3050), - [anon_sym_c_longdouble] = ACTIONS(3050), - [anon_sym_return] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3050), - [anon_sym_break] = ACTIONS(3050), - [anon_sym_continue] = ACTIONS(3050), - [anon_sym_defer] = ACTIONS(3050), - [anon_sym_errdefer] = ACTIONS(3050), - [anon_sym_if] = ACTIONS(3050), - [anon_sym_else] = ACTIONS(3070), - [anon_sym_while] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3050), - [anon_sym_match] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3050), - [anon_sym_DOT] = ACTIONS(3052), - [anon_sym_true] = ACTIONS(3050), - [anon_sym_false] = ACTIONS(3050), - [sym_none] = ACTIONS(3050), - [sym_undefined] = ACTIONS(3050), - [sym_sink] = ACTIONS(3050), - [sym_integer] = ACTIONS(3050), - [sym_float] = ACTIONS(3052), - [anon_sym_DQUOTE] = ACTIONS(3052), - [sym_multiline_string] = ACTIONS(3052), - [sym_character] = ACTIONS(3052), + [aux_sym_import_declaration_repeat1] = STATE(1946), + [sym_identifier] = ACTIONS(3065), + [anon_sym_func] = ACTIONS(3065), + [anon_sym_BANG] = ACTIONS(3067), + [anon_sym_struct] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_DOLLAR] = ACTIONS(3067), + [anon_sym_LBRACK] = ACTIONS(3067), + [anon_sym_void] = ACTIONS(3065), + [anon_sym_anyopaque] = ACTIONS(3065), + [anon_sym_bool] = ACTIONS(3065), + [anon_sym_int] = ACTIONS(3065), + [anon_sym_float] = ACTIONS(3065), + [anon_sym_range] = ACTIONS(3065), + [anon_sym_i8] = ACTIONS(3065), + [anon_sym_i16] = ACTIONS(3065), + [anon_sym_i32] = ACTIONS(3065), + [anon_sym_i64] = ACTIONS(3065), + [anon_sym_u8] = ACTIONS(3065), + [anon_sym_u16] = ACTIONS(3065), + [anon_sym_u32] = ACTIONS(3065), + [anon_sym_u64] = ACTIONS(3065), + [anon_sym_isize] = ACTIONS(3065), + [anon_sym_usize] = ACTIONS(3065), + [anon_sym_f32] = ACTIONS(3065), + [anon_sym_f64] = ACTIONS(3065), + [anon_sym_c_char] = ACTIONS(3065), + [anon_sym_c_schar] = ACTIONS(3065), + [anon_sym_c_uchar] = ACTIONS(3065), + [anon_sym_c_short] = ACTIONS(3065), + [anon_sym_c_ushort] = ACTIONS(3065), + [anon_sym_c_int] = ACTIONS(3065), + [anon_sym_c_uint] = ACTIONS(3065), + [anon_sym_c_long] = ACTIONS(3065), + [anon_sym_c_ulong] = ACTIONS(3065), + [anon_sym_c_longlong] = ACTIONS(3065), + [anon_sym_c_ulonglong] = ACTIONS(3065), + [anon_sym_c_float] = ACTIONS(3065), + [anon_sym_c_double] = ACTIONS(3065), + [anon_sym_c_longdouble] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_yield] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_defer] = ACTIONS(3065), + [anon_sym_errdefer] = ACTIONS(3065), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_for] = ACTIONS(3065), + [anon_sym_match] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_DOT] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [sym_none] = ACTIONS(3065), + [sym_undefined] = ACTIONS(3065), + [sym_sink] = ACTIONS(3065), + [sym_integer] = ACTIONS(3065), + [sym_float] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(3067), + [sym_multiline_string] = ACTIONS(3067), + [sym_character] = ACTIONS(3067), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3072), + [sym__newline] = ACTIONS(3071), }, [STATE(1239)] = { - [aux_sym_import_declaration_repeat1] = STATE(1946), - [sym_identifier] = ACTIONS(3075), - [anon_sym_func] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_struct] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_DOLLAR] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3077), - [anon_sym_void] = ACTIONS(3075), - [anon_sym_anyopaque] = ACTIONS(3075), - [anon_sym_bool] = ACTIONS(3075), - [anon_sym_int] = ACTIONS(3075), - [anon_sym_float] = ACTIONS(3075), - [anon_sym_range] = ACTIONS(3075), - [anon_sym_i8] = ACTIONS(3075), - [anon_sym_i16] = ACTIONS(3075), - [anon_sym_i32] = ACTIONS(3075), - [anon_sym_i64] = ACTIONS(3075), - [anon_sym_u8] = ACTIONS(3075), - [anon_sym_u16] = ACTIONS(3075), - [anon_sym_u32] = ACTIONS(3075), - [anon_sym_u64] = ACTIONS(3075), - [anon_sym_isize] = ACTIONS(3075), - [anon_sym_usize] = ACTIONS(3075), - [anon_sym_f32] = ACTIONS(3075), - [anon_sym_f64] = ACTIONS(3075), - [anon_sym_c_char] = ACTIONS(3075), - [anon_sym_c_schar] = ACTIONS(3075), - [anon_sym_c_uchar] = ACTIONS(3075), - [anon_sym_c_short] = ACTIONS(3075), - [anon_sym_c_ushort] = ACTIONS(3075), - [anon_sym_c_int] = ACTIONS(3075), - [anon_sym_c_uint] = ACTIONS(3075), - [anon_sym_c_long] = ACTIONS(3075), - [anon_sym_c_ulong] = ACTIONS(3075), - [anon_sym_c_longlong] = ACTIONS(3075), - [anon_sym_c_ulonglong] = ACTIONS(3075), - [anon_sym_c_float] = ACTIONS(3075), - [anon_sym_c_double] = ACTIONS(3075), - [anon_sym_c_longdouble] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3075), - [anon_sym_break] = ACTIONS(3075), - [anon_sym_continue] = ACTIONS(3075), - [anon_sym_defer] = ACTIONS(3075), - [anon_sym_errdefer] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3079), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_match] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_try] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3077), - [anon_sym_true] = ACTIONS(3075), - [anon_sym_false] = ACTIONS(3075), - [sym_none] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [sym_sink] = ACTIONS(3075), - [sym_integer] = ACTIONS(3075), - [sym_float] = ACTIONS(3077), - [anon_sym_DQUOTE] = ACTIONS(3077), - [sym_multiline_string] = ACTIONS(3077), - [sym_character] = ACTIONS(3077), + [aux_sym_import_declaration_repeat1] = STATE(1933), + [sym_identifier] = ACTIONS(3074), + [anon_sym_func] = ACTIONS(3074), + [anon_sym_BANG] = ACTIONS(3076), + [anon_sym_struct] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_DOLLAR] = ACTIONS(3076), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_void] = ACTIONS(3074), + [anon_sym_anyopaque] = ACTIONS(3074), + [anon_sym_bool] = ACTIONS(3074), + [anon_sym_int] = ACTIONS(3074), + [anon_sym_float] = ACTIONS(3074), + [anon_sym_range] = ACTIONS(3074), + [anon_sym_i8] = ACTIONS(3074), + [anon_sym_i16] = ACTIONS(3074), + [anon_sym_i32] = ACTIONS(3074), + [anon_sym_i64] = ACTIONS(3074), + [anon_sym_u8] = ACTIONS(3074), + [anon_sym_u16] = ACTIONS(3074), + [anon_sym_u32] = ACTIONS(3074), + [anon_sym_u64] = ACTIONS(3074), + [anon_sym_isize] = ACTIONS(3074), + [anon_sym_usize] = ACTIONS(3074), + [anon_sym_f32] = ACTIONS(3074), + [anon_sym_f64] = ACTIONS(3074), + [anon_sym_c_char] = ACTIONS(3074), + [anon_sym_c_schar] = ACTIONS(3074), + [anon_sym_c_uchar] = ACTIONS(3074), + [anon_sym_c_short] = ACTIONS(3074), + [anon_sym_c_ushort] = ACTIONS(3074), + [anon_sym_c_int] = ACTIONS(3074), + [anon_sym_c_uint] = ACTIONS(3074), + [anon_sym_c_long] = ACTIONS(3074), + [anon_sym_c_ulong] = ACTIONS(3074), + [anon_sym_c_longlong] = ACTIONS(3074), + [anon_sym_c_ulonglong] = ACTIONS(3074), + [anon_sym_c_float] = ACTIONS(3074), + [anon_sym_c_double] = ACTIONS(3074), + [anon_sym_c_longdouble] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_defer] = ACTIONS(3074), + [anon_sym_errdefer] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_else] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3074), + [anon_sym_match] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_true] = ACTIONS(3074), + [anon_sym_false] = ACTIONS(3074), + [sym_none] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [sym_sink] = ACTIONS(3074), + [sym_integer] = ACTIONS(3074), + [sym_float] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3076), + [sym_multiline_string] = ACTIONS(3076), + [sym_character] = ACTIONS(3076), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3081), + [sym__newline] = ACTIONS(3080), }, [STATE(1240)] = { - [aux_sym_import_declaration_repeat1] = STATE(1963), - [sym_identifier] = ACTIONS(3084), - [anon_sym_func] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_struct] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3086), - [anon_sym_RBRACE] = ACTIONS(3086), - [anon_sym_DASH] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3086), - [anon_sym_void] = ACTIONS(3084), - [anon_sym_anyopaque] = ACTIONS(3084), - [anon_sym_bool] = ACTIONS(3084), - [anon_sym_int] = ACTIONS(3084), - [anon_sym_float] = ACTIONS(3084), - [anon_sym_range] = ACTIONS(3084), - [anon_sym_i8] = ACTIONS(3084), - [anon_sym_i16] = ACTIONS(3084), - [anon_sym_i32] = ACTIONS(3084), - [anon_sym_i64] = ACTIONS(3084), - [anon_sym_u8] = ACTIONS(3084), - [anon_sym_u16] = ACTIONS(3084), - [anon_sym_u32] = ACTIONS(3084), - [anon_sym_u64] = ACTIONS(3084), - [anon_sym_isize] = ACTIONS(3084), - [anon_sym_usize] = ACTIONS(3084), - [anon_sym_f32] = ACTIONS(3084), - [anon_sym_f64] = ACTIONS(3084), - [anon_sym_c_char] = ACTIONS(3084), - [anon_sym_c_schar] = ACTIONS(3084), - [anon_sym_c_uchar] = ACTIONS(3084), - [anon_sym_c_short] = ACTIONS(3084), - [anon_sym_c_ushort] = ACTIONS(3084), - [anon_sym_c_int] = ACTIONS(3084), - [anon_sym_c_uint] = ACTIONS(3084), - [anon_sym_c_long] = ACTIONS(3084), - [anon_sym_c_ulong] = ACTIONS(3084), - [anon_sym_c_longlong] = ACTIONS(3084), - [anon_sym_c_ulonglong] = ACTIONS(3084), - [anon_sym_c_float] = ACTIONS(3084), - [anon_sym_c_double] = ACTIONS(3084), - [anon_sym_c_longdouble] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3084), - [anon_sym_yield] = ACTIONS(3084), - [anon_sym_break] = ACTIONS(3084), - [anon_sym_continue] = ACTIONS(3084), - [anon_sym_defer] = ACTIONS(3084), - [anon_sym_errdefer] = ACTIONS(3084), - [anon_sym_if] = ACTIONS(3084), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3084), - [anon_sym_for] = ACTIONS(3084), - [anon_sym_match] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_try] = ACTIONS(3084), - [anon_sym_DOT] = ACTIONS(3086), - [anon_sym_true] = ACTIONS(3084), - [anon_sym_false] = ACTIONS(3084), - [sym_none] = ACTIONS(3084), - [sym_undefined] = ACTIONS(3084), - [sym_sink] = ACTIONS(3084), - [sym_integer] = ACTIONS(3084), - [sym_float] = ACTIONS(3086), - [anon_sym_DQUOTE] = ACTIONS(3086), - [sym_multiline_string] = ACTIONS(3086), - [sym_character] = ACTIONS(3086), + [aux_sym_import_declaration_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(3083), + [anon_sym_func] = ACTIONS(3083), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_RBRACE] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_DOLLAR] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_void] = ACTIONS(3083), + [anon_sym_anyopaque] = ACTIONS(3083), + [anon_sym_bool] = ACTIONS(3083), + [anon_sym_int] = ACTIONS(3083), + [anon_sym_float] = ACTIONS(3083), + [anon_sym_range] = ACTIONS(3083), + [anon_sym_i8] = ACTIONS(3083), + [anon_sym_i16] = ACTIONS(3083), + [anon_sym_i32] = ACTIONS(3083), + [anon_sym_i64] = ACTIONS(3083), + [anon_sym_u8] = ACTIONS(3083), + [anon_sym_u16] = ACTIONS(3083), + [anon_sym_u32] = ACTIONS(3083), + [anon_sym_u64] = ACTIONS(3083), + [anon_sym_isize] = ACTIONS(3083), + [anon_sym_usize] = ACTIONS(3083), + [anon_sym_f32] = ACTIONS(3083), + [anon_sym_f64] = ACTIONS(3083), + [anon_sym_c_char] = ACTIONS(3083), + [anon_sym_c_schar] = ACTIONS(3083), + [anon_sym_c_uchar] = ACTIONS(3083), + [anon_sym_c_short] = ACTIONS(3083), + [anon_sym_c_ushort] = ACTIONS(3083), + [anon_sym_c_int] = ACTIONS(3083), + [anon_sym_c_uint] = ACTIONS(3083), + [anon_sym_c_long] = ACTIONS(3083), + [anon_sym_c_ulong] = ACTIONS(3083), + [anon_sym_c_longlong] = ACTIONS(3083), + [anon_sym_c_ulonglong] = ACTIONS(3083), + [anon_sym_c_float] = ACTIONS(3083), + [anon_sym_c_double] = ACTIONS(3083), + [anon_sym_c_longdouble] = ACTIONS(3083), + [anon_sym_return] = ACTIONS(3083), + [anon_sym_yield] = ACTIONS(3083), + [anon_sym_break] = ACTIONS(3083), + [anon_sym_continue] = ACTIONS(3083), + [anon_sym_defer] = ACTIONS(3083), + [anon_sym_errdefer] = ACTIONS(3083), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_else] = ACTIONS(3087), + [anon_sym_while] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3083), + [anon_sym_match] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3083), + [anon_sym_DOT] = ACTIONS(3085), + [anon_sym_true] = ACTIONS(3083), + [anon_sym_false] = ACTIONS(3083), + [sym_none] = ACTIONS(3083), + [sym_undefined] = ACTIONS(3083), + [sym_sink] = ACTIONS(3083), + [sym_integer] = ACTIONS(3083), + [sym_float] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [sym_multiline_string] = ACTIONS(3085), + [sym_character] = ACTIONS(3085), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3090), + [sym__newline] = ACTIONS(3089), }, [STATE(1241)] = { - [aux_sym_import_declaration_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(3075), - [anon_sym_func] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_struct] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_DOLLAR] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3077), - [anon_sym_void] = ACTIONS(3075), - [anon_sym_anyopaque] = ACTIONS(3075), - [anon_sym_bool] = ACTIONS(3075), - [anon_sym_int] = ACTIONS(3075), - [anon_sym_float] = ACTIONS(3075), - [anon_sym_range] = ACTIONS(3075), - [anon_sym_i8] = ACTIONS(3075), - [anon_sym_i16] = ACTIONS(3075), - [anon_sym_i32] = ACTIONS(3075), - [anon_sym_i64] = ACTIONS(3075), - [anon_sym_u8] = ACTIONS(3075), - [anon_sym_u16] = ACTIONS(3075), - [anon_sym_u32] = ACTIONS(3075), - [anon_sym_u64] = ACTIONS(3075), - [anon_sym_isize] = ACTIONS(3075), - [anon_sym_usize] = ACTIONS(3075), - [anon_sym_f32] = ACTIONS(3075), - [anon_sym_f64] = ACTIONS(3075), - [anon_sym_c_char] = ACTIONS(3075), - [anon_sym_c_schar] = ACTIONS(3075), - [anon_sym_c_uchar] = ACTIONS(3075), - [anon_sym_c_short] = ACTIONS(3075), - [anon_sym_c_ushort] = ACTIONS(3075), - [anon_sym_c_int] = ACTIONS(3075), - [anon_sym_c_uint] = ACTIONS(3075), - [anon_sym_c_long] = ACTIONS(3075), - [anon_sym_c_ulong] = ACTIONS(3075), - [anon_sym_c_longlong] = ACTIONS(3075), - [anon_sym_c_ulonglong] = ACTIONS(3075), - [anon_sym_c_float] = ACTIONS(3075), - [anon_sym_c_double] = ACTIONS(3075), - [anon_sym_c_longdouble] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3075), - [anon_sym_break] = ACTIONS(3075), - [anon_sym_continue] = ACTIONS(3075), - [anon_sym_defer] = ACTIONS(3075), - [anon_sym_errdefer] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_match] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_try] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3077), - [anon_sym_true] = ACTIONS(3075), - [anon_sym_false] = ACTIONS(3075), - [sym_none] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [sym_sink] = ACTIONS(3075), - [sym_integer] = ACTIONS(3075), - [sym_float] = ACTIONS(3077), - [anon_sym_DQUOTE] = ACTIONS(3077), - [sym_multiline_string] = ACTIONS(3077), - [sym_character] = ACTIONS(3077), + [aux_sym_import_declaration_repeat1] = STATE(1964), + [sym_identifier] = ACTIONS(3037), + [anon_sym_func] = ACTIONS(3037), + [anon_sym_BANG] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3037), + [anon_sym_LPAREN] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(3039), + [anon_sym_RBRACE] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_DOLLAR] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_void] = ACTIONS(3037), + [anon_sym_anyopaque] = ACTIONS(3037), + [anon_sym_bool] = ACTIONS(3037), + [anon_sym_int] = 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_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(3092), + [anon_sym_while] = ACTIONS(3037), + [anon_sym_for] = ACTIONS(3037), + [anon_sym_match] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3037), + [anon_sym_DOT] = ACTIONS(3039), + [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(3039), + [anon_sym_DQUOTE] = ACTIONS(3039), + [sym_multiline_string] = ACTIONS(3039), + [sym_character] = ACTIONS(3039), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3096), + [sym__newline] = ACTIONS(3094), }, [STATE(1242)] = { - [aux_sym_import_declaration_repeat1] = STATE(1977), - [sym_identifier] = ACTIONS(3084), - [anon_sym_func] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_struct] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3086), - [anon_sym_RBRACE] = ACTIONS(3086), - [anon_sym_DASH] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3086), - [anon_sym_void] = ACTIONS(3084), - [anon_sym_anyopaque] = ACTIONS(3084), - [anon_sym_bool] = ACTIONS(3084), - [anon_sym_int] = ACTIONS(3084), - [anon_sym_float] = ACTIONS(3084), - [anon_sym_range] = ACTIONS(3084), - [anon_sym_i8] = ACTIONS(3084), - [anon_sym_i16] = ACTIONS(3084), - [anon_sym_i32] = ACTIONS(3084), - [anon_sym_i64] = ACTIONS(3084), - [anon_sym_u8] = ACTIONS(3084), - [anon_sym_u16] = ACTIONS(3084), - [anon_sym_u32] = ACTIONS(3084), - [anon_sym_u64] = ACTIONS(3084), - [anon_sym_isize] = ACTIONS(3084), - [anon_sym_usize] = ACTIONS(3084), - [anon_sym_f32] = ACTIONS(3084), - [anon_sym_f64] = ACTIONS(3084), - [anon_sym_c_char] = ACTIONS(3084), - [anon_sym_c_schar] = ACTIONS(3084), - [anon_sym_c_uchar] = ACTIONS(3084), - [anon_sym_c_short] = ACTIONS(3084), - [anon_sym_c_ushort] = ACTIONS(3084), - [anon_sym_c_int] = ACTIONS(3084), - [anon_sym_c_uint] = ACTIONS(3084), - [anon_sym_c_long] = ACTIONS(3084), - [anon_sym_c_ulong] = ACTIONS(3084), - [anon_sym_c_longlong] = ACTIONS(3084), - [anon_sym_c_ulonglong] = ACTIONS(3084), - [anon_sym_c_float] = ACTIONS(3084), - [anon_sym_c_double] = ACTIONS(3084), - [anon_sym_c_longdouble] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3084), - [anon_sym_yield] = ACTIONS(3084), - [anon_sym_break] = ACTIONS(3084), - [anon_sym_continue] = ACTIONS(3084), - [anon_sym_defer] = ACTIONS(3084), - [anon_sym_errdefer] = ACTIONS(3084), - [anon_sym_if] = ACTIONS(3084), - [anon_sym_else] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3084), - [anon_sym_for] = ACTIONS(3084), - [anon_sym_match] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_try] = ACTIONS(3084), - [anon_sym_DOT] = ACTIONS(3086), - [anon_sym_true] = ACTIONS(3084), - [anon_sym_false] = ACTIONS(3084), - [sym_none] = ACTIONS(3084), - [sym_undefined] = ACTIONS(3084), - [sym_sink] = ACTIONS(3084), - [sym_integer] = ACTIONS(3084), - [sym_float] = ACTIONS(3086), - [anon_sym_DQUOTE] = ACTIONS(3086), - [sym_multiline_string] = ACTIONS(3086), - [sym_character] = ACTIONS(3086), + [aux_sym_import_declaration_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(3047), + [anon_sym_func] = ACTIONS(3047), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_struct] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_DOLLAR] = ACTIONS(3049), + [anon_sym_LBRACK] = ACTIONS(3049), + [anon_sym_void] = ACTIONS(3047), + [anon_sym_anyopaque] = ACTIONS(3047), + [anon_sym_bool] = ACTIONS(3047), + [anon_sym_int] = ACTIONS(3047), + [anon_sym_float] = ACTIONS(3047), + [anon_sym_range] = ACTIONS(3047), + [anon_sym_i8] = ACTIONS(3047), + [anon_sym_i16] = ACTIONS(3047), + [anon_sym_i32] = ACTIONS(3047), + [anon_sym_i64] = ACTIONS(3047), + [anon_sym_u8] = ACTIONS(3047), + [anon_sym_u16] = ACTIONS(3047), + [anon_sym_u32] = ACTIONS(3047), + [anon_sym_u64] = ACTIONS(3047), + [anon_sym_isize] = ACTIONS(3047), + [anon_sym_usize] = ACTIONS(3047), + [anon_sym_f32] = ACTIONS(3047), + [anon_sym_f64] = ACTIONS(3047), + [anon_sym_c_char] = ACTIONS(3047), + [anon_sym_c_schar] = ACTIONS(3047), + [anon_sym_c_uchar] = ACTIONS(3047), + [anon_sym_c_short] = ACTIONS(3047), + [anon_sym_c_ushort] = ACTIONS(3047), + [anon_sym_c_int] = ACTIONS(3047), + [anon_sym_c_uint] = ACTIONS(3047), + [anon_sym_c_long] = ACTIONS(3047), + [anon_sym_c_ulong] = ACTIONS(3047), + [anon_sym_c_longlong] = ACTIONS(3047), + [anon_sym_c_ulonglong] = ACTIONS(3047), + [anon_sym_c_float] = ACTIONS(3047), + [anon_sym_c_double] = ACTIONS(3047), + [anon_sym_c_longdouble] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_defer] = ACTIONS(3047), + [anon_sym_errdefer] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_else] = ACTIONS(3097), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_for] = ACTIONS(3047), + [anon_sym_match] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_try] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(3049), + [anon_sym_true] = ACTIONS(3047), + [anon_sym_false] = ACTIONS(3047), + [sym_none] = ACTIONS(3047), + [sym_undefined] = ACTIONS(3047), + [sym_sink] = ACTIONS(3047), + [sym_integer] = ACTIONS(3047), + [sym_float] = ACTIONS(3049), + [anon_sym_DQUOTE] = ACTIONS(3049), + [sym_multiline_string] = ACTIONS(3049), + [sym_character] = ACTIONS(3049), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3102), + [sym__newline] = ACTIONS(3100), }, [STATE(1243)] = { - [aux_sym_import_declaration_repeat1] = STATE(1989), - [sym_identifier] = ACTIONS(3060), - [anon_sym_func] = ACTIONS(3060), - [anon_sym_BANG] = ACTIONS(3062), - [anon_sym_struct] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3062), - [anon_sym_RBRACE] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(3062), - [anon_sym_void] = ACTIONS(3060), - [anon_sym_anyopaque] = ACTIONS(3060), - [anon_sym_bool] = ACTIONS(3060), - [anon_sym_int] = ACTIONS(3060), - [anon_sym_float] = ACTIONS(3060), - [anon_sym_range] = ACTIONS(3060), - [anon_sym_i8] = ACTIONS(3060), - [anon_sym_i16] = ACTIONS(3060), - [anon_sym_i32] = ACTIONS(3060), - [anon_sym_i64] = ACTIONS(3060), - [anon_sym_u8] = ACTIONS(3060), - [anon_sym_u16] = ACTIONS(3060), - [anon_sym_u32] = ACTIONS(3060), - [anon_sym_u64] = ACTIONS(3060), - [anon_sym_isize] = ACTIONS(3060), - [anon_sym_usize] = ACTIONS(3060), - [anon_sym_f32] = ACTIONS(3060), - [anon_sym_f64] = ACTIONS(3060), - [anon_sym_c_char] = ACTIONS(3060), - [anon_sym_c_schar] = ACTIONS(3060), - [anon_sym_c_uchar] = ACTIONS(3060), - [anon_sym_c_short] = ACTIONS(3060), - [anon_sym_c_ushort] = ACTIONS(3060), - [anon_sym_c_int] = ACTIONS(3060), - [anon_sym_c_uint] = ACTIONS(3060), - [anon_sym_c_long] = ACTIONS(3060), - [anon_sym_c_ulong] = ACTIONS(3060), - [anon_sym_c_longlong] = ACTIONS(3060), - [anon_sym_c_ulonglong] = ACTIONS(3060), - [anon_sym_c_float] = ACTIONS(3060), - [anon_sym_c_double] = ACTIONS(3060), - [anon_sym_c_longdouble] = ACTIONS(3060), - [anon_sym_return] = ACTIONS(3060), - [anon_sym_yield] = ACTIONS(3060), - [anon_sym_break] = ACTIONS(3060), - [anon_sym_continue] = ACTIONS(3060), - [anon_sym_defer] = ACTIONS(3060), - [anon_sym_errdefer] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3060), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_while] = ACTIONS(3060), - [anon_sym_for] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3062), - [anon_sym_try] = ACTIONS(3060), - [anon_sym_DOT] = ACTIONS(3062), - [anon_sym_true] = ACTIONS(3060), - [anon_sym_false] = ACTIONS(3060), - [sym_none] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [sym_sink] = ACTIONS(3060), - [sym_integer] = ACTIONS(3060), - [sym_float] = ACTIONS(3062), - [anon_sym_DQUOTE] = ACTIONS(3062), - [sym_multiline_string] = ACTIONS(3062), - [sym_character] = ACTIONS(3062), + [aux_sym_import_declaration_repeat1] = STATE(1980), + [sym_identifier] = ACTIONS(3056), + [anon_sym_func] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_RBRACE] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_DOLLAR] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_void] = ACTIONS(3056), + [anon_sym_anyopaque] = ACTIONS(3056), + [anon_sym_bool] = ACTIONS(3056), + [anon_sym_int] = ACTIONS(3056), + [anon_sym_float] = ACTIONS(3056), + [anon_sym_range] = ACTIONS(3056), + [anon_sym_i8] = ACTIONS(3056), + [anon_sym_i16] = ACTIONS(3056), + [anon_sym_i32] = ACTIONS(3056), + [anon_sym_i64] = ACTIONS(3056), + [anon_sym_u8] = ACTIONS(3056), + [anon_sym_u16] = ACTIONS(3056), + [anon_sym_u32] = ACTIONS(3056), + [anon_sym_u64] = ACTIONS(3056), + [anon_sym_isize] = ACTIONS(3056), + [anon_sym_usize] = ACTIONS(3056), + [anon_sym_f32] = ACTIONS(3056), + [anon_sym_f64] = ACTIONS(3056), + [anon_sym_c_char] = ACTIONS(3056), + [anon_sym_c_schar] = ACTIONS(3056), + [anon_sym_c_uchar] = ACTIONS(3056), + [anon_sym_c_short] = ACTIONS(3056), + [anon_sym_c_ushort] = ACTIONS(3056), + [anon_sym_c_int] = ACTIONS(3056), + [anon_sym_c_uint] = ACTIONS(3056), + [anon_sym_c_long] = ACTIONS(3056), + [anon_sym_c_ulong] = ACTIONS(3056), + [anon_sym_c_longlong] = ACTIONS(3056), + [anon_sym_c_ulonglong] = ACTIONS(3056), + [anon_sym_c_float] = ACTIONS(3056), + [anon_sym_c_double] = ACTIONS(3056), + [anon_sym_c_longdouble] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_yield] = ACTIONS(3056), + [anon_sym_break] = ACTIONS(3056), + [anon_sym_continue] = ACTIONS(3056), + [anon_sym_defer] = ACTIONS(3056), + [anon_sym_errdefer] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_match] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_true] = ACTIONS(3056), + [anon_sym_false] = ACTIONS(3056), + [sym_none] = ACTIONS(3056), + [sym_undefined] = ACTIONS(3056), + [sym_sink] = ACTIONS(3056), + [sym_integer] = ACTIONS(3056), + [sym_float] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_multiline_string] = ACTIONS(3058), + [sym_character] = ACTIONS(3058), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3107), + [sym__newline] = ACTIONS(3106), }, [STATE(1244)] = { - [aux_sym_import_declaration_repeat1] = STATE(1978), - [sym_identifier] = ACTIONS(3041), - [anon_sym_func] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_RBRACE] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_DOLLAR] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_void] = ACTIONS(3041), - [anon_sym_anyopaque] = ACTIONS(3041), - [anon_sym_bool] = ACTIONS(3041), - [anon_sym_int] = ACTIONS(3041), - [anon_sym_float] = ACTIONS(3041), - [anon_sym_range] = ACTIONS(3041), - [anon_sym_i8] = ACTIONS(3041), - [anon_sym_i16] = ACTIONS(3041), - [anon_sym_i32] = ACTIONS(3041), - [anon_sym_i64] = ACTIONS(3041), - [anon_sym_u8] = ACTIONS(3041), - [anon_sym_u16] = ACTIONS(3041), - [anon_sym_u32] = ACTIONS(3041), - [anon_sym_u64] = ACTIONS(3041), - [anon_sym_isize] = ACTIONS(3041), - [anon_sym_usize] = ACTIONS(3041), - [anon_sym_f32] = ACTIONS(3041), - [anon_sym_f64] = ACTIONS(3041), - [anon_sym_c_char] = ACTIONS(3041), - [anon_sym_c_schar] = ACTIONS(3041), - [anon_sym_c_uchar] = ACTIONS(3041), - [anon_sym_c_short] = ACTIONS(3041), - [anon_sym_c_ushort] = ACTIONS(3041), - [anon_sym_c_int] = ACTIONS(3041), - [anon_sym_c_uint] = ACTIONS(3041), - [anon_sym_c_long] = ACTIONS(3041), - [anon_sym_c_ulong] = ACTIONS(3041), - [anon_sym_c_longlong] = ACTIONS(3041), - [anon_sym_c_ulonglong] = ACTIONS(3041), - [anon_sym_c_float] = ACTIONS(3041), - [anon_sym_c_double] = ACTIONS(3041), - [anon_sym_c_longdouble] = ACTIONS(3041), - [anon_sym_return] = ACTIONS(3041), - [anon_sym_yield] = ACTIONS(3041), - [anon_sym_break] = ACTIONS(3041), - [anon_sym_continue] = ACTIONS(3041), - [anon_sym_defer] = ACTIONS(3041), - [anon_sym_errdefer] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_while] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_match] = ACTIONS(3041), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_try] = ACTIONS(3041), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_true] = ACTIONS(3041), - [anon_sym_false] = ACTIONS(3041), - [sym_none] = ACTIONS(3041), - [sym_undefined] = ACTIONS(3041), - [sym_sink] = ACTIONS(3041), - [sym_integer] = ACTIONS(3041), - [sym_float] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [sym_multiline_string] = ACTIONS(3043), - [sym_character] = ACTIONS(3043), + [aux_sym_import_declaration_repeat1] = STATE(1981), + [sym_identifier] = ACTIONS(3065), + [anon_sym_func] = ACTIONS(3065), + [anon_sym_BANG] = ACTIONS(3067), + [anon_sym_struct] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_DOLLAR] = ACTIONS(3067), + [anon_sym_LBRACK] = ACTIONS(3067), + [anon_sym_void] = ACTIONS(3065), + [anon_sym_anyopaque] = ACTIONS(3065), + [anon_sym_bool] = ACTIONS(3065), + [anon_sym_int] = ACTIONS(3065), + [anon_sym_float] = ACTIONS(3065), + [anon_sym_range] = ACTIONS(3065), + [anon_sym_i8] = ACTIONS(3065), + [anon_sym_i16] = ACTIONS(3065), + [anon_sym_i32] = ACTIONS(3065), + [anon_sym_i64] = ACTIONS(3065), + [anon_sym_u8] = ACTIONS(3065), + [anon_sym_u16] = ACTIONS(3065), + [anon_sym_u32] = ACTIONS(3065), + [anon_sym_u64] = ACTIONS(3065), + [anon_sym_isize] = ACTIONS(3065), + [anon_sym_usize] = ACTIONS(3065), + [anon_sym_f32] = ACTIONS(3065), + [anon_sym_f64] = ACTIONS(3065), + [anon_sym_c_char] = ACTIONS(3065), + [anon_sym_c_schar] = ACTIONS(3065), + [anon_sym_c_uchar] = ACTIONS(3065), + [anon_sym_c_short] = ACTIONS(3065), + [anon_sym_c_ushort] = ACTIONS(3065), + [anon_sym_c_int] = ACTIONS(3065), + [anon_sym_c_uint] = ACTIONS(3065), + [anon_sym_c_long] = ACTIONS(3065), + [anon_sym_c_ulong] = ACTIONS(3065), + [anon_sym_c_longlong] = ACTIONS(3065), + [anon_sym_c_ulonglong] = ACTIONS(3065), + [anon_sym_c_float] = ACTIONS(3065), + [anon_sym_c_double] = ACTIONS(3065), + [anon_sym_c_longdouble] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_yield] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_defer] = ACTIONS(3065), + [anon_sym_errdefer] = ACTIONS(3065), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_for] = ACTIONS(3065), + [anon_sym_match] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_DOT] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [sym_none] = ACTIONS(3065), + [sym_undefined] = ACTIONS(3065), + [sym_sink] = ACTIONS(3065), + [sym_integer] = ACTIONS(3065), + [sym_float] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(3067), + [sym_multiline_string] = ACTIONS(3067), + [sym_character] = ACTIONS(3067), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3113), + [sym__newline] = ACTIONS(3112), }, [STATE(1245)] = { - [aux_sym_import_declaration_repeat1] = STATE(2020), - [sym_identifier] = ACTIONS(3031), - [anon_sym_func] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_LPAREN] = 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(3031), - [anon_sym_anyopaque] = ACTIONS(3031), - [anon_sym_bool] = ACTIONS(3031), - [anon_sym_int] = ACTIONS(3031), - [anon_sym_float] = ACTIONS(3031), - [anon_sym_range] = ACTIONS(3031), - [anon_sym_i8] = ACTIONS(3031), - [anon_sym_i16] = ACTIONS(3031), - [anon_sym_i32] = ACTIONS(3031), - [anon_sym_i64] = ACTIONS(3031), - [anon_sym_u8] = ACTIONS(3031), - [anon_sym_u16] = ACTIONS(3031), - [anon_sym_u32] = ACTIONS(3031), - [anon_sym_u64] = ACTIONS(3031), - [anon_sym_isize] = ACTIONS(3031), - [anon_sym_usize] = ACTIONS(3031), - [anon_sym_f32] = ACTIONS(3031), - [anon_sym_f64] = ACTIONS(3031), - [anon_sym_c_char] = ACTIONS(3031), - [anon_sym_c_schar] = ACTIONS(3031), - [anon_sym_c_uchar] = ACTIONS(3031), - [anon_sym_c_short] = ACTIONS(3031), - [anon_sym_c_ushort] = ACTIONS(3031), - [anon_sym_c_int] = ACTIONS(3031), - [anon_sym_c_uint] = ACTIONS(3031), - [anon_sym_c_long] = ACTIONS(3031), - [anon_sym_c_ulong] = ACTIONS(3031), - [anon_sym_c_longlong] = ACTIONS(3031), - [anon_sym_c_ulonglong] = ACTIONS(3031), - [anon_sym_c_float] = ACTIONS(3031), - [anon_sym_c_double] = ACTIONS(3031), - [anon_sym_c_longdouble] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3031), - [anon_sym_yield] = ACTIONS(3031), - [anon_sym_break] = ACTIONS(3031), - [anon_sym_continue] = ACTIONS(3031), - [anon_sym_defer] = ACTIONS(3031), - [anon_sym_errdefer] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3031), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_while] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3031), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_true] = ACTIONS(3031), - [anon_sym_false] = ACTIONS(3031), - [sym_none] = ACTIONS(3031), - [sym_undefined] = ACTIONS(3031), - [sym_sink] = ACTIONS(3031), - [sym_integer] = ACTIONS(3031), - [sym_float] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [sym_multiline_string] = ACTIONS(3033), - [sym_character] = ACTIONS(3033), + [aux_sym_import_declaration_repeat1] = STATE(1982), + [sym_identifier] = ACTIONS(3074), + [anon_sym_func] = ACTIONS(3074), + [anon_sym_BANG] = ACTIONS(3076), + [anon_sym_struct] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_DOLLAR] = ACTIONS(3076), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_void] = ACTIONS(3074), + [anon_sym_anyopaque] = ACTIONS(3074), + [anon_sym_bool] = ACTIONS(3074), + [anon_sym_int] = ACTIONS(3074), + [anon_sym_float] = ACTIONS(3074), + [anon_sym_range] = ACTIONS(3074), + [anon_sym_i8] = ACTIONS(3074), + [anon_sym_i16] = ACTIONS(3074), + [anon_sym_i32] = ACTIONS(3074), + [anon_sym_i64] = ACTIONS(3074), + [anon_sym_u8] = ACTIONS(3074), + [anon_sym_u16] = ACTIONS(3074), + [anon_sym_u32] = ACTIONS(3074), + [anon_sym_u64] = ACTIONS(3074), + [anon_sym_isize] = ACTIONS(3074), + [anon_sym_usize] = ACTIONS(3074), + [anon_sym_f32] = ACTIONS(3074), + [anon_sym_f64] = ACTIONS(3074), + [anon_sym_c_char] = ACTIONS(3074), + [anon_sym_c_schar] = ACTIONS(3074), + [anon_sym_c_uchar] = ACTIONS(3074), + [anon_sym_c_short] = ACTIONS(3074), + [anon_sym_c_ushort] = ACTIONS(3074), + [anon_sym_c_int] = ACTIONS(3074), + [anon_sym_c_uint] = ACTIONS(3074), + [anon_sym_c_long] = ACTIONS(3074), + [anon_sym_c_ulong] = ACTIONS(3074), + [anon_sym_c_longlong] = ACTIONS(3074), + [anon_sym_c_ulonglong] = ACTIONS(3074), + [anon_sym_c_float] = ACTIONS(3074), + [anon_sym_c_double] = ACTIONS(3074), + [anon_sym_c_longdouble] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_defer] = ACTIONS(3074), + [anon_sym_errdefer] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3074), + [anon_sym_match] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_true] = ACTIONS(3074), + [anon_sym_false] = ACTIONS(3074), + [sym_none] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [sym_sink] = ACTIONS(3074), + [sym_integer] = ACTIONS(3074), + [sym_float] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3076), + [sym_multiline_string] = ACTIONS(3076), + [sym_character] = ACTIONS(3076), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3118), }, [STATE(1246)] = { - [sym_identifier] = ACTIONS(3121), - [anon_sym_func] = ACTIONS(3121), - [anon_sym_BANG] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_DOLLAR] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_void] = ACTIONS(3121), - [anon_sym_anyopaque] = ACTIONS(3121), - [anon_sym_bool] = ACTIONS(3121), - [anon_sym_int] = ACTIONS(3121), - [anon_sym_float] = ACTIONS(3121), - [anon_sym_range] = ACTIONS(3121), - [anon_sym_i8] = ACTIONS(3121), - [anon_sym_i16] = ACTIONS(3121), - [anon_sym_i32] = ACTIONS(3121), - [anon_sym_i64] = ACTIONS(3121), - [anon_sym_u8] = ACTIONS(3121), - [anon_sym_u16] = ACTIONS(3121), - [anon_sym_u32] = ACTIONS(3121), - [anon_sym_u64] = ACTIONS(3121), - [anon_sym_isize] = ACTIONS(3121), - [anon_sym_usize] = ACTIONS(3121), - [anon_sym_f32] = ACTIONS(3121), - [anon_sym_f64] = ACTIONS(3121), - [anon_sym_c_char] = ACTIONS(3121), - [anon_sym_c_schar] = ACTIONS(3121), - [anon_sym_c_uchar] = ACTIONS(3121), - [anon_sym_c_short] = ACTIONS(3121), - [anon_sym_c_ushort] = ACTIONS(3121), - [anon_sym_c_int] = ACTIONS(3121), - [anon_sym_c_uint] = ACTIONS(3121), - [anon_sym_c_long] = ACTIONS(3121), - [anon_sym_c_ulong] = ACTIONS(3121), - [anon_sym_c_longlong] = ACTIONS(3121), - [anon_sym_c_ulonglong] = ACTIONS(3121), - [anon_sym_c_float] = ACTIONS(3121), - [anon_sym_c_double] = ACTIONS(3121), - [anon_sym_c_longdouble] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_yield] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_defer] = ACTIONS(3121), - [anon_sym_errdefer] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_while] = ACTIONS(3121), - [anon_sym_for] = ACTIONS(3121), - [anon_sym_match] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_try] = ACTIONS(3121), - [anon_sym_DOT] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [sym_none] = ACTIONS(3121), - [sym_undefined] = ACTIONS(3121), - [sym_sink] = ACTIONS(3121), - [sym_integer] = ACTIONS(3121), - [sym_float] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3123), - [sym_multiline_string] = ACTIONS(3123), - [sym_character] = ACTIONS(3123), + [aux_sym_import_declaration_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(3083), + [anon_sym_func] = ACTIONS(3083), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_RBRACE] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_DOLLAR] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_void] = ACTIONS(3083), + [anon_sym_anyopaque] = ACTIONS(3083), + [anon_sym_bool] = ACTIONS(3083), + [anon_sym_int] = ACTIONS(3083), + [anon_sym_float] = ACTIONS(3083), + [anon_sym_range] = ACTIONS(3083), + [anon_sym_i8] = ACTIONS(3083), + [anon_sym_i16] = ACTIONS(3083), + [anon_sym_i32] = ACTIONS(3083), + [anon_sym_i64] = ACTIONS(3083), + [anon_sym_u8] = ACTIONS(3083), + [anon_sym_u16] = ACTIONS(3083), + [anon_sym_u32] = ACTIONS(3083), + [anon_sym_u64] = ACTIONS(3083), + [anon_sym_isize] = ACTIONS(3083), + [anon_sym_usize] = ACTIONS(3083), + [anon_sym_f32] = ACTIONS(3083), + [anon_sym_f64] = ACTIONS(3083), + [anon_sym_c_char] = ACTIONS(3083), + [anon_sym_c_schar] = ACTIONS(3083), + [anon_sym_c_uchar] = ACTIONS(3083), + [anon_sym_c_short] = ACTIONS(3083), + [anon_sym_c_ushort] = ACTIONS(3083), + [anon_sym_c_int] = ACTIONS(3083), + [anon_sym_c_uint] = ACTIONS(3083), + [anon_sym_c_long] = ACTIONS(3083), + [anon_sym_c_ulong] = ACTIONS(3083), + [anon_sym_c_longlong] = ACTIONS(3083), + [anon_sym_c_ulonglong] = ACTIONS(3083), + [anon_sym_c_float] = ACTIONS(3083), + [anon_sym_c_double] = ACTIONS(3083), + [anon_sym_c_longdouble] = ACTIONS(3083), + [anon_sym_return] = ACTIONS(3083), + [anon_sym_yield] = ACTIONS(3083), + [anon_sym_break] = ACTIONS(3083), + [anon_sym_continue] = ACTIONS(3083), + [anon_sym_defer] = ACTIONS(3083), + [anon_sym_errdefer] = ACTIONS(3083), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_while] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3083), + [anon_sym_match] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3083), + [anon_sym_DOT] = ACTIONS(3085), + [anon_sym_true] = ACTIONS(3083), + [anon_sym_false] = ACTIONS(3083), + [sym_none] = ACTIONS(3083), + [sym_undefined] = ACTIONS(3083), + [sym_sink] = ACTIONS(3083), + [sym_integer] = ACTIONS(3083), + [sym_float] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [sym_multiline_string] = ACTIONS(3085), + [sym_character] = ACTIONS(3085), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3123), + [sym__newline] = ACTIONS(3124), }, [STATE(1247)] = { - [sym_identifier] = ACTIONS(3125), - [anon_sym_func] = ACTIONS(3125), - [anon_sym_BANG] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_void] = ACTIONS(3125), - [anon_sym_anyopaque] = ACTIONS(3125), - [anon_sym_bool] = ACTIONS(3125), - [anon_sym_int] = ACTIONS(3125), - [anon_sym_float] = ACTIONS(3125), - [anon_sym_range] = ACTIONS(3125), - [anon_sym_i8] = ACTIONS(3125), - [anon_sym_i16] = ACTIONS(3125), - [anon_sym_i32] = ACTIONS(3125), - [anon_sym_i64] = ACTIONS(3125), - [anon_sym_u8] = ACTIONS(3125), - [anon_sym_u16] = ACTIONS(3125), - [anon_sym_u32] = ACTIONS(3125), - [anon_sym_u64] = ACTIONS(3125), - [anon_sym_isize] = ACTIONS(3125), - [anon_sym_usize] = ACTIONS(3125), - [anon_sym_f32] = ACTIONS(3125), - [anon_sym_f64] = ACTIONS(3125), - [anon_sym_c_char] = ACTIONS(3125), - [anon_sym_c_schar] = ACTIONS(3125), - [anon_sym_c_uchar] = ACTIONS(3125), - [anon_sym_c_short] = ACTIONS(3125), - [anon_sym_c_ushort] = ACTIONS(3125), - [anon_sym_c_int] = ACTIONS(3125), - [anon_sym_c_uint] = ACTIONS(3125), - [anon_sym_c_long] = ACTIONS(3125), - [anon_sym_c_ulong] = ACTIONS(3125), - [anon_sym_c_longlong] = ACTIONS(3125), - [anon_sym_c_ulonglong] = ACTIONS(3125), - [anon_sym_c_float] = ACTIONS(3125), - [anon_sym_c_double] = ACTIONS(3125), - [anon_sym_c_longdouble] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_yield] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_defer] = ACTIONS(3125), - [anon_sym_errdefer] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_while] = ACTIONS(3125), - [anon_sym_for] = ACTIONS(3125), - [anon_sym_match] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_try] = ACTIONS(3125), - [anon_sym_DOT] = ACTIONS(3127), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [sym_none] = ACTIONS(3125), - [sym_undefined] = ACTIONS(3125), - [sym_sink] = ACTIONS(3125), - [sym_integer] = ACTIONS(3125), - [sym_float] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym_multiline_string] = ACTIONS(3127), - [sym_character] = ACTIONS(3127), + [sym_identifier] = ACTIONS(3127), + [anon_sym_func] = ACTIONS(3127), + [anon_sym_BANG] = ACTIONS(3129), + [anon_sym_struct] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_DOLLAR] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3129), + [anon_sym_void] = ACTIONS(3127), + [anon_sym_anyopaque] = ACTIONS(3127), + [anon_sym_bool] = ACTIONS(3127), + [anon_sym_int] = ACTIONS(3127), + [anon_sym_float] = ACTIONS(3127), + [anon_sym_range] = ACTIONS(3127), + [anon_sym_i8] = ACTIONS(3127), + [anon_sym_i16] = ACTIONS(3127), + [anon_sym_i32] = ACTIONS(3127), + [anon_sym_i64] = ACTIONS(3127), + [anon_sym_u8] = ACTIONS(3127), + [anon_sym_u16] = ACTIONS(3127), + [anon_sym_u32] = ACTIONS(3127), + [anon_sym_u64] = ACTIONS(3127), + [anon_sym_isize] = ACTIONS(3127), + [anon_sym_usize] = ACTIONS(3127), + [anon_sym_f32] = ACTIONS(3127), + [anon_sym_f64] = ACTIONS(3127), + [anon_sym_c_char] = ACTIONS(3127), + [anon_sym_c_schar] = ACTIONS(3127), + [anon_sym_c_uchar] = ACTIONS(3127), + [anon_sym_c_short] = ACTIONS(3127), + [anon_sym_c_ushort] = ACTIONS(3127), + [anon_sym_c_int] = ACTIONS(3127), + [anon_sym_c_uint] = ACTIONS(3127), + [anon_sym_c_long] = ACTIONS(3127), + [anon_sym_c_ulong] = ACTIONS(3127), + [anon_sym_c_longlong] = ACTIONS(3127), + [anon_sym_c_ulonglong] = ACTIONS(3127), + [anon_sym_c_float] = ACTIONS(3127), + [anon_sym_c_double] = ACTIONS(3127), + [anon_sym_c_longdouble] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_yield] = ACTIONS(3127), + [anon_sym_break] = ACTIONS(3127), + [anon_sym_continue] = ACTIONS(3127), + [anon_sym_defer] = ACTIONS(3127), + [anon_sym_errdefer] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_match] = ACTIONS(3127), + [anon_sym_AMP] = ACTIONS(3129), + [anon_sym_try] = ACTIONS(3127), + [anon_sym_DOT] = ACTIONS(3129), + [anon_sym_true] = ACTIONS(3127), + [anon_sym_false] = ACTIONS(3127), + [sym_none] = ACTIONS(3127), + [sym_undefined] = ACTIONS(3127), + [sym_sink] = ACTIONS(3127), + [sym_integer] = ACTIONS(3127), + [sym_float] = ACTIONS(3129), + [anon_sym_DQUOTE] = ACTIONS(3129), + [sym_multiline_string] = ACTIONS(3129), + [sym_character] = ACTIONS(3129), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3127), + [sym__newline] = ACTIONS(3129), }, [STATE(1248)] = { - [sym_identifier] = ACTIONS(3129), - [anon_sym_func] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3129), - [anon_sym_anyopaque] = ACTIONS(3129), - [anon_sym_bool] = ACTIONS(3129), - [anon_sym_int] = ACTIONS(3129), - [anon_sym_float] = ACTIONS(3129), - [anon_sym_range] = ACTIONS(3129), - [anon_sym_i8] = ACTIONS(3129), - [anon_sym_i16] = ACTIONS(3129), - [anon_sym_i32] = ACTIONS(3129), - [anon_sym_i64] = ACTIONS(3129), - [anon_sym_u8] = ACTIONS(3129), - [anon_sym_u16] = ACTIONS(3129), - [anon_sym_u32] = ACTIONS(3129), - [anon_sym_u64] = ACTIONS(3129), - [anon_sym_isize] = ACTIONS(3129), - [anon_sym_usize] = ACTIONS(3129), - [anon_sym_f32] = ACTIONS(3129), - [anon_sym_f64] = ACTIONS(3129), - [anon_sym_c_char] = ACTIONS(3129), - [anon_sym_c_schar] = ACTIONS(3129), - [anon_sym_c_uchar] = ACTIONS(3129), - [anon_sym_c_short] = ACTIONS(3129), - [anon_sym_c_ushort] = ACTIONS(3129), - [anon_sym_c_int] = ACTIONS(3129), - [anon_sym_c_uint] = ACTIONS(3129), - [anon_sym_c_long] = ACTIONS(3129), - [anon_sym_c_ulong] = ACTIONS(3129), - [anon_sym_c_longlong] = ACTIONS(3129), - [anon_sym_c_ulonglong] = ACTIONS(3129), - [anon_sym_c_float] = ACTIONS(3129), - [anon_sym_c_double] = ACTIONS(3129), - [anon_sym_c_longdouble] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_yield] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_defer] = ACTIONS(3129), - [anon_sym_errdefer] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_match] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_true] = ACTIONS(3129), - [anon_sym_false] = ACTIONS(3129), - [sym_none] = ACTIONS(3129), - [sym_undefined] = ACTIONS(3129), - [sym_sink] = ACTIONS(3129), - [sym_integer] = ACTIONS(3129), - [sym_float] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [sym_multiline_string] = ACTIONS(3131), - [sym_character] = ACTIONS(3131), + [sym_identifier] = ACTIONS(3131), + [anon_sym_func] = ACTIONS(3131), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_struct] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_DOLLAR] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(3133), + [anon_sym_void] = ACTIONS(3131), + [anon_sym_anyopaque] = ACTIONS(3131), + [anon_sym_bool] = ACTIONS(3131), + [anon_sym_int] = ACTIONS(3131), + [anon_sym_float] = ACTIONS(3131), + [anon_sym_range] = ACTIONS(3131), + [anon_sym_i8] = ACTIONS(3131), + [anon_sym_i16] = ACTIONS(3131), + [anon_sym_i32] = ACTIONS(3131), + [anon_sym_i64] = ACTIONS(3131), + [anon_sym_u8] = ACTIONS(3131), + [anon_sym_u16] = ACTIONS(3131), + [anon_sym_u32] = ACTIONS(3131), + [anon_sym_u64] = ACTIONS(3131), + [anon_sym_isize] = ACTIONS(3131), + [anon_sym_usize] = ACTIONS(3131), + [anon_sym_f32] = ACTIONS(3131), + [anon_sym_f64] = ACTIONS(3131), + [anon_sym_c_char] = ACTIONS(3131), + [anon_sym_c_schar] = ACTIONS(3131), + [anon_sym_c_uchar] = ACTIONS(3131), + [anon_sym_c_short] = ACTIONS(3131), + [anon_sym_c_ushort] = ACTIONS(3131), + [anon_sym_c_int] = ACTIONS(3131), + [anon_sym_c_uint] = ACTIONS(3131), + [anon_sym_c_long] = ACTIONS(3131), + [anon_sym_c_ulong] = ACTIONS(3131), + [anon_sym_c_longlong] = ACTIONS(3131), + [anon_sym_c_ulonglong] = ACTIONS(3131), + [anon_sym_c_float] = ACTIONS(3131), + [anon_sym_c_double] = ACTIONS(3131), + [anon_sym_c_longdouble] = ACTIONS(3131), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_break] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(3131), + [anon_sym_defer] = ACTIONS(3131), + [anon_sym_errdefer] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3131), + [anon_sym_while] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(3131), + [anon_sym_match] = ACTIONS(3131), + [anon_sym_AMP] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3131), + [anon_sym_DOT] = ACTIONS(3133), + [anon_sym_true] = ACTIONS(3131), + [anon_sym_false] = ACTIONS(3131), + [sym_none] = ACTIONS(3131), + [sym_undefined] = ACTIONS(3131), + [sym_sink] = ACTIONS(3131), + [sym_integer] = ACTIONS(3131), + [sym_float] = ACTIONS(3133), + [anon_sym_DQUOTE] = ACTIONS(3133), + [sym_multiline_string] = ACTIONS(3133), + [sym_character] = ACTIONS(3133), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3131), + [sym__newline] = ACTIONS(3133), }, [STATE(1249)] = { - [sym_identifier] = ACTIONS(3133), - [anon_sym_func] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_DOLLAR] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_void] = ACTIONS(3133), - [anon_sym_anyopaque] = ACTIONS(3133), - [anon_sym_bool] = ACTIONS(3133), - [anon_sym_int] = ACTIONS(3133), - [anon_sym_float] = ACTIONS(3133), - [anon_sym_range] = ACTIONS(3133), - [anon_sym_i8] = ACTIONS(3133), - [anon_sym_i16] = ACTIONS(3133), - [anon_sym_i32] = ACTIONS(3133), - [anon_sym_i64] = ACTIONS(3133), - [anon_sym_u8] = ACTIONS(3133), - [anon_sym_u16] = ACTIONS(3133), - [anon_sym_u32] = ACTIONS(3133), - [anon_sym_u64] = ACTIONS(3133), - [anon_sym_isize] = ACTIONS(3133), - [anon_sym_usize] = ACTIONS(3133), - [anon_sym_f32] = ACTIONS(3133), - [anon_sym_f64] = ACTIONS(3133), - [anon_sym_c_char] = ACTIONS(3133), - [anon_sym_c_schar] = ACTIONS(3133), - [anon_sym_c_uchar] = ACTIONS(3133), - [anon_sym_c_short] = ACTIONS(3133), - [anon_sym_c_ushort] = ACTIONS(3133), - [anon_sym_c_int] = ACTIONS(3133), - [anon_sym_c_uint] = ACTIONS(3133), - [anon_sym_c_long] = ACTIONS(3133), - [anon_sym_c_ulong] = ACTIONS(3133), - [anon_sym_c_longlong] = ACTIONS(3133), - [anon_sym_c_ulonglong] = ACTIONS(3133), - [anon_sym_c_float] = ACTIONS(3133), - [anon_sym_c_double] = ACTIONS(3133), - [anon_sym_c_longdouble] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3133), - [anon_sym_break] = ACTIONS(3133), - [anon_sym_continue] = ACTIONS(3133), - [anon_sym_defer] = ACTIONS(3133), - [anon_sym_errdefer] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_while] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3133), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3133), - [anon_sym_false] = ACTIONS(3133), - [sym_none] = ACTIONS(3133), - [sym_undefined] = ACTIONS(3133), - [sym_sink] = ACTIONS(3133), - [sym_integer] = ACTIONS(3133), - [sym_float] = ACTIONS(3135), - [anon_sym_DQUOTE] = ACTIONS(3135), - [sym_multiline_string] = ACTIONS(3135), - [sym_character] = ACTIONS(3135), + [sym_identifier] = ACTIONS(3135), + [anon_sym_func] = ACTIONS(3135), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_struct] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_DOLLAR] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_void] = ACTIONS(3135), + [anon_sym_anyopaque] = ACTIONS(3135), + [anon_sym_bool] = ACTIONS(3135), + [anon_sym_int] = ACTIONS(3135), + [anon_sym_float] = ACTIONS(3135), + [anon_sym_range] = ACTIONS(3135), + [anon_sym_i8] = ACTIONS(3135), + [anon_sym_i16] = ACTIONS(3135), + [anon_sym_i32] = ACTIONS(3135), + [anon_sym_i64] = ACTIONS(3135), + [anon_sym_u8] = ACTIONS(3135), + [anon_sym_u16] = ACTIONS(3135), + [anon_sym_u32] = ACTIONS(3135), + [anon_sym_u64] = ACTIONS(3135), + [anon_sym_isize] = ACTIONS(3135), + [anon_sym_usize] = ACTIONS(3135), + [anon_sym_f32] = ACTIONS(3135), + [anon_sym_f64] = ACTIONS(3135), + [anon_sym_c_char] = ACTIONS(3135), + [anon_sym_c_schar] = ACTIONS(3135), + [anon_sym_c_uchar] = ACTIONS(3135), + [anon_sym_c_short] = ACTIONS(3135), + [anon_sym_c_ushort] = ACTIONS(3135), + [anon_sym_c_int] = ACTIONS(3135), + [anon_sym_c_uint] = ACTIONS(3135), + [anon_sym_c_long] = ACTIONS(3135), + [anon_sym_c_ulong] = ACTIONS(3135), + [anon_sym_c_longlong] = ACTIONS(3135), + [anon_sym_c_ulonglong] = ACTIONS(3135), + [anon_sym_c_float] = ACTIONS(3135), + [anon_sym_c_double] = ACTIONS(3135), + [anon_sym_c_longdouble] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3135), + [anon_sym_yield] = ACTIONS(3135), + [anon_sym_break] = ACTIONS(3135), + [anon_sym_continue] = ACTIONS(3135), + [anon_sym_defer] = ACTIONS(3135), + [anon_sym_errdefer] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3135), + [anon_sym_while] = ACTIONS(3135), + [anon_sym_for] = ACTIONS(3135), + [anon_sym_match] = ACTIONS(3135), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3135), + [anon_sym_DOT] = ACTIONS(3137), + [anon_sym_true] = ACTIONS(3135), + [anon_sym_false] = ACTIONS(3135), + [sym_none] = ACTIONS(3135), + [sym_undefined] = ACTIONS(3135), + [sym_sink] = ACTIONS(3135), + [sym_integer] = ACTIONS(3135), + [sym_float] = ACTIONS(3137), + [anon_sym_DQUOTE] = ACTIONS(3137), + [sym_multiline_string] = ACTIONS(3137), + [sym_character] = ACTIONS(3137), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3135), + [sym__newline] = ACTIONS(3137), }, [STATE(1250)] = { - [sym_identifier] = ACTIONS(3137), - [anon_sym_func] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_DOLLAR] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_void] = ACTIONS(3137), - [anon_sym_anyopaque] = ACTIONS(3137), - [anon_sym_bool] = ACTIONS(3137), - [anon_sym_int] = ACTIONS(3137), - [anon_sym_float] = ACTIONS(3137), - [anon_sym_range] = ACTIONS(3137), - [anon_sym_i8] = ACTIONS(3137), - [anon_sym_i16] = ACTIONS(3137), - [anon_sym_i32] = ACTIONS(3137), - [anon_sym_i64] = ACTIONS(3137), - [anon_sym_u8] = ACTIONS(3137), - [anon_sym_u16] = ACTIONS(3137), - [anon_sym_u32] = ACTIONS(3137), - [anon_sym_u64] = ACTIONS(3137), - [anon_sym_isize] = ACTIONS(3137), - [anon_sym_usize] = ACTIONS(3137), - [anon_sym_f32] = ACTIONS(3137), - [anon_sym_f64] = ACTIONS(3137), - [anon_sym_c_char] = ACTIONS(3137), - [anon_sym_c_schar] = ACTIONS(3137), - [anon_sym_c_uchar] = ACTIONS(3137), - [anon_sym_c_short] = ACTIONS(3137), - [anon_sym_c_ushort] = ACTIONS(3137), - [anon_sym_c_int] = ACTIONS(3137), - [anon_sym_c_uint] = ACTIONS(3137), - [anon_sym_c_long] = ACTIONS(3137), - [anon_sym_c_ulong] = ACTIONS(3137), - [anon_sym_c_longlong] = ACTIONS(3137), - [anon_sym_c_ulonglong] = ACTIONS(3137), - [anon_sym_c_float] = ACTIONS(3137), - [anon_sym_c_double] = ACTIONS(3137), - [anon_sym_c_longdouble] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_yield] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_defer] = ACTIONS(3137), - [anon_sym_errdefer] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_while] = ACTIONS(3137), - [anon_sym_for] = ACTIONS(3137), - [anon_sym_match] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(3139), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [sym_none] = ACTIONS(3137), - [sym_undefined] = ACTIONS(3137), - [sym_sink] = ACTIONS(3137), - [sym_integer] = ACTIONS(3137), - [sym_float] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3139), - [sym_multiline_string] = ACTIONS(3139), - [sym_character] = ACTIONS(3139), + [sym_identifier] = ACTIONS(3139), + [anon_sym_func] = ACTIONS(3139), + [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_struct] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_DOLLAR] = ACTIONS(3141), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_void] = ACTIONS(3139), + [anon_sym_anyopaque] = ACTIONS(3139), + [anon_sym_bool] = ACTIONS(3139), + [anon_sym_int] = ACTIONS(3139), + [anon_sym_float] = ACTIONS(3139), + [anon_sym_range] = ACTIONS(3139), + [anon_sym_i8] = ACTIONS(3139), + [anon_sym_i16] = ACTIONS(3139), + [anon_sym_i32] = ACTIONS(3139), + [anon_sym_i64] = ACTIONS(3139), + [anon_sym_u8] = ACTIONS(3139), + [anon_sym_u16] = ACTIONS(3139), + [anon_sym_u32] = ACTIONS(3139), + [anon_sym_u64] = ACTIONS(3139), + [anon_sym_isize] = ACTIONS(3139), + [anon_sym_usize] = ACTIONS(3139), + [anon_sym_f32] = ACTIONS(3139), + [anon_sym_f64] = ACTIONS(3139), + [anon_sym_c_char] = ACTIONS(3139), + [anon_sym_c_schar] = ACTIONS(3139), + [anon_sym_c_uchar] = ACTIONS(3139), + [anon_sym_c_short] = ACTIONS(3139), + [anon_sym_c_ushort] = ACTIONS(3139), + [anon_sym_c_int] = ACTIONS(3139), + [anon_sym_c_uint] = ACTIONS(3139), + [anon_sym_c_long] = ACTIONS(3139), + [anon_sym_c_ulong] = ACTIONS(3139), + [anon_sym_c_longlong] = ACTIONS(3139), + [anon_sym_c_ulonglong] = ACTIONS(3139), + [anon_sym_c_float] = ACTIONS(3139), + [anon_sym_c_double] = ACTIONS(3139), + [anon_sym_c_longdouble] = ACTIONS(3139), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_yield] = ACTIONS(3139), + [anon_sym_break] = ACTIONS(3139), + [anon_sym_continue] = ACTIONS(3139), + [anon_sym_defer] = ACTIONS(3139), + [anon_sym_errdefer] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_for] = ACTIONS(3139), + [anon_sym_match] = ACTIONS(3139), + [anon_sym_AMP] = ACTIONS(3141), + [anon_sym_try] = ACTIONS(3139), + [anon_sym_DOT] = ACTIONS(3141), + [anon_sym_true] = ACTIONS(3139), + [anon_sym_false] = ACTIONS(3139), + [sym_none] = ACTIONS(3139), + [sym_undefined] = ACTIONS(3139), + [sym_sink] = ACTIONS(3139), + [sym_integer] = ACTIONS(3139), + [sym_float] = ACTIONS(3141), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym_multiline_string] = ACTIONS(3141), + [sym_character] = ACTIONS(3141), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3139), + [sym__newline] = ACTIONS(3141), + }, + [STATE(1251)] = { + [sym_identifier] = ACTIONS(3143), + [anon_sym_func] = ACTIONS(3143), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_struct] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3145), + [anon_sym_void] = ACTIONS(3143), + [anon_sym_anyopaque] = ACTIONS(3143), + [anon_sym_bool] = ACTIONS(3143), + [anon_sym_int] = ACTIONS(3143), + [anon_sym_float] = ACTIONS(3143), + [anon_sym_range] = ACTIONS(3143), + [anon_sym_i8] = ACTIONS(3143), + [anon_sym_i16] = ACTIONS(3143), + [anon_sym_i32] = ACTIONS(3143), + [anon_sym_i64] = ACTIONS(3143), + [anon_sym_u8] = ACTIONS(3143), + [anon_sym_u16] = ACTIONS(3143), + [anon_sym_u32] = ACTIONS(3143), + [anon_sym_u64] = ACTIONS(3143), + [anon_sym_isize] = ACTIONS(3143), + [anon_sym_usize] = ACTIONS(3143), + [anon_sym_f32] = ACTIONS(3143), + [anon_sym_f64] = ACTIONS(3143), + [anon_sym_c_char] = ACTIONS(3143), + [anon_sym_c_schar] = ACTIONS(3143), + [anon_sym_c_uchar] = ACTIONS(3143), + [anon_sym_c_short] = ACTIONS(3143), + [anon_sym_c_ushort] = ACTIONS(3143), + [anon_sym_c_int] = ACTIONS(3143), + [anon_sym_c_uint] = ACTIONS(3143), + [anon_sym_c_long] = ACTIONS(3143), + [anon_sym_c_ulong] = ACTIONS(3143), + [anon_sym_c_longlong] = ACTIONS(3143), + [anon_sym_c_ulonglong] = ACTIONS(3143), + [anon_sym_c_float] = ACTIONS(3143), + [anon_sym_c_double] = ACTIONS(3143), + [anon_sym_c_longdouble] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_yield] = ACTIONS(3143), + [anon_sym_break] = ACTIONS(3143), + [anon_sym_continue] = ACTIONS(3143), + [anon_sym_defer] = ACTIONS(3143), + [anon_sym_errdefer] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_match] = ACTIONS(3143), + [anon_sym_AMP] = ACTIONS(3145), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_DOT] = ACTIONS(3145), + [anon_sym_true] = ACTIONS(3143), + [anon_sym_false] = ACTIONS(3143), + [sym_none] = ACTIONS(3143), + [sym_undefined] = ACTIONS(3143), + [sym_sink] = ACTIONS(3143), + [sym_integer] = ACTIONS(3143), + [sym_float] = ACTIONS(3145), + [anon_sym_DQUOTE] = ACTIONS(3145), + [sym_multiline_string] = ACTIONS(3145), + [sym_character] = ACTIONS(3145), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3145), }, }; @@ -122656,11 +123537,11 @@ static const uint16_t ts_small_parse_table[] = { [0] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 1, + ACTIONS(3147), 1, sym__newline, - STATE(1251), 1, + STATE(1252), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1572), 14, + ACTIONS(1586), 14, anon_sym_BANG, anon_sym_LPAREN, anon_sym_DASH, @@ -122675,7 +123556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1570), 43, + ACTIONS(1584), 43, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -122722,13 +123603,13 @@ static const uint16_t ts_small_parse_table[] = { [71] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 1, + ACTIONS(3147), 1, sym__newline, - ACTIONS(3144), 1, + ACTIONS(3150), 1, anon_sym_RBRACK, - STATE(1251), 1, + STATE(1252), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1572), 13, + ACTIONS(1586), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_DASH, @@ -122742,7 +123623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1570), 43, + ACTIONS(1584), 43, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -122789,13 +123670,13 @@ static const uint16_t ts_small_parse_table[] = { [144] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1588), 1, sym__newline, - ACTIONS(3144), 1, + ACTIONS(3150), 1, anon_sym_RBRACK, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1572), 13, + ACTIONS(1586), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_DASH, @@ -122809,7 +123690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1570), 42, + ACTIONS(1584), 42, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -122855,13 +123736,13 @@ static const uint16_t ts_small_parse_table[] = { [216] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1588), 1, sym__newline, - ACTIONS(3147), 1, + ACTIONS(3153), 1, anon_sym_RBRACK, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1572), 13, + ACTIONS(1586), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_DASH, @@ -122875,7 +123756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1570), 42, + ACTIONS(1584), 42, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -122921,13 +123802,13 @@ static const uint16_t ts_small_parse_table[] = { [288] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3150), 1, + ACTIONS(3156), 1, anon_sym_else, - ACTIONS(3153), 1, + ACTIONS(3159), 1, sym__newline, - STATE(1961), 1, + STATE(1951), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3033), 12, + ACTIONS(3049), 12, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -122940,7 +123821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3031), 42, + ACTIONS(3047), 42, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -122986,13 +123867,13 @@ static const uint16_t ts_small_parse_table[] = { [359] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3156), 1, + ACTIONS(3162), 1, anon_sym_else, - ACTIONS(3159), 1, + ACTIONS(3165), 1, sym__newline, - STATE(1968), 1, + STATE(1962), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3043), 12, + ACTIONS(3067), 12, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -123005,7 +123886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3041), 42, + ACTIONS(3065), 42, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -123051,13 +123932,13 @@ static const uint16_t ts_small_parse_table[] = { [430] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 1, + ACTIONS(3168), 1, anon_sym_else, - ACTIONS(3165), 1, + ACTIONS(3171), 1, sym__newline, - STATE(1965), 1, + STATE(1963), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3052), 12, + ACTIONS(3076), 12, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -123070,7 +123951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3050), 42, + ACTIONS(3074), 42, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -123116,13 +123997,13 @@ static const uint16_t ts_small_parse_table[] = { [501] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3168), 1, + ACTIONS(3174), 1, anon_sym_else, - ACTIONS(3171), 1, + ACTIONS(3177), 1, sym__newline, - STATE(1969), 1, + STATE(1960), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3062), 12, + ACTIONS(3058), 12, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -123135,7 +124016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3060), 42, + ACTIONS(3056), 42, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -123181,13 +124062,13 @@ static const uint16_t ts_small_parse_table[] = { [572] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 1, + ACTIONS(3180), 1, anon_sym_else, - ACTIONS(3177), 1, + ACTIONS(3183), 1, sym__newline, - STATE(1966), 1, + STATE(1965), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3077), 12, + ACTIONS(3085), 12, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -123200,7 +124081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3075), 42, + ACTIONS(3083), 42, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -123246,13 +124127,13 @@ static const uint16_t ts_small_parse_table[] = { [643] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3180), 1, + ACTIONS(3186), 1, anon_sym_else, - ACTIONS(3183), 1, + ACTIONS(3189), 1, sym__newline, - STATE(1967), 1, + STATE(1966), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3086), 12, + ACTIONS(3039), 12, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -123265,7 +124146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3084), 42, + ACTIONS(3037), 42, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -123311,7 +124192,7 @@ static const uint16_t ts_small_parse_table[] = { [714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3188), 13, + ACTIONS(3194), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -123325,7 +124206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(3186), 43, + ACTIONS(3192), 43, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -123372,7 +124253,7 @@ static const uint16_t ts_small_parse_table[] = { [778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3192), 13, + ACTIONS(3198), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -123386,7 +124267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(3190), 43, + ACTIONS(3196), 43, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -123433,7 +124314,7 @@ static const uint16_t ts_small_parse_table[] = { [842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3196), 13, + ACTIONS(3202), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -123447,7 +124328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(3194), 43, + ACTIONS(3200), 43, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -123494,7 +124375,7 @@ static const uint16_t ts_small_parse_table[] = { [906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3200), 13, + ACTIONS(3206), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -123508,7 +124389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(3198), 43, + ACTIONS(3204), 43, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -123555,7 +124436,7 @@ static const uint16_t ts_small_parse_table[] = { [970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3204), 13, + ACTIONS(3210), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -123569,7 +124450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(3202), 43, + ACTIONS(3208), 43, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -123616,7 +124497,7 @@ static const uint16_t ts_small_parse_table[] = { [1034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3208), 13, + ACTIONS(3214), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -123630,7 +124511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(3206), 43, + ACTIONS(3212), 43, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -123677,357 +124558,22 @@ static const uint16_t ts_small_parse_table[] = { [1098] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(894), 1, + anon_sym_union, + ACTIONS(896), 1, anon_sym_enum, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1713), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(395), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(37), 32, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [1177] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(892), 1, - anon_sym_union, - ACTIONS(894), 1, - anon_sym_enum, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - STATE(399), 1, - sym_qualified_identifier, - ACTIONS(273), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(277), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1498), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(398), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(37), 32, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [1256] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(892), 1, - anon_sym_union, - ACTIONS(894), 1, - anon_sym_enum, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - STATE(399), 1, - sym_qualified_identifier, - ACTIONS(273), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(277), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(407), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(398), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(37), 32, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [1335] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(892), 1, - anon_sym_union, - ACTIONS(894), 1, - anon_sym_enum, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - STATE(399), 1, - sym_qualified_identifier, - ACTIONS(273), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(277), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(417), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(398), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(37), 32, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [1414] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(892), 1, - anon_sym_union, - ACTIONS(894), 1, - anon_sym_enum, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - STATE(399), 1, - sym_qualified_identifier, - ACTIONS(273), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(277), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1903), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(395), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(37), 32, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [1493] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(892), 1, - anon_sym_union, - ACTIONS(894), 1, - anon_sym_enum, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - STATE(399), 1, - sym_qualified_identifier, - ACTIONS(273), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, STATE(1499), 4, @@ -124076,27 +124622,362 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, + [1177] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 1, + anon_sym_union, + ACTIONS(896), 1, + anon_sym_enum, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + STATE(396), 1, + sym_qualified_identifier, + ACTIONS(319), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(324), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(426), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(398), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 32, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [1256] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 1, + anon_sym_union, + ACTIONS(896), 1, + anon_sym_enum, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + STATE(396), 1, + sym_qualified_identifier, + ACTIONS(319), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(324), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1500), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(398), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 32, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [1335] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 1, + anon_sym_union, + ACTIONS(896), 1, + anon_sym_enum, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + STATE(396), 1, + sym_qualified_identifier, + ACTIONS(319), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(324), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1733), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(400), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 32, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [1414] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 1, + anon_sym_union, + ACTIONS(896), 1, + anon_sym_enum, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + STATE(396), 1, + sym_qualified_identifier, + ACTIONS(319), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(324), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1862), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(400), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 32, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [1493] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 1, + anon_sym_union, + ACTIONS(896), 1, + anon_sym_enum, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + STATE(396), 1, + sym_qualified_identifier, + ACTIONS(319), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(324), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(438), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(398), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 32, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, [1572] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1494), 1, + STATE(416), 1, sym_type, - ACTIONS(273), 2, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, STATE(398), 7, @@ -124143,27 +125024,27 @@ static const uint16_t ts_small_parse_table[] = { [1648] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + ACTIONS(3220), 1, + sym__newline, + STATE(396), 1, sym_qualified_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1644), 1, + STATE(406), 1, sym_type, - ACTIONS(273), 2, + STATE(1274), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(398), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -124207,27 +125088,27 @@ static const uint16_t ts_small_parse_table[] = { [1724] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - ACTIONS(3214), 1, + ACTIONS(3222), 1, anon_sym_COMMA, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(1359), 1, + STATE(1285), 1, aux_sym_parameter_repeat1, - STATE(2040), 1, + STATE(1956), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -124268,477 +125149,477 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [1800] = 11, + [1800] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + ACTIONS(3222), 1, + anon_sym_COMMA, + STATE(396), 1, + sym_qualified_identifier, + STATE(1279), 1, + aux_sym_parameter_repeat1, + STATE(1957), 1, + sym_type, + ACTIONS(319), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(324), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(400), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 32, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [1876] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + STATE(396), 1, + sym_qualified_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1496), 1, + sym_type, + ACTIONS(319), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(324), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(398), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 32, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [1952] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + ACTIONS(3222), 1, + anon_sym_COMMA, + STATE(396), 1, + sym_qualified_identifier, + STATE(1360), 1, + aux_sym_parameter_repeat1, + STATE(2032), 1, + sym_type, + ACTIONS(319), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(324), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(400), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 32, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [2028] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + ACTIONS(3224), 1, + anon_sym_COLON_COLON, + ACTIONS(3228), 1, + anon_sym_EQ, + STATE(396), 1, + sym_qualified_identifier, + STATE(2063), 1, + sym_type, + ACTIONS(324), 2, + anon_sym_AT, + anon_sym_STAR, + ACTIONS(3226), 2, + anon_sym_func, + anon_sym_c_func, + STATE(400), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 32, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [2104] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + ACTIONS(3230), 1, + sym__newline, + STATE(396), 1, + sym_qualified_identifier, + STATE(1282), 1, + aux_sym_import_declaration_repeat1, + STATE(1579), 1, + sym_type, + ACTIONS(319), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(324), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(400), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 32, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [2180] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + STATE(396), 1, + sym_qualified_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1616), 1, + sym_type, + ACTIONS(319), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(324), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(400), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 32, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [2256] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + ACTIONS(3232), 1, + sym__newline, + STATE(396), 1, + sym_qualified_identifier, + STATE(1278), 1, + aux_sym_import_declaration_repeat1, + STATE(1498), 1, + sym_type, + ACTIONS(319), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(324), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(398), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 32, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [2332] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_struct, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(1867), 2, + STATE(1821), 2, sym_struct_type, sym_type, - STATE(395), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(37), 32, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [1874] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - ACTIONS(3214), 1, - anon_sym_COMMA, - STATE(399), 1, - sym_qualified_identifier, - STATE(1275), 1, - aux_sym_parameter_repeat1, - STATE(1985), 1, - sym_type, - ACTIONS(273), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(277), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(395), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(37), 32, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [1950] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - ACTIONS(3214), 1, - anon_sym_COMMA, - STATE(399), 1, - sym_qualified_identifier, - STATE(1359), 1, - aux_sym_parameter_repeat1, - STATE(1987), 1, - sym_type, - ACTIONS(273), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(277), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(395), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(37), 32, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2026] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - ACTIONS(3216), 1, - sym__newline, - STATE(399), 1, - sym_qualified_identifier, - STATE(459), 1, - sym_type, - STATE(1280), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(273), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(277), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(398), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(37), 32, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2102] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - STATE(399), 1, - sym_qualified_identifier, - STATE(424), 1, - sym_type, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(273), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(277), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(398), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(37), 32, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2178] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - ACTIONS(3218), 1, - anon_sym_COLON_COLON, - ACTIONS(3222), 1, - anon_sym_EQ, - STATE(399), 1, - sym_qualified_identifier, - STATE(2078), 1, - sym_type, - ACTIONS(277), 2, - anon_sym_AT, - anon_sym_STAR, - ACTIONS(3220), 2, - anon_sym_func, - anon_sym_c_func, - STATE(395), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(37), 32, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2254] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - ACTIONS(3224), 1, - sym__newline, - STATE(399), 1, - sym_qualified_identifier, - STATE(1273), 1, - aux_sym_import_declaration_repeat1, - STATE(1495), 1, - sym_type, - ACTIONS(273), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(277), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(398), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(37), 32, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2330] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - ACTIONS(3214), 1, - anon_sym_COMMA, - STATE(399), 1, - sym_qualified_identifier, - STATE(1278), 1, - aux_sym_parameter_repeat1, - STATE(1931), 1, - sym_type, - ACTIONS(273), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(277), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(395), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -124782,27 +125663,27 @@ static const uint16_t ts_small_parse_table[] = { [2406] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - ACTIONS(3226), 1, - sym__newline, - STATE(399), 1, + ACTIONS(3222), 1, + anon_sym_COMMA, + STATE(396), 1, sym_qualified_identifier, - STATE(1274), 1, - aux_sym_import_declaration_repeat1, - STATE(1559), 1, + STATE(1360), 1, + aux_sym_parameter_repeat1, + STATE(1926), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -124846,25 +125727,25 @@ static const uint16_t ts_small_parse_table[] = { [2482] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - ACTIONS(3228), 1, + ACTIONS(3234), 1, anon_sym_mut, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(445), 1, + STATE(414), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(398), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -124908,25 +125789,25 @@ static const uint16_t ts_small_parse_table[] = { [2555] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - ACTIONS(3230), 1, + ACTIONS(600), 1, anon_sym_mut, - STATE(399), 1, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + STATE(396), 1, sym_qualified_identifier, - STATE(446), 1, + STATE(407), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(398), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -124970,25 +125851,25 @@ static const uint16_t ts_small_parse_table[] = { [2628] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - ACTIONS(3232), 1, + ACTIONS(3236), 1, anon_sym_mut, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(419), 1, + STATE(417), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -125032,25 +125913,25 @@ static const uint16_t ts_small_parse_table[] = { [2701] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - ACTIONS(3234), 1, + ACTIONS(3238), 1, anon_sym_mut, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(454), 1, + STATE(439), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -125094,25 +125975,25 @@ static const uint16_t ts_small_parse_table[] = { [2774] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - ACTIONS(3236), 1, + ACTIONS(3240), 1, anon_sym_mut, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(445), 1, + STATE(441), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -125156,25 +126037,25 @@ static const uint16_t ts_small_parse_table[] = { [2847] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - ACTIONS(3238), 1, + ACTIONS(3242), 1, anon_sym_mut, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(425), 1, + STATE(442), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -125218,25 +126099,25 @@ static const uint16_t ts_small_parse_table[] = { [2920] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - ACTIONS(3240), 1, + ACTIONS(3244), 1, anon_sym_mut, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(425), 1, + STATE(443), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -125280,25 +126161,25 @@ static const uint16_t ts_small_parse_table[] = { [2993] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(359), 1, + ACTIONS(702), 1, anon_sym_mut, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(426), 1, + STATE(418), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -125342,25 +126223,25 @@ static const uint16_t ts_small_parse_table[] = { [3066] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(756), 1, anon_sym_mut, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(428), 1, + STATE(420), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -125404,22 +126285,22 @@ static const uint16_t ts_small_parse_table[] = { [3139] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - ACTIONS(3242), 1, + ACTIONS(3246), 1, anon_sym_mut, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(427), 1, + STATE(439), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, STATE(398), 7, @@ -125466,25 +126347,25 @@ static const uint16_t ts_small_parse_table[] = { [3212] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - ACTIONS(3244), 1, + ACTIONS(3248), 1, anon_sym_mut, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(446), 1, + STATE(419), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -125528,25 +126409,25 @@ static const uint16_t ts_small_parse_table[] = { [3285] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - anon_sym_mut, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + ACTIONS(3250), 1, + anon_sym_mut, + STATE(396), 1, sym_qualified_identifier, - STATE(426), 1, + STATE(419), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(398), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -125590,25 +126471,25 @@ static const uint16_t ts_small_parse_table[] = { [3358] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(345), 1, - anon_sym_mut, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + ACTIONS(3252), 1, + anon_sym_mut, + STATE(396), 1, sym_qualified_identifier, - STATE(428), 1, + STATE(449), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -125652,25 +126533,25 @@ static const uint16_t ts_small_parse_table[] = { [3431] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - ACTIONS(3246), 1, + ACTIONS(3254), 1, anon_sym_mut, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(427), 1, + STATE(450), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -125714,22 +126595,22 @@ static const uint16_t ts_small_parse_table[] = { [3504] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - ACTIONS(3248), 1, + ACTIONS(3256), 1, anon_sym_mut, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(420), 1, + STATE(441), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, STATE(398), 7, @@ -125776,25 +126657,25 @@ static const uint16_t ts_small_parse_table[] = { [3577] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - ACTIONS(3250), 1, + ACTIONS(608), 1, anon_sym_mut, - STATE(399), 1, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + STATE(396), 1, sym_qualified_identifier, - STATE(423), 1, + STATE(408), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -125838,25 +126719,25 @@ static const uint16_t ts_small_parse_table[] = { [3650] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - ACTIONS(3252), 1, + ACTIONS(353), 1, anon_sym_mut, - STATE(399), 1, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + STATE(396), 1, sym_qualified_identifier, - STATE(408), 1, + STATE(431), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -125900,25 +126781,25 @@ static const uint16_t ts_small_parse_table[] = { [3723] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - ACTIONS(3254), 1, + ACTIONS(3258), 1, anon_sym_mut, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(419), 1, + STATE(427), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(398), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -125962,25 +126843,25 @@ static const uint16_t ts_small_parse_table[] = { [3796] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - ACTIONS(3256), 1, + ACTIONS(3260), 1, anon_sym_mut, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(420), 1, + STATE(443), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(398), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -126024,25 +126905,25 @@ static const uint16_t ts_small_parse_table[] = { [3869] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, + ACTIONS(650), 1, anon_sym_mut, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(430), 1, + STATE(431), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(398), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -126086,22 +126967,22 @@ static const uint16_t ts_small_parse_table[] = { [3942] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - ACTIONS(3258), 1, + ACTIONS(3262), 1, anon_sym_mut, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(410), 1, + STATE(449), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, STATE(398), 7, @@ -126148,25 +127029,25 @@ static const uint16_t ts_small_parse_table[] = { [4015] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - ACTIONS(3260), 1, + ACTIONS(592), 1, anon_sym_mut, - STATE(399), 1, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + STATE(396), 1, sym_qualified_identifier, STATE(408), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(398), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -126210,25 +127091,25 @@ static const uint16_t ts_small_parse_table[] = { [4088] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - ACTIONS(3262), 1, - anon_sym_enum, - STATE(399), 1, + ACTIONS(3264), 1, + anon_sym_mut, + STATE(396), 1, sym_qualified_identifier, - STATE(2162), 1, + STATE(450), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(398), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -126272,25 +127153,25 @@ static const uint16_t ts_small_parse_table[] = { [4161] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(385), 1, - anon_sym_mut, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + ACTIONS(3266), 1, + anon_sym_mut, + STATE(396), 1, sym_qualified_identifier, - STATE(430), 1, + STATE(427), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -126334,25 +127215,25 @@ static const uint16_t ts_small_parse_table[] = { [4234] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, - anon_sym_mut, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + ACTIONS(3268), 1, + anon_sym_mut, + STATE(396), 1, sym_qualified_identifier, - STATE(437), 1, + STATE(428), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(398), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -126396,25 +127277,25 @@ static const uint16_t ts_small_parse_table[] = { [4307] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, + ACTIONS(626), 1, anon_sym_mut, - STATE(399), 1, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + STATE(396), 1, sym_qualified_identifier, - STATE(410), 1, + STATE(418), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(398), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -126458,25 +127339,25 @@ static const uint16_t ts_small_parse_table[] = { [4380] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - ACTIONS(3266), 1, + ACTIONS(329), 1, anon_sym_mut, - STATE(399), 1, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + STATE(396), 1, sym_qualified_identifier, - STATE(411), 1, + STATE(456), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(398), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -126520,25 +127401,25 @@ static const uint16_t ts_small_parse_table[] = { [4453] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - ACTIONS(3268), 1, + ACTIONS(3270), 1, anon_sym_mut, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(412), 1, + STATE(428), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -126582,25 +127463,25 @@ static const uint16_t ts_small_parse_table[] = { [4526] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(331), 1, - anon_sym_mut, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + ACTIONS(3272), 1, + anon_sym_enum, + STATE(396), 1, sym_qualified_identifier, - STATE(437), 1, + STATE(2150), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -126644,25 +127525,25 @@ static const uint16_t ts_small_parse_table[] = { [4599] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(339), 1, - anon_sym_mut, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + ACTIONS(3274), 1, + anon_sym_mut, + STATE(396), 1, sym_qualified_identifier, - STATE(441), 1, + STATE(460), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -126706,22 +127587,22 @@ static const uint16_t ts_small_parse_table[] = { [4672] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(311), 1, - anon_sym_mut, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + ACTIONS(3276), 1, + anon_sym_mut, + STATE(396), 1, sym_qualified_identifier, - STATE(453), 1, + STATE(460), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, STATE(398), 7, @@ -126768,22 +127649,22 @@ static const uint16_t ts_small_parse_table[] = { [4745] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, + ACTIONS(3278), 1, anon_sym_mut, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(411), 1, + STATE(417), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, STATE(398), 7, @@ -126830,22 +127711,22 @@ static const uint16_t ts_small_parse_table[] = { [4818] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - ACTIONS(3272), 1, + ACTIONS(634), 1, anon_sym_mut, - STATE(399), 1, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + STATE(396), 1, sym_qualified_identifier, - STATE(412), 1, + STATE(420), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, STATE(398), 7, @@ -126892,142 +127773,22 @@ static const uint16_t ts_small_parse_table[] = { [4891] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - ACTIONS(3274), 1, + ACTIONS(3280), 1, anon_sym_mut, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(423), 1, + STATE(442), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(395), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(37), 32, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [4964] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - STATE(399), 1, - sym_qualified_identifier, - STATE(426), 1, - sym_type, - ACTIONS(273), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(277), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(395), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(37), 32, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5034] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - STATE(399), 1, - sym_qualified_identifier, - STATE(408), 1, - sym_type, - ACTIONS(273), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, STATE(398), 7, @@ -127071,23 +127832,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, + [4964] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + STATE(396), 1, + sym_qualified_identifier, + STATE(452), 1, + sym_type, + ACTIONS(319), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(324), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(400), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 32, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5034] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + STATE(396), 1, + sym_qualified_identifier, + STATE(453), 1, + sym_type, + ACTIONS(319), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(324), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(400), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 32, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, [5104] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(429), 1, + STATE(444), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, STATE(398), 7, @@ -127134,20 +128015,20 @@ static const uint16_t ts_small_parse_table[] = { [5174] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(430), 1, + STATE(455), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, STATE(398), 7, @@ -127194,20 +128075,20 @@ static const uint16_t ts_small_parse_table[] = { [5244] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(426), 1, + STATE(447), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, STATE(398), 7, @@ -127254,23 +128135,23 @@ static const uint16_t ts_small_parse_table[] = { [5314] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(420), 1, + STATE(448), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(398), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -127314,20 +128195,20 @@ static const uint16_t ts_small_parse_table[] = { [5384] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(422), 1, + STATE(449), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, STATE(398), 7, @@ -127374,23 +128255,23 @@ static const uint16_t ts_small_parse_table[] = { [5454] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(445), 1, + STATE(450), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(398), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -127434,23 +128315,23 @@ static const uint16_t ts_small_parse_table[] = { [5524] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(460), 1, + STATE(2103), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -127494,23 +128375,23 @@ static const uint16_t ts_small_parse_table[] = { [5594] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(430), 1, + STATE(413), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(398), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -127554,20 +128435,20 @@ static const uint16_t ts_small_parse_table[] = { [5664] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(443), 1, + STATE(418), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, STATE(398), 7, @@ -127614,23 +128495,23 @@ static const uint16_t ts_small_parse_table[] = { [5734] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(433), 1, + STATE(407), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -127674,20 +128555,20 @@ static const uint16_t ts_small_parse_table[] = { [5804] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(409), 1, + STATE(419), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, STATE(398), 7, @@ -127734,20 +128615,20 @@ static const uint16_t ts_small_parse_table[] = { [5874] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(410), 1, + STATE(428), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, STATE(398), 7, @@ -127794,80 +128675,20 @@ static const uint16_t ts_small_parse_table[] = { [5944] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(1741), 1, + STATE(407), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(395), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(37), 32, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [6014] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - STATE(399), 1, - sym_qualified_identifier, - STATE(455), 1, - sym_type, - ACTIONS(273), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, STATE(398), 7, @@ -127911,26 +128732,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, + [6014] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + STATE(396), 1, + sym_qualified_identifier, + STATE(418), 1, + sym_type, + ACTIONS(319), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(324), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(400), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 32, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, [6084] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(446), 1, + STATE(419), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -127974,23 +128855,23 @@ static const uint16_t ts_small_parse_table[] = { [6154] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(408), 1, + STATE(430), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(398), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -128034,20 +128915,20 @@ static const uint16_t ts_small_parse_table[] = { [6224] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(460), 1, + STATE(452), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, STATE(398), 7, @@ -128094,23 +128975,23 @@ static const uint16_t ts_small_parse_table[] = { [6294] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(409), 1, + STATE(453), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(398), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -128154,23 +129035,23 @@ static const uint16_t ts_small_parse_table[] = { [6364] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(422), 1, + STATE(431), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(398), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -128214,23 +129095,23 @@ static const uint16_t ts_small_parse_table[] = { [6434] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(452), 1, + STATE(1771), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -128274,23 +129155,23 @@ static const uint16_t ts_small_parse_table[] = { [6504] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(441), 1, + STATE(428), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -128334,20 +129215,20 @@ static const uint16_t ts_small_parse_table[] = { [6574] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(433), 1, + STATE(432), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, STATE(398), 7, @@ -128394,23 +129275,23 @@ static const uint16_t ts_small_parse_table[] = { [6644] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(441), 1, + STATE(430), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -128454,23 +129335,23 @@ static const uint16_t ts_small_parse_table[] = { [6714] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(444), 1, + STATE(431), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -128514,23 +129395,23 @@ static const uint16_t ts_small_parse_table[] = { [6784] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(410), 1, + STATE(432), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -128574,23 +129455,23 @@ static const uint16_t ts_small_parse_table[] = { [6854] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(446), 1, + STATE(439), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -128634,23 +129515,23 @@ static const uint16_t ts_small_parse_table[] = { [6924] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(455), 1, + STATE(440), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -128694,23 +129575,23 @@ static const uint16_t ts_small_parse_table[] = { [6994] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(445), 1, + STATE(441), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -128754,23 +129635,23 @@ static const uint16_t ts_small_parse_table[] = { [7064] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(427), 1, + STATE(1772), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -128814,23 +129695,23 @@ static const uint16_t ts_small_parse_table[] = { [7134] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(420), 1, + STATE(444), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -128874,140 +129755,20 @@ static const uint16_t ts_small_parse_table[] = { [7204] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(413), 1, + STATE(439), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(395), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(37), 32, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [7274] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - STATE(399), 1, - sym_qualified_identifier, - STATE(2124), 1, - sym_type, - ACTIONS(273), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(277), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(395), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(37), 32, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [7344] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(3210), 1, - anon_sym_QMARK, - ACTIONS(3212), 1, - anon_sym_LBRACK, - STATE(399), 1, - sym_qualified_identifier, - STATE(413), 1, - sym_type, - ACTIONS(273), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, STATE(398), 7, @@ -129051,26 +129812,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, + [7274] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + STATE(396), 1, + sym_qualified_identifier, + STATE(447), 1, + sym_type, + ACTIONS(319), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(324), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(400), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 32, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [7344] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3218), 1, + anon_sym_LBRACK, + STATE(396), 1, + sym_qualified_identifier, + STATE(448), 1, + sym_type, + ACTIONS(319), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(324), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(400), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(37), 32, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, [7414] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(1746), 1, + STATE(449), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -129114,23 +129995,23 @@ static const uint16_t ts_small_parse_table[] = { [7484] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(443), 1, + STATE(441), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(398), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -129174,23 +130055,23 @@ static const uint16_t ts_small_parse_table[] = { [7554] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(444), 1, + STATE(450), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(395), 7, + STATE(400), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -129234,20 +130115,20 @@ static const uint16_t ts_small_parse_table[] = { [7624] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - STATE(427), 1, + STATE(440), 1, sym_type, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, STATE(398), 7, @@ -129294,21 +130175,21 @@ static const uint16_t ts_small_parse_table[] = { [7694] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1631), 1, sym_identifier, - ACTIONS(3210), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - ACTIONS(3212), 1, + ACTIONS(3218), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(396), 1, sym_qualified_identifier, - ACTIONS(273), 2, + ACTIONS(319), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(277), 2, + ACTIONS(324), 2, anon_sym_AT, anon_sym_STAR, - STATE(402), 7, + STATE(458), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -129352,16 +130233,16 @@ static const uint16_t ts_small_parse_table[] = { [7761] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, + ACTIONS(3284), 1, anon_sym_COMMA, - STATE(1359), 1, + STATE(1360), 1, aux_sym_parameter_repeat1, - ACTIONS(3281), 4, + ACTIONS(3287), 4, anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3276), 35, + ACTIONS(3282), 35, anon_sym_func, anon_sym_c_func, anon_sym_void, @@ -129400,13 +130281,13 @@ static const uint16_t ts_small_parse_table[] = { [7814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3285), 5, - anon_sym_COMMA, + ACTIONS(3291), 5, anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3283), 35, + sym__newline, + ACTIONS(3289), 35, anon_sym_func, anon_sym_c_func, anon_sym_void, @@ -129445,13 +130326,13 @@ static const uint16_t ts_small_parse_table[] = { [7862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3289), 5, + ACTIONS(3295), 5, anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(3287), 35, + ACTIONS(3293), 35, anon_sym_func, anon_sym_c_func, anon_sym_void, @@ -129490,13 +130371,13 @@ static const uint16_t ts_small_parse_table[] = { [7910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3293), 5, + ACTIONS(3299), 5, anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(3291), 35, + ACTIONS(3297), 35, anon_sym_func, anon_sym_c_func, anon_sym_void, @@ -129535,13 +130416,13 @@ static const uint16_t ts_small_parse_table[] = { [7958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3297), 5, + ACTIONS(3303), 5, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, - sym__newline, - ACTIONS(3295), 35, + ACTIONS(3301), 35, anon_sym_func, anon_sym_c_func, anon_sym_void, @@ -129580,13 +130461,13 @@ static const uint16_t ts_small_parse_table[] = { [8006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3301), 5, + ACTIONS(3307), 5, anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(3299), 35, + ACTIONS(3305), 35, anon_sym_func, anon_sym_c_func, anon_sym_void, @@ -129625,13 +130506,13 @@ static const uint16_t ts_small_parse_table[] = { [8054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 5, + ACTIONS(3311), 5, anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(3303), 35, + ACTIONS(3309), 35, anon_sym_func, anon_sym_c_func, anon_sym_void, @@ -129670,13 +130551,13 @@ static const uint16_t ts_small_parse_table[] = { [8102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3309), 5, + ACTIONS(3315), 5, anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(3307), 35, + ACTIONS(3313), 35, anon_sym_func, anon_sym_c_func, anon_sym_void, @@ -129715,13 +130596,13 @@ static const uint16_t ts_small_parse_table[] = { [8150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3313), 5, - anon_sym_COMMA, + ACTIONS(3319), 5, anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3311), 35, + sym__newline, + ACTIONS(3317), 35, anon_sym_func, anon_sym_c_func, anon_sym_void, @@ -129760,13 +130641,13 @@ static const uint16_t ts_small_parse_table[] = { [8198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 5, + ACTIONS(3323), 5, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, - sym__newline, - ACTIONS(3315), 35, + ACTIONS(3321), 35, anon_sym_func, anon_sym_c_func, anon_sym_void, @@ -129802,46 +130683,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [8246] = 16, + [8246] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, - anon_sym_and, - STATE(495), 1, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(943), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3319), 2, + ACTIONS(3325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3321), 2, + ACTIONS(3327), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3331), 4, + ACTIONS(1440), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(941), 12, + ACTIONS(1438), 15, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, @@ -129853,42 +130727,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_else, anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, sym__newline, - [8314] = 13, + [8306] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - STATE(495), 1, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3319), 2, + ACTIONS(3325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3321), 2, + ACTIONS(3327), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1434), 3, + ACTIONS(1440), 3, anon_sym_EQ, anon_sym_DOT_DOT, anon_sym_or, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1432), 14, + ACTIONS(1438), 14, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, @@ -129903,33 +130780,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orelse, anon_sym_catch, sym__newline, - [8376] = 10, + [8368] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - STATE(495), 1, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3319), 2, + ACTIONS(3325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3321), 2, + ACTIONS(3327), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(943), 5, + ACTIONS(929), 5, anon_sym_EQ, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(941), 19, + ACTIONS(927), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, @@ -129949,24 +130826,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - [8432] = 9, + [8424] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - STATE(495), 1, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3321), 2, + ACTIONS(3327), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(927), 7, + ACTIONS(993), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_DOT_DOT, @@ -129974,7 +130851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PLUS, - ACTIONS(925), 19, + ACTIONS(991), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, @@ -129994,46 +130871,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - [8486] = 16, + [8478] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - STATE(495), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(927), 2, + ACTIONS(993), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(3319), 2, + ACTIONS(3325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3321), 2, + ACTIONS(3327), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(925), 12, + ACTIONS(991), 12, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, @@ -130046,42 +130923,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_DOT_DOT_EQ, sym__newline, - [8554] = 14, + [8546] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - STATE(495), 1, + ACTIONS(3339), 1, + anon_sym_or, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(927), 2, + ACTIONS(993), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(3319), 2, + ACTIONS(3325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3321), 2, + ACTIONS(3327), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(925), 14, + ACTIONS(991), 14, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, @@ -130096,41 +130973,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orelse, anon_sym_catch, sym__newline, - [8618] = 13, + [8610] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - STATE(495), 1, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3319), 2, + ACTIONS(3325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3321), 2, + ACTIONS(3327), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1430), 3, + ACTIONS(1436), 3, anon_sym_EQ, anon_sym_DOT_DOT, anon_sym_or, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1428), 14, + ACTIONS(1434), 14, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, @@ -130145,32 +131022,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orelse, anon_sym_catch, sym__newline, - [8680] = 9, + [8672] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - STATE(495), 1, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3321), 2, + ACTIONS(3325), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3327), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(943), 7, + ACTIONS(3331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1436), 3, anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(3329), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1434), 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, + [8732] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3325), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3327), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(993), 5, + anon_sym_EQ, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - ACTIONS(941), 19, + ACTIONS(991), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, @@ -130190,81 +131116,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - [8734] = 12, + [8788] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - STATE(495), 1, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3319), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3321), 2, + ACTIONS(3327), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3333), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1430), 3, + ACTIONS(929), 7, anon_sym_EQ, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(3331), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1428), 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, - [8794] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3319), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3321), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(927), 5, - anon_sym_EQ, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(925), 19, + anon_sym_PLUS, + ACTIONS(927), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, @@ -130284,42 +131161,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - [8850] = 14, + [8842] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - STATE(495), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(943), 2, + ACTIONS(929), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(3319), 2, + ACTIONS(3325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3321), 2, + ACTIONS(3327), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(941), 14, + ACTIONS(927), 12, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, @@ -130331,42 +131212,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_else, anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, sym__newline, - [8914] = 12, + [8910] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - STATE(495), 1, + ACTIONS(3333), 1, + anon_sym_and, + ACTIONS(3339), 1, + anon_sym_or, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3319), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3321), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3333), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1434), 3, + ACTIONS(929), 2, anon_sym_EQ, anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(3331), 4, + ACTIONS(3325), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3327), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1432), 15, + ACTIONS(927), 14, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, @@ -130380,26 +131262,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_orelse, anon_sym_catch, - anon_sym_and, sym__newline, [8974] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - STATE(495), 1, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3335), 2, + ACTIONS(3341), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(941), 11, + ACTIONS(927), 11, ts_builtin_sym_end, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -130411,7 +131292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - ACTIONS(943), 13, + ACTIONS(929), 13, anon_sym_import, anon_sym_EQ, anon_sym_DASH, @@ -130428,46 +131309,46 @@ static const uint16_t ts_small_parse_table[] = { [9026] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3339), 1, - anon_sym_orelse, - ACTIONS(3341), 1, - anon_sym_catch, - ACTIONS(3343), 1, - anon_sym_or, ACTIONS(3345), 1, + anon_sym_orelse, + ACTIONS(3347), 1, + anon_sym_catch, + ACTIONS(3349), 1, + anon_sym_or, + ACTIONS(3351), 1, anon_sym_and, - STATE(495), 1, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3335), 2, + ACTIONS(3341), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3337), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3349), 2, + ACTIONS(3355), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3347), 4, + ACTIONS(3353), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(943), 5, + ACTIONS(993), 5, anon_sym_import, anon_sym_EQ, anon_sym_else, anon_sym_DOT_DOT, sym_identifier, - ACTIONS(941), 7, + ACTIONS(991), 7, ts_builtin_sym_end, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -130475,316 +131356,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_DOT_DOT_EQ, sym__newline, - [9092] = 14, + [9092] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3343), 1, - anon_sym_or, - ACTIONS(3345), 1, - anon_sym_and, - STATE(495), 1, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3335), 2, + ACTIONS(3357), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3349), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3347), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(941), 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(943), 7, - anon_sym_import, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - sym_identifier, - [9154] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3351), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(927), 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(925), 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, - [9208] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3335), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(925), 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(927), 13, - anon_sym_import, - 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, - [9260] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(925), 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(927), 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, - [9312] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3355), 1, - anon_sym_orelse, - ACTIONS(3357), 1, - anon_sym_catch, - ACTIONS(3359), 1, - anon_sym_or, - ACTIONS(3361), 1, - anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3351), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3365), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(943), 4, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - ACTIONS(3363), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(941), 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, - [9378] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3339), 1, - anon_sym_orelse, - ACTIONS(3341), 1, - anon_sym_catch, - ACTIONS(3343), 1, - anon_sym_or, - ACTIONS(3345), 1, - anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3335), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3349), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3347), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(927), 5, - anon_sym_import, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - ACTIONS(925), 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, - [9444] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3351), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(943), 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(941), 12, anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -130797,135 +131386,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - [9498] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3343), 1, - anon_sym_or, - ACTIONS(3345), 1, - anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3335), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3349), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3347), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(925), 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(927), 7, - anon_sym_import, + ACTIONS(929), 12, anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - sym_identifier, - [9560] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3335), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3337), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3349), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3347), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1432), 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(1434), 9, - anon_sym_import, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - sym_identifier, - [9618] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3335), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(941), 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(943), 11, - anon_sym_import, - anon_sym_EQ, anon_sym_else, anon_sym_DOT_DOT, anon_sym_orelse, @@ -130934,372 +131397,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_LT, anon_sym_GT, + anon_sym_PLUS, sym_identifier, - [9672] = 13, + [9144] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3345), 1, + ACTIONS(3351), 1, anon_sym_and, - STATE(495), 1, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3335), 2, + ACTIONS(3341), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3337), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3349), 2, + ACTIONS(3355), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3347), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1432), 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(1434), 8, - anon_sym_import, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - sym_identifier, - [9732] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3345), 1, - anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3335), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3349), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3347), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1428), 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(1430), 8, - anon_sym_import, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - sym_identifier, - [9792] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3361), 1, - anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3351), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3365), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3363), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1430), 7, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - sym_identifier, - ACTIONS(1428), 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, - [9852] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3359), 1, - anon_sym_or, - ACTIONS(3361), 1, - anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3351), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3365), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3363), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(943), 6, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - sym_identifier, - ACTIONS(941), 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, - [9914] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3339), 1, - anon_sym_orelse, - ACTIONS(3341), 1, - anon_sym_catch, - ACTIONS(3343), 1, - anon_sym_or, - ACTIONS(3345), 1, - anon_sym_and, - ACTIONS(3367), 1, - anon_sym_EQ, - ACTIONS(3371), 1, - anon_sym_DOT_DOT, - ACTIONS(3373), 1, - anon_sym_DOT_DOT_EQ, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1458), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(3335), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3349), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1454), 3, - anon_sym_import, - anon_sym_else, - sym_identifier, - ACTIONS(3347), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3369), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [9988] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3351), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3365), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3363), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1432), 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(1434), 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, - [10046] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3361), 1, - anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3351), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3365), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3363), 4, + ACTIONS(3353), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, ACTIONS(1434), 7, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - sym_identifier, - ACTIONS(1432), 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, - [10106] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3335), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3349), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3347), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1428), 7, ts_builtin_sym_end, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -131307,7 +131437,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_DOT_DOT_EQ, sym__newline, - ACTIONS(1430), 9, + ACTIONS(1436), 8, + anon_sym_import, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + [9204] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3349), 1, + anon_sym_or, + ACTIONS(3351), 1, + anon_sym_and, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3343), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3355), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3353), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(927), 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(929), 7, + anon_sym_import, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + [9266] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3343), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3355), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3353), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1434), 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(1436), 9, anon_sym_import, anon_sym_EQ, anon_sym_else, @@ -131317,24 +131540,370 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, sym_identifier, - [10164] = 9, + [9324] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - STATE(495), 1, + ACTIONS(3361), 1, + anon_sym_or, + ACTIONS(3363), 1, + anon_sym_and, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3353), 2, + ACTIONS(3357), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(941), 12, + ACTIONS(3359), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3367), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3365), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(929), 6, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + ACTIONS(927), 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, + [9386] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3351), 1, + anon_sym_and, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3343), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3355), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3353), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1438), 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(1440), 8, + anon_sym_import, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + [9446] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3343), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3355), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3353), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1438), 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(1440), 9, + anon_sym_import, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + sym_identifier, + [9504] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3349), 1, + anon_sym_or, + ACTIONS(3351), 1, + anon_sym_and, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3343), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3355), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3353), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(991), 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(993), 7, + anon_sym_import, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + [9566] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3361), 1, + anon_sym_or, + ACTIONS(3363), 1, + anon_sym_and, + ACTIONS(3369), 1, + anon_sym_orelse, + ACTIONS(3371), 1, + anon_sym_catch, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3357), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3359), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3367), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(929), 4, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(3365), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(927), 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, + [9632] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3363), 1, + anon_sym_and, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3357), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3359), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3367), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3365), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1440), 7, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + ACTIONS(1438), 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, + [9692] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3357), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3359), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3367), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3365), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1438), 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(1440), 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, + [9750] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3357), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3359), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(929), 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(927), 12, anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -131347,7 +131916,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - ACTIONS(943), 12, + [9804] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3345), 1, + anon_sym_orelse, + ACTIONS(3347), 1, + anon_sym_catch, + ACTIONS(3349), 1, + anon_sym_or, + ACTIONS(3351), 1, + anon_sym_and, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3343), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3355), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3353), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(929), 5, + anon_sym_import, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(927), 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, + [9870] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3357), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(991), 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(993), 12, anon_sym_EQ, anon_sym_DASH, anon_sym_else, @@ -131360,39 +132009,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PLUS, sym_identifier, - [10216] = 10, + [9922] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - STATE(495), 1, + ACTIONS(3361), 1, + anon_sym_or, + ACTIONS(3363), 1, + anon_sym_and, + ACTIONS(3369), 1, + anon_sym_orelse, + ACTIONS(3371), 1, + anon_sym_catch, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3335), 2, + ACTIONS(3357), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3337), 2, + ACTIONS(3359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(925), 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, + ACTIONS(3367), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(993), 4, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(3365), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(991), 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, + [9988] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3343), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(927), 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(929), 11, anon_sym_import, anon_sym_EQ, anon_sym_else, @@ -131404,142 +132103,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym_identifier, - [10270] = 12, + [10042] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3351), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3365), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3363), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1428), 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(1430), 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, - [10328] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, anon_sym_LBRACK, - ACTIONS(931), 1, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3355), 1, - anon_sym_orelse, - ACTIONS(3357), 1, - anon_sym_catch, - ACTIONS(3359), 1, - anon_sym_or, ACTIONS(3361), 1, - anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3351), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3365), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(927), 4, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - ACTIONS(3363), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(925), 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, - [10394] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3359), 1, anon_sym_or, - ACTIONS(3361), 1, + ACTIONS(3363), 1, anon_sym_and, - STATE(495), 1, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3351), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3353), 2, + ACTIONS(3357), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3365), 2, + ACTIONS(3359), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3367), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3363), 4, + ACTIONS(3365), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(927), 6, + ACTIONS(993), 6, anon_sym_EQ, anon_sym_else, anon_sym_DOT_DOT, anon_sym_orelse, anon_sym_catch, sym_identifier, - ACTIONS(925), 8, + ACTIONS(991), 8, anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -131548,55 +132151,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_DOT_DOT_EQ, sym__newline, + [10104] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(991), 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(993), 13, + anon_sym_import, + 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, + [10156] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3345), 1, + anon_sym_orelse, + ACTIONS(3347), 1, + anon_sym_catch, + ACTIONS(3349), 1, + anon_sym_or, + ACTIONS(3351), 1, + anon_sym_and, + ACTIONS(3373), 1, + anon_sym_EQ, + ACTIONS(3377), 1, + anon_sym_DOT_DOT, + ACTIONS(3379), 1, + anon_sym_DOT_DOT_EQ, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1452), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3343), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3355), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1448), 3, + anon_sym_import, + anon_sym_else, + sym_identifier, + ACTIONS(3353), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3375), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [10230] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3363), 1, + anon_sym_and, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3357), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3359), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3367), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3365), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1436), 7, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + ACTIONS(1434), 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, + [10290] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3357), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3359), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3367), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3365), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1434), 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(1436), 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, + [10348] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3357), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3359), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(993), 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(991), 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, + [10402] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3343), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(991), 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(993), 11, + anon_sym_import, + 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, [10456] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3339), 1, - anon_sym_orelse, - ACTIONS(3341), 1, - anon_sym_catch, - ACTIONS(3343), 1, - anon_sym_or, ACTIONS(3345), 1, + anon_sym_orelse, + ACTIONS(3347), 1, + anon_sym_catch, + ACTIONS(3349), 1, + anon_sym_or, + ACTIONS(3351), 1, anon_sym_and, - ACTIONS(3371), 1, + ACTIONS(3377), 1, anon_sym_DOT_DOT, - ACTIONS(3373), 1, + ACTIONS(3379), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3375), 1, + ACTIONS(3381), 1, anon_sym_EQ, - STATE(495), 1, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(1454), 2, + ACTIONS(1448), 2, anon_sym_import, sym_identifier, - ACTIONS(1458), 2, + ACTIONS(1452), 2, ts_builtin_sym_end, sym__newline, - ACTIONS(3335), 2, + ACTIONS(3341), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3337), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3349), 2, + ACTIONS(3355), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3347), 4, + ACTIONS(3353), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3377), 4, + ACTIONS(3383), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131604,52 +132485,52 @@ static const uint16_t ts_small_parse_table[] = { [10529] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3355), 1, - anon_sym_orelse, - ACTIONS(3357), 1, - anon_sym_catch, - ACTIONS(3359), 1, - anon_sym_or, ACTIONS(3361), 1, + anon_sym_or, + ACTIONS(3363), 1, anon_sym_and, - ACTIONS(3379), 1, - anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_DOT_DOT, + ACTIONS(3369), 1, + anon_sym_orelse, + ACTIONS(3371), 1, + anon_sym_catch, ACTIONS(3385), 1, + anon_sym_EQ, + ACTIONS(3389), 1, + anon_sym_DOT_DOT, + ACTIONS(3391), 1, anon_sym_DOT_DOT_EQ, - STATE(495), 1, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(1454), 2, + ACTIONS(1448), 2, anon_sym_else, sym_identifier, - ACTIONS(1458), 2, + ACTIONS(1452), 2, anon_sym_LBRACE, sym__newline, - ACTIONS(3351), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3353), 2, + ACTIONS(3357), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3365), 2, + ACTIONS(3359), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3367), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3363), 4, + ACTIONS(3365), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3381), 4, + ACTIONS(3387), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131657,52 +132538,52 @@ static const uint16_t ts_small_parse_table[] = { [10602] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3387), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3393), 1, anon_sym_EQ, - ACTIONS(3389), 1, + ACTIONS(3395), 1, anon_sym_RPAREN, - ACTIONS(3394), 1, + ACTIONS(3400), 1, anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3402), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3398), 1, + ACTIONS(3404), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1943), 1, + STATE(1959), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3319), 2, + ACTIONS(3325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3321), 2, + ACTIONS(3327), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3392), 4, + ACTIONS(3398), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131710,155 +132591,155 @@ static const uint16_t ts_small_parse_table[] = { [10676] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(1454), 1, + ACTIONS(1448), 1, sym_identifier, - ACTIONS(3355), 1, - anon_sym_orelse, - ACTIONS(3357), 1, - anon_sym_catch, - ACTIONS(3359), 1, - anon_sym_or, ACTIONS(3361), 1, + anon_sym_or, + ACTIONS(3363), 1, anon_sym_and, - ACTIONS(3383), 1, + ACTIONS(3369), 1, + anon_sym_orelse, + ACTIONS(3371), 1, + anon_sym_catch, + ACTIONS(3389), 1, anon_sym_DOT_DOT, - ACTIONS(3385), 1, + ACTIONS(3391), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3401), 1, + ACTIONS(3407), 1, anon_sym_EQ, - STATE(495), 1, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(1458), 2, + ACTIONS(1452), 2, anon_sym_LBRACE, sym__newline, - ACTIONS(3351), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3353), 2, + ACTIONS(3357), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3365), 2, + ACTIONS(3359), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3367), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3363), 4, + ACTIONS(3365), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3403), 4, + ACTIONS(3409), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [10748] = 19, + [10748] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, - anon_sym_and, - ACTIONS(3394), 1, - anon_sym_DOT_DOT, - ACTIONS(3396), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3405), 1, - anon_sym_EQ, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3319), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3321), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3333), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1458), 3, - anon_sym_RPAREN, - anon_sym_else, - sym__newline, - ACTIONS(3331), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3407), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [10818] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, anon_sym_LBRACK, - ACTIONS(931), 1, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3387), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3393), 1, anon_sym_EQ, - ACTIONS(3394), 1, + ACTIONS(3400), 1, anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3402), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3409), 1, + ACTIONS(3411), 1, anon_sym_RPAREN, - ACTIONS(3412), 1, + ACTIONS(3414), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(2008), 1, + STATE(1999), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3319), 2, + ACTIONS(3325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3321), 2, + ACTIONS(3327), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3392), 4, + ACTIONS(3398), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [10822] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3333), 1, + anon_sym_and, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, + anon_sym_DOT_DOT, + ACTIONS(3402), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3417), 1, + anon_sym_EQ, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3325), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3327), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1452), 3, + anon_sym_RPAREN, + anon_sym_else, + sym__newline, + ACTIONS(3329), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3419), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131866,53 +132747,53 @@ static const uint16_t ts_small_parse_table[] = { [10892] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3415), 1, + ACTIONS(3421), 1, anon_sym_COMMA, - ACTIONS(3419), 1, - anon_sym_PIPE, - ACTIONS(3423), 1, - anon_sym_COLON, ACTIONS(3425), 1, - anon_sym_DOT_DOT, - ACTIONS(3427), 1, - anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, ACTIONS(3429), 1, - anon_sym_orelse, + anon_sym_COLON, ACTIONS(3431), 1, - anon_sym_catch, + anon_sym_DOT_DOT, ACTIONS(3433), 1, - anon_sym_or, + anon_sym_DOT_DOT_EQ, ACTIONS(3435), 1, - anon_sym_and, + anon_sym_orelse, + ACTIONS(3437), 1, + anon_sym_catch, + ACTIONS(3439), 1, + anon_sym_or, ACTIONS(3441), 1, + anon_sym_and, + ACTIONS(3447), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1514), 1, + STATE(1515), 1, aux_sym_match_arm_repeat1, - STATE(2010), 1, + STATE(1917), 1, aux_sym_import_declaration_repeat1, - STATE(2137), 1, + STATE(2092), 1, sym_match_capture, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3417), 2, + ACTIONS(3423), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3421), 2, + ACTIONS(3427), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3439), 2, + ACTIONS(3445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3437), 4, + ACTIONS(3443), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -131920,49 +132801,49 @@ static const uint16_t ts_small_parse_table[] = { [10969] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3387), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3393), 1, anon_sym_EQ, - ACTIONS(3394), 1, + ACTIONS(3400), 1, anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3402), 1, anon_sym_DOT_DOT_EQ, - STATE(495), 1, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(1458), 2, + ACTIONS(1452), 2, anon_sym_RPAREN, sym__newline, - ACTIONS(3319), 2, + ACTIONS(3325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3321), 2, + ACTIONS(3327), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3392), 4, + ACTIONS(3398), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131970,51 +132851,51 @@ static const uint16_t ts_small_parse_table[] = { [11038] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3394), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3402), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3443), 1, - anon_sym_COMMA, ACTIONS(3449), 1, + anon_sym_COMMA, + ACTIONS(3455), 1, anon_sym_SEMI, - ACTIONS(3451), 1, + ACTIONS(3457), 1, anon_sym_RBRACK, - ACTIONS(3453), 1, + ACTIONS(3459), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1557), 1, + STATE(1655), 1, aux_sym_match_arm_repeat1, - STATE(1690), 1, + STATE(1891), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + ACTIONS(3451), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3447), 2, + ACTIONS(3453), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -132022,51 +132903,51 @@ static const uint16_t ts_small_parse_table[] = { [11112] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3394), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3402), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3455), 1, - anon_sym_COMMA, - ACTIONS(3457), 1, - anon_sym_SEMI, - ACTIONS(3459), 1, - anon_sym_RBRACK, ACTIONS(3461), 1, + anon_sym_COMMA, + ACTIONS(3463), 1, + anon_sym_SEMI, + ACTIONS(3465), 1, + anon_sym_RBRACK, + ACTIONS(3467), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1567), 1, + STATE(1545), 1, aux_sym_match_arm_repeat1, - STATE(1662), 1, + STATE(1747), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + ACTIONS(3451), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3447), 2, + ACTIONS(3453), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -132074,51 +132955,51 @@ static const uint16_t ts_small_parse_table[] = { [11186] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3394), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3402), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3455), 1, + ACTIONS(3449), 1, anon_sym_COMMA, - ACTIONS(3457), 1, + ACTIONS(3455), 1, anon_sym_SEMI, - ACTIONS(3463), 1, + ACTIONS(3469), 1, anon_sym_RBRACK, - ACTIONS(3465), 1, + ACTIONS(3471), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1567), 1, + STATE(1655), 1, aux_sym_match_arm_repeat1, - STATE(1847), 1, + STATE(1702), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + ACTIONS(3451), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3447), 2, + ACTIONS(3453), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -132128,49 +133009,49 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3355), 1, - anon_sym_orelse, - ACTIONS(3357), 1, - anon_sym_catch, - ACTIONS(3359), 1, - anon_sym_or, ACTIONS(3361), 1, + anon_sym_or, + ACTIONS(3363), 1, anon_sym_and, - ACTIONS(3383), 1, + ACTIONS(3369), 1, + anon_sym_orelse, + ACTIONS(3371), 1, + anon_sym_catch, + ACTIONS(3389), 1, anon_sym_DOT_DOT, - ACTIONS(3385), 1, + ACTIONS(3391), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3467), 1, - sym_identifier, ACTIONS(3473), 1, + sym_identifier, + ACTIONS(3479), 1, anon_sym_COLON, - ACTIONS(3475), 1, + ACTIONS(3481), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1118), 1, + STATE(1158), 1, sym_block, - STATE(1586), 1, + STATE(1553), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3365), 2, + ACTIONS(3367), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3469), 2, + ACTIONS(3475), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3471), 2, + ACTIONS(3477), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3363), 4, + ACTIONS(3365), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -132178,51 +133059,51 @@ static const uint16_t ts_small_parse_table[] = { [11334] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3394), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3402), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3455), 1, + ACTIONS(3461), 1, anon_sym_COMMA, - ACTIONS(3477), 1, + ACTIONS(3463), 1, anon_sym_SEMI, - ACTIONS(3479), 1, + ACTIONS(3483), 1, anon_sym_RBRACK, - ACTIONS(3481), 1, + ACTIONS(3485), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1567), 1, + STATE(1545), 1, aux_sym_match_arm_repeat1, - STATE(1706), 1, + STATE(1763), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + ACTIONS(3451), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3447), 2, + ACTIONS(3453), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -132230,51 +133111,51 @@ static const uint16_t ts_small_parse_table[] = { [11408] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3396), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3455), 1, - anon_sym_COMMA, - ACTIONS(3457), 1, - anon_sym_SEMI, - ACTIONS(3483), 1, - anon_sym_RBRACK, - ACTIONS(3485), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, anon_sym_DOT_DOT, + ACTIONS(3402), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3461), 1, + anon_sym_COMMA, ACTIONS(3487), 1, + anon_sym_SEMI, + ACTIONS(3489), 1, + anon_sym_RBRACK, + ACTIONS(3491), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1567), 1, + STATE(1545), 1, aux_sym_match_arm_repeat1, - STATE(1852), 1, + STATE(1711), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + ACTIONS(3451), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3447), 2, + ACTIONS(3453), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -132282,51 +133163,51 @@ static const uint16_t ts_small_parse_table[] = { [11482] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3396), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3443), 1, - anon_sym_COMMA, - ACTIONS(3449), 1, - anon_sym_SEMI, - ACTIONS(3489), 1, - anon_sym_RBRACK, - ACTIONS(3491), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, anon_sym_DOT_DOT, + ACTIONS(3402), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3449), 1, + anon_sym_COMMA, ACTIONS(3493), 1, + anon_sym_SEMI, + ACTIONS(3495), 1, + anon_sym_RBRACK, + ACTIONS(3497), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1557), 1, + STATE(1655), 1, aux_sym_match_arm_repeat1, - STATE(1765), 1, + STATE(1761), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + ACTIONS(3451), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3447), 2, + ACTIONS(3453), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -132334,51 +133215,51 @@ static const uint16_t ts_small_parse_table[] = { [11556] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3394), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3402), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3443), 1, - anon_sym_COMMA, ACTIONS(3449), 1, + anon_sym_COMMA, + ACTIONS(3455), 1, anon_sym_SEMI, - ACTIONS(3495), 1, + ACTIONS(3499), 1, anon_sym_RBRACK, - ACTIONS(3497), 1, + ACTIONS(3501), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1557), 1, + STATE(1655), 1, aux_sym_match_arm_repeat1, - STATE(1873), 1, + STATE(1904), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + ACTIONS(3451), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3447), 2, + ACTIONS(3453), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -132386,51 +133267,51 @@ static const uint16_t ts_small_parse_table[] = { [11630] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3394), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3402), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3443), 1, + ACTIONS(3461), 1, anon_sym_COMMA, - ACTIONS(3499), 1, + ACTIONS(3487), 1, anon_sym_SEMI, - ACTIONS(3501), 1, - anon_sym_RBRACK, ACTIONS(3503), 1, + anon_sym_RBRACK, + ACTIONS(3505), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1557), 1, + STATE(1545), 1, aux_sym_match_arm_repeat1, - STATE(1709), 1, + STATE(1704), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + ACTIONS(3451), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3447), 2, + ACTIONS(3453), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -132438,51 +133319,51 @@ static const uint16_t ts_small_parse_table[] = { [11704] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3355), 1, - anon_sym_orelse, - ACTIONS(3357), 1, - anon_sym_catch, - ACTIONS(3359), 1, - anon_sym_or, - ACTIONS(3361), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3383), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, anon_sym_DOT_DOT, - ACTIONS(3385), 1, + ACTIONS(3402), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3505), 1, - sym_identifier, + ACTIONS(3461), 1, + anon_sym_COMMA, + ACTIONS(3487), 1, + anon_sym_SEMI, ACTIONS(3507), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3509), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1044), 1, - sym_block, - STATE(1575), 1, + STATE(1545), 1, + aux_sym_match_arm_repeat1, + STATE(1686), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3365), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3469), 2, + ACTIONS(3451), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3471), 2, + ACTIONS(3453), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3363), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -132490,51 +133371,51 @@ static const uint16_t ts_small_parse_table[] = { [11778] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3394), 1, - anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3402), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3443), 1, - anon_sym_COMMA, ACTIONS(3449), 1, + anon_sym_COMMA, + ACTIONS(3455), 1, anon_sym_SEMI, ACTIONS(3511), 1, anon_sym_RBRACK, ACTIONS(3513), 1, + anon_sym_DOT_DOT, + ACTIONS(3515), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1557), 1, + STATE(1655), 1, aux_sym_match_arm_repeat1, - STATE(1815), 1, + STATE(1800), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + ACTIONS(3451), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3447), 2, + ACTIONS(3453), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -132542,51 +133423,51 @@ static const uint16_t ts_small_parse_table[] = { [11852] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3394), 1, - anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3402), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3455), 1, + ACTIONS(3461), 1, anon_sym_COMMA, - ACTIONS(3477), 1, + ACTIONS(3487), 1, anon_sym_SEMI, - ACTIONS(3515), 1, - anon_sym_RBRACK, ACTIONS(3517), 1, + anon_sym_RBRACK, + ACTIONS(3519), 1, + anon_sym_DOT_DOT, + ACTIONS(3521), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1567), 1, + STATE(1545), 1, aux_sym_match_arm_repeat1, - STATE(1681), 1, + STATE(1673), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + ACTIONS(3451), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3447), 2, + ACTIONS(3453), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -132594,51 +133475,51 @@ static const uint16_t ts_small_parse_table[] = { [11926] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, + ACTIONS(3361), 1, anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3363), 1, anon_sym_and, - ACTIONS(3394), 1, + ACTIONS(3369), 1, + anon_sym_orelse, + ACTIONS(3371), 1, + anon_sym_catch, + ACTIONS(3389), 1, anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3391), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3443), 1, - anon_sym_COMMA, - ACTIONS(3499), 1, - anon_sym_SEMI, - ACTIONS(3519), 1, - anon_sym_RBRACK, - ACTIONS(3521), 1, + ACTIONS(3523), 1, + sym_identifier, + ACTIONS(3525), 1, + anon_sym_COLON, + ACTIONS(3527), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1557), 1, - aux_sym_match_arm_repeat1, - STATE(1693), 1, + STATE(1137), 1, + sym_block, + STATE(1550), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3367), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + ACTIONS(3475), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3447), 2, + ACTIONS(3477), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 4, + ACTIONS(3365), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -132646,51 +133527,51 @@ static const uint16_t ts_small_parse_table[] = { [12000] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3394), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3402), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3455), 1, + ACTIONS(3449), 1, anon_sym_COMMA, - ACTIONS(3457), 1, + ACTIONS(3493), 1, anon_sym_SEMI, - ACTIONS(3523), 1, + ACTIONS(3529), 1, anon_sym_RBRACK, - ACTIONS(3525), 1, + ACTIONS(3531), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1567), 1, + STATE(1655), 1, aux_sym_match_arm_repeat1, - STATE(1665), 1, + STATE(1736), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + ACTIONS(3451), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3447), 2, + ACTIONS(3453), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -132698,194 +133579,194 @@ static const uint16_t ts_small_parse_table[] = { [12074] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, ACTIONS(1893), 1, anon_sym_RPAREN, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3394), 1, - anon_sym_DOT_DOT, - ACTIONS(3396), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3527), 1, - anon_sym_COMMA, - ACTIONS(3529), 1, - sym__newline, - STATE(495), 1, - sym_argument_list, - STATE(1606), 1, - aux_sym_match_arm_repeat1, - STATE(1773), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3333), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3445), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3447), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3331), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [12145] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, ACTIONS(3339), 1, - anon_sym_orelse, - ACTIONS(3341), 1, - anon_sym_catch, - ACTIONS(3343), 1, anon_sym_or, - ACTIONS(3345), 1, - anon_sym_and, - ACTIONS(3371), 1, + ACTIONS(3400), 1, anon_sym_DOT_DOT, - ACTIONS(3373), 1, + ACTIONS(3402), 1, anon_sym_DOT_DOT_EQ, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1579), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(3349), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3531), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3533), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1577), 3, - anon_sym_import, - anon_sym_else, - sym_identifier, - ACTIONS(3347), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [12210] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(943), 1, - anon_sym_DOT_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, - anon_sym_and, + ACTIONS(3533), 1, + anon_sym_COMMA, ACTIONS(3535), 1, - anon_sym_RBRACK, - ACTIONS(3537), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1957), 1, + STATE(1587), 1, + aux_sym_match_arm_repeat1, + STATE(1729), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + ACTIONS(3451), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3447), 2, + ACTIONS(3453), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(941), 3, + ACTIONS(3329), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [12145] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(1841), 1, + anon_sym_RPAREN, + ACTIONS(3333), 1, + anon_sym_and, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, + anon_sym_DOT_DOT, + ACTIONS(3402), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3537), 1, + anon_sym_COMMA, + ACTIONS(3539), 1, + sym__newline, + STATE(523), 1, + sym_argument_list, + STATE(1611), 1, + aux_sym_match_arm_repeat1, + STATE(1815), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3451), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3329), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [12216] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(929), 1, + anon_sym_DOT_DOT, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3333), 1, + anon_sym_and, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3541), 1, + anon_sym_RBRACK, + ACTIONS(3543), 1, + sym__newline, + STATE(523), 1, + sym_argument_list, + STATE(2048), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3451), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(927), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym_DOT_DOT_EQ, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [12277] = 21, + [12283] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, + ACTIONS(3345), 1, anon_sym_orelse, - ACTIONS(3325), 1, + ACTIONS(3347), 1, anon_sym_catch, - ACTIONS(3327), 1, + ACTIONS(3349), 1, anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3351), 1, anon_sym_and, - ACTIONS(3394), 1, + ACTIONS(3377), 1, anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3379), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3539), 1, - anon_sym_RPAREN, - ACTIONS(3541), 1, - anon_sym_COMMA, - ACTIONS(3543), 1, - sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1654), 1, - aux_sym_match_arm_repeat1, - STATE(1747), 1, - aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(1576), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3355), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + ACTIONS(3545), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3447), 2, + ACTIONS(3547), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 4, + ACTIONS(1574), 3, + anon_sym_import, + anon_sym_else, + sym_identifier, + ACTIONS(3353), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -132893,49 +133774,49 @@ static const uint16_t ts_small_parse_table[] = { [12348] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3394), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3402), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3527), 1, + ACTIONS(3533), 1, anon_sym_COMMA, - ACTIONS(3545), 1, + ACTIONS(3549), 1, anon_sym_RPAREN, - ACTIONS(3547), 1, + ACTIONS(3551), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1606), 1, + STATE(1587), 1, aux_sym_match_arm_repeat1, - STATE(1764), 1, + STATE(1913), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + ACTIONS(3451), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3447), 2, + ACTIONS(3453), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -132943,49 +133824,49 @@ static const uint16_t ts_small_parse_table[] = { [12419] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(1901), 1, - anon_sym_RPAREN, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3394), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3402), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3541), 1, + ACTIONS(3537), 1, anon_sym_COMMA, - ACTIONS(3549), 1, + ACTIONS(3553), 1, + anon_sym_RPAREN, + ACTIONS(3555), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1654), 1, + STATE(1611), 1, aux_sym_match_arm_repeat1, - STATE(1899), 1, + STATE(1781), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + ACTIONS(3451), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3447), 2, + ACTIONS(3453), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -132993,180 +133874,127 @@ static const uint16_t ts_small_parse_table[] = { [12490] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(943), 1, anon_sym_DOT_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3551), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3557), 1, anon_sym_RBRACK, - ACTIONS(3553), 1, + ACTIONS(3559), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1954), 1, + STATE(1945), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + ACTIONS(3451), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3447), 2, + ACTIONS(3453), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(941), 3, + ACTIONS(927), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym_DOT_DOT_EQ, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [12557] = 20, + [12557] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, - anon_sym_and, - ACTIONS(3394), 1, - anon_sym_DOT_DOT, - ACTIONS(3396), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3499), 1, - anon_sym_SEMI, - ACTIONS(3555), 1, - anon_sym_RBRACK, - ACTIONS(3557), 1, - sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1972), 1, - aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1436), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(3423), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3427), 2, + anon_sym_STAR, + anon_sym_SLASH, ACTIONS(3445), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3447), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3331), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [12625] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3425), 1, - anon_sym_DOT_DOT, - ACTIONS(3427), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3429), 1, - anon_sym_orelse, - ACTIONS(3431), 1, - anon_sym_catch, - ACTIONS(3433), 1, - anon_sym_or, - ACTIONS(3435), 1, - anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3417), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3439), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3437), 4, + ACTIONS(3443), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3559), 4, + ACTIONS(1434), 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, - [12687] = 17, + [12609] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3394), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3402), 1, anon_sym_DOT_DOT_EQ, - STATE(495), 1, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + ACTIONS(3451), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3447), 2, + ACTIONS(3453), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -133176,27 +134004,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACK, sym__newline, - [12749] = 7, + [12671] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3563), 1, - anon_sym_SEMI, - ACTIONS(3566), 1, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3333), 1, + anon_sym_and, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, + anon_sym_DOT_DOT, + ACTIONS(3402), 1, + anon_sym_DOT_DOT_EQ, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3451), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3329), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3563), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(3569), 1, sym__newline, - STATE(2017), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(850), 5, + [12733] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3427), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(929), 4, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - ACTIONS(855), 17, - anon_sym_LPAREN, + ACTIONS(927), 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, + [12779] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3427), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(993), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(991), 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, + [12825] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(993), 1, + anon_sym_DOT_DOT, + ACTIONS(3435), 1, + anon_sym_orelse, + ACTIONS(3437), 1, + anon_sym_catch, + ACTIONS(3439), 1, + anon_sym_or, + ACTIONS(3441), 1, + anon_sym_and, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3423), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3427), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3443), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(991), 5, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + [12885] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3431), 1, + anon_sym_DOT_DOT, + ACTIONS(3433), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3435), 1, + anon_sym_orelse, + ACTIONS(3437), 1, + anon_sym_catch, + ACTIONS(3439), 1, + anon_sym_or, + ACTIONS(3441), 1, + anon_sym_and, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3423), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3427), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3443), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3565), 4, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + sym__newline, + [12947] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(850), 1, + anon_sym_BANG, + ACTIONS(854), 1, + anon_sym_LPAREN, + ACTIONS(873), 1, + anon_sym_DOT, + ACTIONS(977), 1, + anon_sym_LBRACE, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(852), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(857), 17, + anon_sym_RBRACE, + anon_sym_DASH, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, @@ -133211,127 +134247,376 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_CARET, - [12791] = 20, + sym__newline, + [12991] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3333), 1, + anon_sym_and, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, + anon_sym_DOT_DOT, + ACTIONS(3402), 1, + anon_sym_DOT_DOT_EQ, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3451), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3329), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3565), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__newline, + [13053] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, anon_sym_LPAREN, ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, - anon_sym_and, - ACTIONS(3394), 1, anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_orelse, + ACTIONS(3437), 1, + anon_sym_catch, + ACTIONS(3439), 1, + anon_sym_or, + ACTIONS(3441), 1, + anon_sym_and, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3423), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3427), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3443), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(927), 5, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_DOT_DOT_EQ, - ACTIONS(3477), 1, + sym__newline, + [13113] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3431), 1, + anon_sym_DOT_DOT, + ACTIONS(3433), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3435), 1, + anon_sym_orelse, + ACTIONS(3437), 1, + anon_sym_catch, + ACTIONS(3439), 1, + anon_sym_or, + ACTIONS(3441), 1, + anon_sym_and, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3423), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3427), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3443), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3561), 4, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + sym__newline, + [13175] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(993), 1, + anon_sym_DOT_DOT, + ACTIONS(3439), 1, + anon_sym_or, + ACTIONS(3441), 1, + anon_sym_and, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3423), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3427), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3443), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(991), 7, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [13231] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3441), 1, + anon_sym_and, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1436), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(3423), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3427), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3443), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1434), 7, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [13285] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(929), 1, + anon_sym_DOT_DOT, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3439), 1, + anon_sym_or, + ACTIONS(3441), 1, + anon_sym_and, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3423), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3427), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3443), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(927), 7, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [13341] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3431), 1, + anon_sym_DOT_DOT, + ACTIONS(3433), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3435), 1, + anon_sym_orelse, + ACTIONS(3437), 1, + anon_sym_catch, + ACTIONS(3439), 1, + anon_sym_or, + ACTIONS(3441), 1, + anon_sym_and, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3423), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3427), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3443), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3563), 4, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + sym__newline, + [13403] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3441), 1, + anon_sym_and, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1440), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(3423), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3427), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3443), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1438), 7, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [13457] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3569), 1, anon_sym_SEMI, ACTIONS(3572), 1, anon_sym_RBRACK, - ACTIONS(3574), 1, + ACTIONS(3575), 1, sym__newline, - STATE(495), 1, - sym_argument_list, - STATE(2017), 1, + STATE(2028), 1, aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3333), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3445), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3447), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3331), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [12859] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3355), 1, - anon_sym_orelse, - ACTIONS(3357), 1, - anon_sym_catch, - ACTIONS(3359), 1, - anon_sym_or, - ACTIONS(3361), 1, - anon_sym_and, - ACTIONS(3383), 1, - anon_sym_DOT_DOT, - ACTIONS(3385), 1, - anon_sym_DOT_DOT_EQ, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1577), 2, - anon_sym_else, - sym_identifier, - ACTIONS(1579), 2, - anon_sym_LBRACE, - sym__newline, - ACTIONS(3365), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3469), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3471), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3363), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [12923] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(943), 4, + ACTIONS(852), 5, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(941), 14, + anon_sym_DOT, + ACTIONS(857), 17, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DOT_DOT_EQ, anon_sym_orelse, anon_sym_catch, @@ -133341,200 +134626,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS, - sym__newline, - [12969] = 16, + anon_sym_SLASH, + anon_sym_CARET, + [13499] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(943), 1, - anon_sym_DOT_DOT, - ACTIONS(3429), 1, - anon_sym_orelse, - ACTIONS(3431), 1, - anon_sym_catch, - ACTIONS(3433), 1, - anon_sym_or, - ACTIONS(3435), 1, - anon_sym_and, - STATE(495), 1, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3417), 2, + ACTIONS(3423), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3421), 2, + ACTIONS(3427), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3439), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3437), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(941), 5, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - [13029] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(943), 1, - anon_sym_DOT_DOT, - ACTIONS(3433), 1, - anon_sym_or, - ACTIONS(3435), 1, - anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3417), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3439), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3437), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(941), 7, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [13085] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3435), 1, - anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1434), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(3417), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3439), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3437), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1432), 7, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [13139] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1434), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(3417), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3439), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3437), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1432), 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, - [13191] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3417), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(943), 4, + ACTIONS(993), 4, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(941), 12, + ACTIONS(991), 12, anon_sym_COMMA, anon_sym_PIPE, anon_sym_COLON, @@ -133547,346 +134666,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - [13239] = 9, + [13547] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(927), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(925), 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, - [13285] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(927), 1, - anon_sym_DOT_DOT, - ACTIONS(929), 1, anon_sym_LBRACK, - ACTIONS(931), 1, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3429), 1, - anon_sym_orelse, - ACTIONS(3431), 1, - anon_sym_catch, - ACTIONS(3433), 1, - anon_sym_or, - ACTIONS(3435), 1, + ACTIONS(3333), 1, anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3417), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3439), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3437), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(925), 5, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - [13345] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(927), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, anon_sym_DOT_DOT, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3433), 1, - anon_sym_or, - ACTIONS(3435), 1, - anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3417), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3439), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3437), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(925), 7, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(3402), 1, anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [13401] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3435), 1, - anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1430), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(3417), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3439), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3437), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1428), 7, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [13455] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1430), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(3417), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3439), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3437), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1428), 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, - [13507] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3417), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(927), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(925), 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, - [13555] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, - anon_sym_and, - ACTIONS(3394), 1, - anon_sym_DOT_DOT, - ACTIONS(3396), 1, - anon_sym_DOT_DOT_EQ, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3333), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3445), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3447), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3331), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3576), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__newline, - [13617] = 7, - ACTIONS(3), 1, - sym_comment, + ACTIONS(3463), 1, + anon_sym_SEMI, ACTIONS(3578), 1, - anon_sym_SEMI, - ACTIONS(3581), 1, anon_sym_RBRACK, - ACTIONS(3584), 1, + ACTIONS(3580), 1, sym__newline, - STATE(1994), 1, + STATE(523), 1, + sym_argument_list, + STATE(2028), 1, aux_sym_import_declaration_repeat1, - ACTIONS(850), 5, - anon_sym_DOT_DOT, - anon_sym_or, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - ACTIONS(855), 17, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(3451), 2, anon_sym_DASH, - anon_sym_QMARK, + anon_sym_PLUS, + ACTIONS(3453), 2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, + anon_sym_SLASH, + ACTIONS(3329), 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, - [13659] = 7, + [13615] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3587), 1, + ACTIONS(3582), 1, anon_sym_SEMI, - ACTIONS(3590), 1, + ACTIONS(3585), 1, anon_sym_RBRACK, - ACTIONS(3593), 1, + ACTIONS(3588), 1, sym__newline, - STATE(2004), 1, + STATE(1998), 1, aux_sym_import_declaration_repeat1, - ACTIONS(850), 5, + ACTIONS(852), 5, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, anon_sym_DOT, - ACTIONS(855), 17, + ACTIONS(857), 17, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DASH, @@ -133904,159 +134749,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_CARET, - [13701] = 17, + [13657] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, - anon_sym_and, - ACTIONS(3394), 1, - anon_sym_DOT_DOT, - ACTIONS(3396), 1, - anon_sym_DOT_DOT_EQ, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3333), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3445), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3447), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3331), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3559), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__newline, - [13763] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3425), 1, - anon_sym_DOT_DOT, - ACTIONS(3427), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3429), 1, - anon_sym_orelse, - ACTIONS(3431), 1, - anon_sym_catch, - ACTIONS(3433), 1, - anon_sym_or, - ACTIONS(3435), 1, - anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3417), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3439), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3437), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3576), 4, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - sym__newline, - [13825] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3425), 1, - anon_sym_DOT_DOT, - ACTIONS(3427), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3429), 1, - anon_sym_orelse, - ACTIONS(3431), 1, - anon_sym_catch, - ACTIONS(3433), 1, - anon_sym_or, - ACTIONS(3435), 1, - anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3417), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3439), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3437), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3561), 4, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - sym__newline, - [13887] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3596), 1, + ACTIONS(3591), 1, anon_sym_SEMI, - ACTIONS(3599), 1, + ACTIONS(3594), 1, anon_sym_RBRACK, - ACTIONS(3602), 1, + ACTIONS(3597), 1, sym__newline, - STATE(1972), 1, + STATE(1952), 1, aux_sym_import_declaration_repeat1, - ACTIONS(850), 5, + ACTIONS(852), 5, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, anon_sym_DOT, - ACTIONS(855), 17, + ACTIONS(857), 17, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DASH, @@ -134074,75 +134784,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_CARET, - [13929] = 17, + [13699] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, + ACTIONS(3361), 1, anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3363), 1, anon_sym_and, - ACTIONS(3394), 1, + ACTIONS(3369), 1, + anon_sym_orelse, + ACTIONS(3371), 1, + anon_sym_catch, + ACTIONS(3389), 1, anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3391), 1, anon_sym_DOT_DOT_EQ, - STATE(495), 1, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3445), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3447), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3605), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(3331), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [13990] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3607), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(3609), 2, - anon_sym_import, + ACTIONS(1574), 2, + anon_sym_else, sym_identifier, - ACTIONS(850), 8, + ACTIONS(1576), 2, + anon_sym_LBRACE, + sym__newline, + ACTIONS(3367), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3475), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3477), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3365), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [13763] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1440), 2, anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(3423), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3427), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3443), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1438), 8, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, anon_sym_orelse, anon_sym_catch, - anon_sym_or, anon_sym_and, + sym__newline, + [13815] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3423), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3427), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(929), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(927), 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, + [13863] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3600), 1, + anon_sym_SEMI, + ACTIONS(3603), 1, + anon_sym_RBRACK, + ACTIONS(3606), 1, + sym__newline, + STATE(2011), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(852), 5, + anon_sym_DOT_DOT, + anon_sym_or, anon_sym_LT, anon_sym_GT, anon_sym_DOT, - ACTIONS(855), 13, + ACTIONS(857), 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, @@ -134150,1400 +134943,1487 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_CARET, - [14027] = 17, + [13905] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3394), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3402), 1, anon_sym_DOT_DOT_EQ, - STATE(495), 1, + ACTIONS(3493), 1, + anon_sym_SEMI, + ACTIONS(3609), 1, + anon_sym_RBRACK, + ACTIONS(3611), 1, + sym__newline, + STATE(523), 1, + sym_argument_list, + STATE(1952), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3451), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3329), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [13973] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3333), 1, + anon_sym_and, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, + anon_sym_DOT_DOT, + ACTIONS(3402), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3613), 1, + anon_sym_RBRACK, + ACTIONS(3615), 1, + sym__newline, + STATE(523), 1, + sym_argument_list, + STATE(2021), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3451), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3329), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [14038] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3617), 1, + anon_sym_LBRACE, + ACTIONS(3623), 1, + anon_sym_DOT_DOT, + ACTIONS(3625), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3627), 1, + anon_sym_orelse, + ACTIONS(3629), 1, + anon_sym_catch, + ACTIONS(3631), 1, + anon_sym_or, + ACTIONS(3633), 1, + anon_sym_and, + ACTIONS(3639), 1, + sym__newline, + STATE(523), 1, + sym_argument_list, + STATE(1996), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3619), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3637), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3635), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [14103] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3431), 1, + anon_sym_DOT_DOT, + ACTIONS(3433), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3435), 1, + anon_sym_orelse, + ACTIONS(3437), 1, + anon_sym_catch, + ACTIONS(3439), 1, + anon_sym_or, + ACTIONS(3441), 1, + anon_sym_and, + ACTIONS(3641), 1, + anon_sym_PIPE, + ACTIONS(3643), 1, + sym__newline, + STATE(523), 1, + sym_argument_list, + STATE(1990), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3423), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3427), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3443), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [14168] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3333), 1, + anon_sym_and, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, + anon_sym_DOT_DOT, + ACTIONS(3402), 1, + anon_sym_DOT_DOT_EQ, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + ACTIONS(3451), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3447), 2, + ACTIONS(3453), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1579), 3, + ACTIONS(1576), 3, anon_sym_RPAREN, anon_sym_else, sym__newline, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [14088] = 19, + [14229] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3394), 1, - anon_sym_DOT_DOT, - ACTIONS(3396), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3611), 1, - anon_sym_RBRACK, - ACTIONS(3613), 1, - sym__newline, - STATE(495), 1, - sym_argument_list, - STATE(1956), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3333), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3445), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3447), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3331), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [14153] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3323), 1, + ACTIONS(3335), 1, anon_sym_orelse, - ACTIONS(3325), 1, + ACTIONS(3337), 1, anon_sym_catch, - ACTIONS(3327), 1, + ACTIONS(3339), 1, anon_sym_or, - ACTIONS(3329), 1, - anon_sym_and, - ACTIONS(3394), 1, - anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3402), 1, anon_sym_DOT_DOT_EQ, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3333), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3445), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3447), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3615), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(3331), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [14214] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, - anon_sym_and, - ACTIONS(3394), 1, + ACTIONS(3513), 1, anon_sym_DOT_DOT, - ACTIONS(3396), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3617), 1, - anon_sym_RBRACE, - ACTIONS(3619), 1, - sym__newline, - STATE(495), 1, - sym_argument_list, - STATE(1953), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3333), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3445), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3447), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3331), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [14279] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3425), 1, - anon_sym_DOT_DOT, - ACTIONS(3427), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3429), 1, - anon_sym_orelse, - ACTIONS(3431), 1, - anon_sym_catch, - ACTIONS(3433), 1, - anon_sym_or, - ACTIONS(3435), 1, - anon_sym_and, - ACTIONS(3621), 1, - anon_sym_PIPE, - ACTIONS(3623), 1, - sym__newline, - STATE(495), 1, - sym_argument_list, - STATE(1948), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3417), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3439), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3437), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [14344] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, - anon_sym_and, - ACTIONS(3394), 1, - anon_sym_DOT_DOT, - ACTIONS(3396), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3625), 1, - anon_sym_RPAREN, - ACTIONS(3627), 1, - sym__newline, - STATE(495), 1, - sym_argument_list, - STATE(2008), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3333), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3445), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3447), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3331), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [14409] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3629), 1, - anon_sym_LBRACE, - ACTIONS(3635), 1, - anon_sym_DOT_DOT, - ACTIONS(3637), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3639), 1, - anon_sym_orelse, - ACTIONS(3641), 1, - anon_sym_catch, - ACTIONS(3643), 1, - anon_sym_or, ACTIONS(3645), 1, + anon_sym_RBRACK, + ACTIONS(3647), 1, + sym__newline, + STATE(523), 1, + sym_argument_list, + STATE(2010), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3451), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3329), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [14294] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3333), 1, anon_sym_and, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, + anon_sym_DOT_DOT, + ACTIONS(3402), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3649), 1, + anon_sym_RPAREN, ACTIONS(3651), 1, sym__newline, - STATE(495), 1, - sym_argument_list, - STATE(1950), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3631), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3633), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3649), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3647), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [14474] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(852), 1, - anon_sym_LPAREN, - ACTIONS(871), 1, - anon_sym_DOT, - ACTIONS(1067), 1, - anon_sym_LBRACE, - ACTIONS(3653), 1, - anon_sym_EQ, - ACTIONS(850), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(855), 17, - anon_sym_RBRACE, - 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, - sym__newline, - [14515] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(1817), 1, - anon_sym_RBRACE, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, - anon_sym_and, - ACTIONS(3394), 1, - anon_sym_DOT_DOT, - ACTIONS(3396), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3655), 1, - sym__newline, - STATE(495), 1, - sym_argument_list, - STATE(2047), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3333), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3445), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3447), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3331), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [14580] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3657), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(3659), 2, - anon_sym_import, - sym_identifier, - ACTIONS(850), 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(855), 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, - [14617] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, - anon_sym_and, - ACTIONS(3394), 1, - anon_sym_DOT_DOT, - ACTIONS(3396), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3661), 1, - anon_sym_RBRACK, - ACTIONS(3663), 1, - sym__newline, - STATE(495), 1, - sym_argument_list, - STATE(1939), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3333), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3445), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3447), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3331), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [14682] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3425), 1, - anon_sym_DOT_DOT, - ACTIONS(3427), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3429), 1, - anon_sym_orelse, - ACTIONS(3431), 1, - anon_sym_catch, - ACTIONS(3433), 1, - anon_sym_or, - ACTIONS(3435), 1, - anon_sym_and, - ACTIONS(3665), 1, - anon_sym_PIPE, - ACTIONS(3667), 1, - sym__newline, - STATE(495), 1, - sym_argument_list, - STATE(1925), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3417), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3439), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3437), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [14747] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, - anon_sym_and, - ACTIONS(3396), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3491), 1, - anon_sym_DOT_DOT, - ACTIONS(3669), 1, - anon_sym_RBRACK, - ACTIONS(3671), 1, - sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, STATE(1959), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + ACTIONS(3451), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3447), 2, + ACTIONS(3453), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [14812] = 17, + [14359] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, - anon_sym_and, - ACTIONS(3394), 1, - anon_sym_DOT_DOT, - ACTIONS(3396), 1, - anon_sym_DOT_DOT_EQ, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3333), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3445), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3447), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3673), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(3331), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [14873] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, anon_sym_LBRACK, - ACTIONS(931), 1, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3635), 1, - anon_sym_DOT_DOT, - ACTIONS(3637), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3639), 1, - anon_sym_orelse, - ACTIONS(3641), 1, - anon_sym_catch, - ACTIONS(3643), 1, - anon_sym_or, - ACTIONS(3645), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3675), 1, - anon_sym_LBRACE, - ACTIONS(3677), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3402), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3519), 1, + anon_sym_DOT_DOT, + ACTIONS(3653), 1, + anon_sym_RBRACK, + ACTIONS(3655), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1940), 1, + STATE(2041), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3631), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3633), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3649), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3647), 4, + ACTIONS(3451), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [14938] = 17, + [14424] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3394), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3402), 1, anon_sym_DOT_DOT_EQ, - STATE(495), 1, + ACTIONS(3657), 1, + anon_sym_RBRACE, + ACTIONS(3659), 1, + sym__newline, + STATE(523), 1, + sym_argument_list, + STATE(2029), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3451), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3329), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [14489] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3333), 1, + anon_sym_and, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, + anon_sym_DOT_DOT, + ACTIONS(3402), 1, + anon_sym_DOT_DOT_EQ, + STATE(523), 1, sym_argument_list, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + ACTIONS(3451), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3447), 2, + ACTIONS(3453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3661), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(3329), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [14550] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3431), 1, + anon_sym_DOT_DOT, + ACTIONS(3433), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3435), 1, + anon_sym_orelse, + ACTIONS(3437), 1, + anon_sym_catch, + ACTIONS(3439), 1, + anon_sym_or, + ACTIONS(3441), 1, + anon_sym_and, + ACTIONS(3663), 1, + anon_sym_PIPE, + ACTIONS(3665), 1, + sym__newline, + STATE(523), 1, + sym_argument_list, + STATE(1939), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3423), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3427), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3443), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [14615] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3623), 1, + anon_sym_DOT_DOT, + ACTIONS(3625), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3627), 1, + anon_sym_orelse, + ACTIONS(3629), 1, + anon_sym_catch, + ACTIONS(3631), 1, + anon_sym_or, + ACTIONS(3633), 1, + anon_sym_and, + ACTIONS(3667), 1, + anon_sym_LBRACE, + ACTIONS(3669), 1, + sym__newline, + STATE(523), 1, + sym_argument_list, + STATE(1955), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3619), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3637), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3635), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [14680] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3333), 1, + anon_sym_and, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, + anon_sym_DOT_DOT, + ACTIONS(3402), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3671), 1, + anon_sym_RBRACK, + ACTIONS(3673), 1, + sym__newline, + STATE(523), 1, + sym_argument_list, + STATE(1920), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3451), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3329), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [14745] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(1837), 1, + anon_sym_RBRACE, + ACTIONS(3333), 1, + anon_sym_and, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, + anon_sym_DOT_DOT, + ACTIONS(3402), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3675), 1, + sym__newline, + STATE(523), 1, + sym_argument_list, + STATE(2003), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3451), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3329), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [14810] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3333), 1, + anon_sym_and, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, + anon_sym_DOT_DOT, + ACTIONS(3402), 1, + anon_sym_DOT_DOT_EQ, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3451), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3677), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(3329), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [14871] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3333), 1, + anon_sym_and, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, + anon_sym_DOT_DOT, + ACTIONS(3402), 1, + anon_sym_DOT_DOT_EQ, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3451), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3453), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(3679), 3, anon_sym_COMMA, anon_sym_RBRACE, sym__newline, - ACTIONS(3331), 4, + ACTIONS(3329), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [14999] = 19, + [14932] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, - anon_sym_and, - ACTIONS(3394), 1, - anon_sym_DOT_DOT, - ACTIONS(3396), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3681), 1, - anon_sym_RPAREN, - ACTIONS(3683), 1, + ACTIONS(3681), 2, + ts_builtin_sym_end, sym__newline, - STATE(495), 1, - sym_argument_list, - STATE(1943), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3683), 2, + anon_sym_import, + sym_identifier, + ACTIONS(852), 8, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, anon_sym_LT, anon_sym_GT, - ACTIONS(3445), 2, + anon_sym_DOT, + ACTIONS(857), 13, + anon_sym_LPAREN, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3447), 2, + anon_sym_QMARK, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3331), 4, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [15064] = 19, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [14969] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(3323), 1, - anon_sym_orelse, - ACTIONS(3325), 1, - anon_sym_catch, - ACTIONS(3327), 1, - anon_sym_or, - ACTIONS(3329), 1, + ACTIONS(3333), 1, anon_sym_and, - ACTIONS(3396), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3485), 1, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, anon_sym_DOT_DOT, + ACTIONS(3402), 1, + anon_sym_DOT_DOT_EQ, ACTIONS(3685), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(3687), 1, sym__newline, - STATE(495), 1, + STATE(523), 1, sym_argument_list, - STATE(1949), 1, + STATE(1999), 1, aux_sym_import_declaration_repeat1, ACTIONS(31), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3333), 2, + ACTIONS(3331), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(3451), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3329), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [15034] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3689), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3691), 2, + anon_sym_import, + sym_identifier, + ACTIONS(852), 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(857), 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, + [15071] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3333), 1, + anon_sym_and, + ACTIONS(3335), 1, + anon_sym_orelse, + ACTIONS(3337), 1, + anon_sym_catch, + ACTIONS(3339), 1, + anon_sym_or, + ACTIONS(3400), 1, + anon_sym_DOT_DOT, + ACTIONS(3402), 1, + anon_sym_DOT_DOT_EQ, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3451), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3453), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3693), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(3329), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [15132] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3633), 1, + anon_sym_and, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1440), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(3619), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3637), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3635), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1438), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [15184] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1440), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(3619), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3637), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3635), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1438), 6, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + sym__newline, + [15234] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3619), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(929), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(927), 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, + [15280] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1436), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(3619), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3637), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3635), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1434), 6, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + sym__newline, + [15330] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(993), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(991), 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, + [15374] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(993), 1, + anon_sym_DOT_DOT, + ACTIONS(3627), 1, + anon_sym_orelse, + ACTIONS(3629), 1, + anon_sym_catch, + ACTIONS(3631), 1, + anon_sym_or, + ACTIONS(3633), 1, + anon_sym_and, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3619), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3637), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(991), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(3635), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [15432] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(993), 1, + anon_sym_DOT_DOT, + ACTIONS(3631), 1, + anon_sym_or, + ACTIONS(3633), 1, + anon_sym_and, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3619), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3637), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3635), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(991), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [15486] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3633), 1, + anon_sym_and, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1436), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(3619), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3637), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3635), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1434), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [15538] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3619), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(993), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(991), 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, + [15584] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(929), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(927), 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, + [15628] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(929), 1, + anon_sym_DOT_DOT, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3627), 1, + anon_sym_orelse, + ACTIONS(3629), 1, + anon_sym_catch, + ACTIONS(3631), 1, + anon_sym_or, + ACTIONS(3633), 1, + anon_sym_and, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3619), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3637), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(927), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(3635), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [15686] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(929), 1, + anon_sym_DOT_DOT, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3631), 1, + anon_sym_or, + ACTIONS(3633), 1, + anon_sym_and, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3619), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3637), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3635), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(927), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [15740] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(933), 1, + anon_sym_DOT, + ACTIONS(3431), 1, + anon_sym_DOT_DOT, + ACTIONS(3433), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3435), 1, + anon_sym_orelse, + ACTIONS(3437), 1, + anon_sym_catch, + ACTIONS(3439), 1, + anon_sym_or, + ACTIONS(3441), 1, + anon_sym_and, + ACTIONS(3695), 1, + anon_sym_PIPE, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3423), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3427), 2, + anon_sym_STAR, + anon_sym_SLASH, ACTIONS(3445), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3447), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3331), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [15129] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3633), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(943), 4, - anon_sym_DOT_DOT, - anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(941), 12, - anon_sym_LBRACE, - anon_sym_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, + ACTIONS(3443), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS, - sym__newline, - [15173] = 16, + [15799] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(943), 1, - anon_sym_DOT_DOT, - ACTIONS(3639), 1, - anon_sym_orelse, - ACTIONS(3641), 1, - anon_sym_catch, - ACTIONS(3643), 1, - anon_sym_or, - ACTIONS(3645), 1, - anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3631), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3633), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3649), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(941), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(3647), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [15231] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, anon_sym_LBRACK, - ACTIONS(931), 1, + ACTIONS(933), 1, anon_sym_DOT, - ACTIONS(943), 1, - anon_sym_DOT_DOT, - ACTIONS(3643), 1, - anon_sym_or, - ACTIONS(3645), 1, - anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3631), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3633), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3649), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3647), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(941), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [15285] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3645), 1, - anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1434), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(3631), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3633), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3649), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3647), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1432), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [15337] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1434), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(3631), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3633), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3649), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3647), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1432), 6, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - sym__newline, - [15387] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3631), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3633), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(943), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(941), 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, - [15433] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3633), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(927), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(925), 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, - [15477] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(927), 1, - anon_sym_DOT_DOT, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3639), 1, - anon_sym_orelse, - ACTIONS(3641), 1, - anon_sym_catch, - ACTIONS(3643), 1, - anon_sym_or, - ACTIONS(3645), 1, - anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3631), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3633), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3649), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(925), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(3647), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [15535] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(927), 1, - anon_sym_DOT_DOT, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3643), 1, - anon_sym_or, - ACTIONS(3645), 1, - anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3631), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3633), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3649), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3647), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(925), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [15589] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3645), 1, - anon_sym_and, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1430), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(3631), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3633), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3649), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3647), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1428), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [15641] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1430), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(3631), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3633), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3649), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3647), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1428), 6, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - sym__newline, - [15691] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3631), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3633), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(927), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(925), 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, - [15737] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3425), 1, - anon_sym_DOT_DOT, - ACTIONS(3427), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3429), 1, - anon_sym_orelse, ACTIONS(3431), 1, - anon_sym_catch, - ACTIONS(3433), 1, - anon_sym_or, - ACTIONS(3435), 1, - anon_sym_and, - ACTIONS(3689), 1, - anon_sym_PIPE, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3417), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3439), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3437), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [15796] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_LBRACK, - ACTIONS(931), 1, - anon_sym_DOT, - ACTIONS(3425), 1, anon_sym_DOT_DOT, - ACTIONS(3427), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3429), 1, - anon_sym_orelse, - ACTIONS(3431), 1, - anon_sym_catch, ACTIONS(3433), 1, - anon_sym_or, + anon_sym_DOT_DOT_EQ, ACTIONS(3435), 1, + anon_sym_orelse, + ACTIONS(3437), 1, + anon_sym_catch, + ACTIONS(3439), 1, + anon_sym_or, + ACTIONS(3441), 1, anon_sym_and, - ACTIONS(3691), 1, - anon_sym_PIPE, - STATE(495), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3417), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3439), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3437), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [15855] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(3693), 1, - ts_builtin_sym_end, ACTIONS(3697), 1, - anon_sym_BANG, - ACTIONS(3699), 1, - sym__newline, - STATE(1856), 1, - sym_block, - STATE(1857), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3695), 2, - anon_sym_import, - sym_identifier, - ACTIONS(1017), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, anon_sym_PIPE, - [15886] = 9, + STATE(523), 1, + sym_argument_list, + ACTIONS(31), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3423), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3427), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3445), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3443), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [15858] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3699), 1, + ts_builtin_sym_end, + ACTIONS(3701), 1, + sym_identifier, + ACTIONS(3704), 1, + anon_sym_import, + ACTIONS(3707), 1, + sym__newline, + STATE(1495), 7, + sym__top_level_declaration, + sym_import_declaration, + sym_function_declaration, + sym_type_declaration, + sym_global_constant_declaration, + sym_global_variable_declaration, + aux_sym_source_file_repeat1, + [15883] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(3702), 1, + ACTIONS(3710), 1, ts_builtin_sym_end, - ACTIONS(3706), 1, + ACTIONS(3714), 1, anon_sym_BANG, - ACTIONS(3708), 1, + ACTIONS(3716), 1, sym__newline, - STATE(1875), 1, + STATE(1694), 1, sym_block, - STATE(1892), 1, + STATE(1696), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3704), 2, + ACTIONS(3712), 2, anon_sym_import, sym_identifier, - ACTIONS(1161), 3, + ACTIONS(995), 3, anon_sym_COLON_COLON, anon_sym_EQ, anon_sym_PIPE, - [15917] = 6, + [15914] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(7), 1, sym_identifier, ACTIONS(9), 1, anon_sym_import, - ACTIONS(3711), 1, + ACTIONS(3719), 1, ts_builtin_sym_end, - ACTIONS(3713), 1, + ACTIONS(3721), 1, sym__newline, - STATE(1497), 7, + STATE(1495), 7, sym__top_level_declaration, sym_import_declaration, sym_function_declaration, @@ -135551,141 +136431,90 @@ static const uint16_t ts_small_parse_table[] = { sym_global_constant_declaration, sym_global_variable_declaration, aux_sym_source_file_repeat1, - [15942] = 6, + [15939] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3715), 1, - ts_builtin_sym_end, - ACTIONS(3717), 1, - sym_identifier, - ACTIONS(3720), 1, - anon_sym_import, + ACTIONS(23), 1, + anon_sym_LBRACE, ACTIONS(3723), 1, + ts_builtin_sym_end, + ACTIONS(3727), 1, + anon_sym_BANG, + ACTIONS(3729), 1, sym__newline, - STATE(1497), 7, - sym__top_level_declaration, - sym_import_declaration, - sym_function_declaration, - sym_type_declaration, - sym_global_constant_declaration, - sym_global_variable_declaration, - aux_sym_source_file_repeat1, - [15967] = 8, + STATE(1759), 1, + sym_block, + STATE(1764), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(3725), 2, + anon_sym_import, + sym_identifier, + ACTIONS(951), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [15970] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(3726), 1, + ACTIONS(3732), 1, ts_builtin_sym_end, - ACTIONS(3730), 1, + ACTIONS(3736), 1, sym__newline, - STATE(1838), 1, + STATE(1752), 1, sym_block, - STATE(1839), 1, + STATE(1753), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3728), 2, + ACTIONS(3734), 2, anon_sym_import, sym_identifier, - ACTIONS(949), 3, + ACTIONS(1085), 3, anon_sym_COLON_COLON, anon_sym_EQ, anon_sym_PIPE, - [15995] = 8, + [15998] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(3733), 1, + ACTIONS(3739), 1, ts_builtin_sym_end, - ACTIONS(3737), 1, + ACTIONS(3743), 1, sym__newline, - STATE(1798), 1, - aux_sym_import_declaration_repeat1, - STATE(1913), 1, + STATE(1742), 1, sym_block, - ACTIONS(3735), 2, + STATE(1744), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(3741), 2, anon_sym_import, sym_identifier, - ACTIONS(989), 3, + ACTIONS(1037), 3, anon_sym_COLON_COLON, anon_sym_EQ, anon_sym_PIPE, - [16023] = 8, + [16026] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3742), 1, - anon_sym_RPAREN, - ACTIONS(3744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3746), 1, - anon_sym_DOLLAR, + ACTIONS(227), 1, + sym__newline, ACTIONS(3748), 1, - sym__newline, - STATE(1505), 1, - aux_sym_import_declaration_repeat1, - STATE(1971), 1, - sym_parameter, - ACTIONS(3740), 2, - sym_sink, - sym_identifier, - [16049] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3746), 1, - anon_sym_DOLLAR, + anon_sym_RPAREN, ACTIONS(3750), 1, - anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, ACTIONS(3752), 1, - anon_sym_DOT_DOT_DOT, - STATE(680), 1, + anon_sym_DOLLAR, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(1964), 1, + STATE(2019), 1, sym_parameter, - ACTIONS(3740), 2, + ACTIONS(3746), 2, sym_sink, sym_identifier, - [16075] = 8, + [16052] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3746), 1, - anon_sym_DOLLAR, ACTIONS(3752), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3754), 1, - anon_sym_RPAREN, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1964), 1, - sym_parameter, - ACTIONS(3740), 2, - sym_sink, - sym_identifier, - [16101] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3746), 1, - anon_sym_DOLLAR, - ACTIONS(3754), 1, - anon_sym_RPAREN, - ACTIONS(3756), 1, - anon_sym_DOT_DOT_DOT, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1992), 1, - sym_parameter, - ACTIONS(3740), 2, - sym_sink, - sym_identifier, - [16127] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3746), 1, anon_sym_DOLLAR, ACTIONS(3754), 1, anon_sym_RPAREN, @@ -135693,3854 +136522,3646 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(3758), 1, sym__newline, - STATE(1510), 1, + STATE(1501), 1, aux_sym_import_declaration_repeat1, - STATE(1992), 1, + STATE(1950), 1, sym_parameter, - ACTIONS(3740), 2, + ACTIONS(3746), 2, sym_sink, sym_identifier, - [16153] = 8, + [16078] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3746), 1, - anon_sym_DOLLAR, - ACTIONS(3756), 1, + ACTIONS(3750), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(3760), 1, - anon_sym_RPAREN, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1992), 1, - sym_parameter, - ACTIONS(3740), 2, - sym_sink, - sym_identifier, - [16179] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3746), 1, + ACTIONS(3752), 1, anon_sym_DOLLAR, - ACTIONS(3756), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(3760), 1, anon_sym_RPAREN, ACTIONS(3762), 1, sym__newline, - STATE(1501), 1, + STATE(1506), 1, aux_sym_import_declaration_repeat1, - STATE(1992), 1, + STATE(2019), 1, sym_parameter, - ACTIONS(3740), 2, + ACTIONS(3746), 2, sym_sink, sym_identifier, - [16205] = 8, + [16104] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3746), 1, + ACTIONS(3752), 1, anon_sym_DOLLAR, - ACTIONS(3760), 1, - anon_sym_RPAREN, ACTIONS(3764), 1, - sym__newline, - STATE(1513), 1, - aux_sym_import_declaration_repeat1, - STATE(1971), 1, - sym_parameter, - ACTIONS(3740), 2, - sym_sink, - sym_identifier, - [16231] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3746), 1, - anon_sym_DOLLAR, + anon_sym_RPAREN, ACTIONS(3766), 1, - anon_sym_RPAREN, - ACTIONS(3768), 1, anon_sym_DOT_DOT_DOT, - STATE(680), 1, + ACTIONS(3768), 1, + sym__newline, + STATE(1507), 1, aux_sym_import_declaration_repeat1, - STATE(1618), 1, + STATE(1544), 1, sym_parameter, - ACTIONS(3740), 2, + ACTIONS(3746), 2, sym_sink, sym_identifier, - [16257] = 8, + [16130] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3746), 1, + ACTIONS(3752), 1, anon_sym_DOLLAR, - ACTIONS(3750), 1, - anon_sym_RPAREN, ACTIONS(3756), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(3760), 1, + anon_sym_RPAREN, ACTIONS(3770), 1, sym__newline, - STATE(1502), 1, + STATE(1508), 1, aux_sym_import_declaration_repeat1, - STATE(1992), 1, + STATE(1950), 1, sym_parameter, - ACTIONS(3740), 2, + ACTIONS(3746), 2, sym_sink, sym_identifier, - [16283] = 8, + [16156] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(3746), 1, - anon_sym_DOLLAR, ACTIONS(3752), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3772), 1, + anon_sym_DOLLAR, + ACTIONS(3754), 1, anon_sym_RPAREN, - STATE(680), 1, + ACTIONS(3772), 1, + anon_sym_DOT_DOT_DOT, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(1964), 1, + STATE(1942), 1, sym_parameter, - ACTIONS(3740), 2, + ACTIONS(3746), 2, sym_sink, sym_identifier, - [16309] = 8, + [16182] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3746), 1, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3752), 1, anon_sym_DOLLAR, ACTIONS(3774), 1, anon_sym_RPAREN, ACTIONS(3776), 1, anon_sym_DOT_DOT_DOT, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1596), 1, + sym_parameter, + ACTIONS(3746), 2, + sym_sink, + sym_identifier, + [16208] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3750), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3752), 1, + anon_sym_DOLLAR, + ACTIONS(3754), 1, + anon_sym_RPAREN, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(2019), 1, + sym_parameter, + ACTIONS(3746), 2, + sym_sink, + sym_identifier, + [16234] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3750), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3752), 1, + anon_sym_DOLLAR, + ACTIONS(3754), 1, + anon_sym_RPAREN, ACTIONS(3778), 1, sym__newline, - STATE(1508), 1, + STATE(1511), 1, aux_sym_import_declaration_repeat1, - STATE(1602), 1, + STATE(2019), 1, sym_parameter, - ACTIONS(3740), 2, + ACTIONS(3746), 2, sym_sink, sym_identifier, - [16335] = 8, + [16260] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3746), 1, + ACTIONS(3752), 1, anon_sym_DOLLAR, - ACTIONS(3750), 1, - anon_sym_RPAREN, + ACTIONS(3756), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(3780), 1, - sym__newline, - STATE(1503), 1, - aux_sym_import_declaration_repeat1, - STATE(1971), 1, - sym_parameter, - ACTIONS(3740), 2, - sym_sink, - sym_identifier, - [16361] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3746), 1, - anon_sym_DOLLAR, - ACTIONS(3750), 1, anon_sym_RPAREN, - ACTIONS(3756), 1, - anon_sym_DOT_DOT_DOT, - STATE(680), 1, + ACTIONS(3782), 1, + sym__newline, + STATE(1512), 1, aux_sym_import_declaration_repeat1, - STATE(1992), 1, + STATE(1950), 1, sym_parameter, - ACTIONS(3740), 2, + ACTIONS(3746), 2, sym_sink, sym_identifier, - [16387] = 8, + [16286] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3415), 1, - anon_sym_COMMA, - ACTIONS(3419), 1, - anon_sym_PIPE, - ACTIONS(3441), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(3782), 1, - anon_sym_COLON, - STATE(1535), 1, - aux_sym_match_arm_repeat1, - STATE(2010), 1, + ACTIONS(3748), 1, + anon_sym_RPAREN, + ACTIONS(3752), 1, + anon_sym_DOLLAR, + ACTIONS(3772), 1, + anon_sym_DOT_DOT_DOT, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(2101), 1, - sym_match_capture, - [16412] = 7, + STATE(1942), 1, + sym_parameter, + ACTIONS(3746), 2, + sym_sink, + sym_identifier, + [16312] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3746), 1, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3750), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3752), 1, anon_sym_DOLLAR, - ACTIONS(3756), 1, + ACTIONS(3760), 1, + anon_sym_RPAREN, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(2019), 1, + sym_parameter, + ACTIONS(3746), 2, + sym_sink, + sym_identifier, + [16338] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3752), 1, + anon_sym_DOLLAR, + ACTIONS(3772), 1, anon_sym_DOT_DOT_DOT, ACTIONS(3784), 1, - sym__newline, - STATE(1518), 1, + anon_sym_RPAREN, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(1992), 1, + STATE(1942), 1, sym_parameter, - ACTIONS(3740), 2, + ACTIONS(3746), 2, sym_sink, sym_identifier, - [16435] = 7, + [16364] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3746), 1, - anon_sym_DOLLAR, - ACTIONS(3756), 1, + ACTIONS(3748), 1, + anon_sym_RPAREN, + ACTIONS(3750), 1, anon_sym_DOT_DOT_DOT, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1992), 1, - sym_parameter, - ACTIONS(3740), 2, - sym_sink, - sym_identifier, - [16458] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3744), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3746), 1, + ACTIONS(3752), 1, anon_sym_DOLLAR, ACTIONS(3786), 1, sym__newline, + STATE(1513), 1, + aux_sym_import_declaration_repeat1, + STATE(2019), 1, + sym_parameter, + ACTIONS(3746), 2, + sym_sink, + sym_identifier, + [16390] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3421), 1, + anon_sym_COMMA, + ACTIONS(3425), 1, + anon_sym_PIPE, + ACTIONS(3447), 1, + sym__newline, + ACTIONS(3788), 1, + anon_sym_COLON, + STATE(1522), 1, + aux_sym_match_arm_repeat1, + STATE(1917), 1, + aux_sym_import_declaration_repeat1, + STATE(2183), 1, + sym_match_capture, + [16415] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3752), 1, + anon_sym_DOLLAR, + ACTIONS(3772), 1, + anon_sym_DOT_DOT_DOT, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1942), 1, + sym_parameter, + ACTIONS(3746), 2, + sym_sink, + sym_identifier, + [16438] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3750), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3752), 1, + anon_sym_DOLLAR, + ACTIONS(3790), 1, + sym__newline, STATE(1516), 1, aux_sym_import_declaration_repeat1, - STATE(1971), 1, + STATE(2019), 1, sym_parameter, - ACTIONS(3740), 2, + ACTIONS(3746), 2, sym_sink, sym_identifier, - [16481] = 7, + [16461] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(3746), 1, - anon_sym_DOLLAR, - ACTIONS(3752), 1, + ACTIONS(3750), 1, anon_sym_DOT_DOT_DOT, - STATE(680), 1, + ACTIONS(3752), 1, + anon_sym_DOLLAR, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(1964), 1, + STATE(2019), 1, sym_parameter, - ACTIONS(3740), 2, + ACTIONS(3746), 2, sym_sink, sym_identifier, - [16504] = 6, + [16484] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3033), 1, - ts_builtin_sym_end, - ACTIONS(3788), 1, - anon_sym_else, - ACTIONS(3791), 1, + ACTIONS(3752), 1, + anon_sym_DOLLAR, + ACTIONS(3756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3792), 1, sym__newline, - STATE(2009), 1, + STATE(1518), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3031), 2, - anon_sym_import, + STATE(1950), 1, + sym_parameter, + ACTIONS(3746), 2, + sym_sink, sym_identifier, - [16524] = 6, + [16507] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3043), 1, + ACTIONS(3067), 1, ts_builtin_sym_end, ACTIONS(3794), 1, anon_sym_else, - ACTIONS(3796), 1, - sym__newline, - STATE(1929), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3041), 2, - anon_sym_import, - sym_identifier, - [16544] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3062), 1, - ts_builtin_sym_end, - ACTIONS(3799), 1, - anon_sym_else, - ACTIONS(3802), 1, + ACTIONS(3797), 1, sym__newline, STATE(2015), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3060), 2, + ACTIONS(3065), 2, anon_sym_import, sym_identifier, - [16564] = 6, + [16527] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, + ACTIONS(3039), 1, ts_builtin_sym_end, - ACTIONS(3805), 1, + ACTIONS(3800), 1, anon_sym_else, + ACTIONS(3802), 1, + sym__newline, + STATE(2030), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(3037), 2, + anon_sym_import, + sym_identifier, + [16547] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3805), 1, + anon_sym_COMMA, ACTIONS(3808), 1, sym__newline, - STATE(2011), 1, + STATE(1522), 1, + aux_sym_match_arm_repeat1, + STATE(1917), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3050), 2, - anon_sym_import, - sym_identifier, - [16584] = 6, + ACTIONS(3565), 2, + anon_sym_PIPE, + anon_sym_COLON, + [16567] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 1, + ACTIONS(3076), 1, ts_builtin_sym_end, ACTIONS(3811), 1, anon_sym_else, - ACTIONS(3814), 1, + ACTIONS(3813), 1, sym__newline, - STATE(2013), 1, + STATE(1932), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3084), 2, + ACTIONS(3074), 2, anon_sym_import, sym_identifier, - [16604] = 6, + [16587] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3077), 1, + ACTIONS(3085), 1, ts_builtin_sym_end, - ACTIONS(3817), 1, + ACTIONS(3816), 1, anon_sym_else, - ACTIONS(3820), 1, + ACTIONS(3818), 1, sym__newline, - STATE(2012), 1, + STATE(1968), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3075), 2, + ACTIONS(3083), 2, anon_sym_import, sym_identifier, - [16624] = 6, + [16607] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3043), 1, + ACTIONS(3067), 1, ts_builtin_sym_end, + ACTIONS(3821), 1, + anon_sym_else, ACTIONS(3823), 1, - anon_sym_else, + sym__newline, + STATE(1943), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(3065), 2, + anon_sym_import, + sym_identifier, + [16627] = 6, + ACTIONS(3), 1, + sym_comment, ACTIONS(3826), 1, + anon_sym_COMMA, + ACTIONS(3831), 1, + sym__newline, + STATE(1526), 1, + aux_sym_capture_list_repeat1, + STATE(2035), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(3829), 2, + anon_sym_PIPE, + anon_sym_COLON, + [16647] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3058), 1, + ts_builtin_sym_end, + ACTIONS(3834), 1, + anon_sym_else, + ACTIONS(3837), 1, sym__newline, STATE(2014), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3041), 2, + ACTIONS(3056), 2, anon_sym_import, sym_identifier, - [16644] = 7, + [16667] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3829), 1, + ACTIONS(3840), 1, anon_sym_COMMA, - ACTIONS(3831), 1, - anon_sym_PIPE, - ACTIONS(3833), 1, - anon_sym_COLON, - ACTIONS(3835), 1, - sym__newline, - STATE(1532), 1, - aux_sym_capture_list_repeat1, - STATE(1933), 1, - aux_sym_import_declaration_repeat1, - [16666] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3829), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, - sym__newline, - ACTIONS(3837), 1, - anon_sym_PIPE, - ACTIONS(3839), 1, - anon_sym_COLON, - STATE(1526), 1, - aux_sym_capture_list_repeat1, - STATE(1933), 1, - aux_sym_import_declaration_repeat1, - [16688] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3052), 1, - ts_builtin_sym_end, - ACTIONS(3841), 1, - anon_sym_else, ACTIONS(3843), 1, sym__newline, - STATE(2007), 1, + STATE(1528), 1, + aux_sym_match_arm_repeat1, + STATE(2002), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3050), 2, - anon_sym_import, - sym_identifier, - [16708] = 6, + ACTIONS(3565), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [16687] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(3846), 1, anon_sym_COMMA, - ACTIONS(3849), 1, - sym__newline, - STATE(1529), 1, - aux_sym_match_arm_repeat1, - STATE(1932), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3576), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [16728] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3077), 1, - ts_builtin_sym_end, + ACTIONS(3848), 1, + anon_sym_PIPE, + ACTIONS(3850), 1, + anon_sym_COLON, ACTIONS(3852), 1, - anon_sym_else, - ACTIONS(3854), 1, - sym__newline, - STATE(1988), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3075), 2, - anon_sym_import, - sym_identifier, - [16748] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3086), 1, - ts_builtin_sym_end, - ACTIONS(3857), 1, - anon_sym_else, - ACTIONS(3859), 1, - sym__newline, - STATE(1923), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3084), 2, - anon_sym_import, - sym_identifier, - [16768] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3862), 1, - anon_sym_COMMA, - ACTIONS(3867), 1, sym__newline, STATE(1532), 1, aux_sym_capture_list_repeat1, - STATE(1933), 1, + STATE(2035), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3865), 2, - anon_sym_PIPE, - anon_sym_COLON, - [16788] = 6, + [16709] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 1, + ACTIONS(3039), 1, + ts_builtin_sym_end, + ACTIONS(3854), 1, + anon_sym_else, + ACTIONS(3857), 1, + sym__newline, + STATE(2018), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(3037), 2, + anon_sym_import, + sym_identifier, + [16729] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3049), 1, + ts_builtin_sym_end, + ACTIONS(3860), 1, + anon_sym_else, + ACTIONS(3863), 1, + sym__newline, + STATE(2012), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(3047), 2, + anon_sym_import, + sym_identifier, + [16749] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3846), 1, + anon_sym_COMMA, + ACTIONS(3852), 1, + sym__newline, + ACTIONS(3866), 1, + anon_sym_PIPE, + ACTIONS(3868), 1, + anon_sym_COLON, + STATE(1526), 1, + aux_sym_capture_list_repeat1, + STATE(2035), 1, + aux_sym_import_declaration_repeat1, + [16771] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3058), 1, ts_builtin_sym_end, ACTIONS(3870), 1, anon_sym_else, ACTIONS(3872), 1, sym__newline, - STATE(2018), 1, + STATE(1931), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3060), 2, + ACTIONS(3056), 2, anon_sym_import, sym_identifier, - [16808] = 6, + [16791] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3033), 1, + ACTIONS(3049), 1, ts_builtin_sym_end, ACTIONS(3875), 1, anon_sym_else, ACTIONS(3877), 1, sym__newline, - STATE(1991), 1, + STATE(2033), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3031), 2, + ACTIONS(3047), 2, anon_sym_import, sym_identifier, - [16828] = 6, + [16811] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(3085), 1, + ts_builtin_sym_end, ACTIONS(3880), 1, - anon_sym_COMMA, + anon_sym_else, ACTIONS(3883), 1, sym__newline, - STATE(1535), 1, - aux_sym_match_arm_repeat1, - STATE(2010), 1, + STATE(2017), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3576), 2, - anon_sym_PIPE, - anon_sym_COLON, - [16848] = 6, + ACTIONS(3083), 2, + anon_sym_import, + sym_identifier, + [16831] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3076), 1, + ts_builtin_sym_end, + ACTIONS(3886), 1, + anon_sym_else, + ACTIONS(3889), 1, + sym__newline, + STATE(2016), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(3074), 2, + anon_sym_import, + sym_identifier, + [16851] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(3886), 1, - sym_identifier, - ACTIONS(3888), 1, - sym__newline, - STATE(1142), 1, - sym_block, - STATE(1574), 1, - aux_sym_import_declaration_repeat1, - [16867] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3890), 1, - anon_sym_LPAREN, ACTIONS(3892), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(3894), 1, sym__newline, - STATE(406), 1, - sym_enum_body, - STATE(1880), 1, + STATE(1063), 1, + sym_block, + STATE(1547), 1, aux_sym_import_declaration_repeat1, - [16886] = 6, + [16870] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, ACTIONS(3896), 1, sym_identifier, ACTIONS(3898), 1, - sym__newline, - STATE(1051), 1, - sym_block, - STATE(1561), 1, + anon_sym_RBRACE, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [16905] = 6, + STATE(1934), 1, + sym_field_initializer, + [16889] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3050), 1, + ACTIONS(3896), 1, sym_identifier, - ACTIONS(3052), 1, - anon_sym_LBRACE, + ACTIONS(3898), 1, + anon_sym_RBRACE, ACTIONS(3900), 1, - anon_sym_else, - ACTIONS(3902), 1, sym__newline, - STATE(1920), 1, - aux_sym_import_declaration_repeat1, - [16924] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3075), 1, - sym_identifier, - ACTIONS(3077), 1, - anon_sym_LBRACE, - ACTIONS(3905), 1, - anon_sym_else, - ACTIONS(3907), 1, - sym__newline, - STATE(1924), 1, - aux_sym_import_declaration_repeat1, - [16943] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3031), 1, - sym_identifier, - ACTIONS(3033), 1, - anon_sym_LBRACE, - ACTIONS(3910), 1, - anon_sym_else, - ACTIONS(3913), 1, - sym__newline, - STATE(1980), 1, - aux_sym_import_declaration_repeat1, - [16962] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3916), 1, - sym_identifier, - ACTIONS(3918), 1, - anon_sym_RBRACE, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(2035), 1, - sym_keyed_field_initializer, - [16981] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3050), 1, - sym_identifier, - ACTIONS(3052), 1, - anon_sym_LBRACE, - ACTIONS(3920), 1, - anon_sym_else, - ACTIONS(3923), 1, - sym__newline, - STATE(1981), 1, - aux_sym_import_declaration_repeat1, - [17000] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3075), 1, - sym_identifier, - ACTIONS(3077), 1, - anon_sym_LBRACE, - ACTIONS(3926), 1, - anon_sym_else, - ACTIONS(3929), 1, - sym__newline, - STATE(1982), 1, - aux_sym_import_declaration_repeat1, - [17019] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3916), 1, - sym_identifier, - ACTIONS(3918), 1, - anon_sym_RBRACE, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(2034), 1, - sym_keyed_field_initializer, - [17038] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3084), 1, - sym_identifier, - ACTIONS(3086), 1, - anon_sym_LBRACE, - ACTIONS(3932), 1, - anon_sym_else, - ACTIONS(3935), 1, - sym__newline, - STATE(1983), 1, - aux_sym_import_declaration_repeat1, - [17057] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3084), 1, - sym_identifier, - ACTIONS(3086), 1, - anon_sym_LBRACE, - ACTIONS(3938), 1, - anon_sym_else, - ACTIONS(3940), 1, - sym__newline, - STATE(1926), 1, - aux_sym_import_declaration_repeat1, - [17076] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3041), 1, - sym_identifier, - ACTIONS(3043), 1, - anon_sym_LBRACE, - ACTIONS(3943), 1, - anon_sym_else, - ACTIONS(3945), 1, - sym__newline, - STATE(1928), 1, - aux_sym_import_declaration_repeat1, - [17095] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3060), 1, - sym_identifier, - ACTIONS(3062), 1, - anon_sym_LBRACE, - ACTIONS(3948), 1, - anon_sym_else, - ACTIONS(3950), 1, - sym__newline, - STATE(1930), 1, - aux_sym_import_declaration_repeat1, - [17114] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(3953), 1, - sym_identifier, - ACTIONS(3955), 1, - sym__newline, - STATE(1070), 1, - sym_block, STATE(1589), 1, aux_sym_import_declaration_repeat1, - [17133] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3957), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1162), 1, - sym_block, - [17152] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3041), 1, - sym_identifier, - ACTIONS(3043), 1, - anon_sym_LBRACE, - ACTIONS(3959), 1, - anon_sym_else, - ACTIONS(3962), 1, - sym__newline, - STATE(2048), 1, - aux_sym_import_declaration_repeat1, - [17171] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3060), 1, - sym_identifier, - ACTIONS(3062), 1, - anon_sym_LBRACE, - ACTIONS(3965), 1, - anon_sym_else, - ACTIONS(3968), 1, - sym__newline, - STATE(1984), 1, - aux_sym_import_declaration_repeat1, - [17190] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(3971), 1, - sym_identifier, - ACTIONS(3973), 1, - sym__newline, - STATE(1164), 1, - sym_block, - STATE(1619), 1, - aux_sym_import_declaration_repeat1, - [17209] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3975), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1075), 1, - sym_block, - [17228] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3977), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1181), 1, - sym_block, - [17247] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, - anon_sym_RBRACK, - ACTIONS(3979), 1, - anon_sym_COMMA, - ACTIONS(3981), 1, - sym__newline, - STATE(1529), 1, - aux_sym_match_arm_repeat1, - STATE(1700), 1, - aux_sym_import_declaration_repeat1, - [17266] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(3983), 1, - sym_identifier, - ACTIONS(3985), 1, - sym__newline, - STATE(1190), 1, - sym_block, - STATE(1620), 1, - aux_sym_import_declaration_repeat1, - [17285] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(3987), 1, - anon_sym_BANG, - ACTIONS(3989), 1, - sym__newline, - STATE(474), 1, - sym_block, - STATE(1853), 1, - aux_sym_import_declaration_repeat1, - [17304] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3991), 1, - sym_identifier, - ACTIONS(3993), 1, - anon_sym_RBRACE, - ACTIONS(3995), 1, - sym__newline, - STATE(1639), 1, - aux_sym_record_body_repeat1, - STATE(1825), 1, - sym_record_field, - [17323] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3997), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1091), 1, - sym_block, - [17342] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3916), 1, - sym_identifier, - ACTIONS(3999), 1, - anon_sym_RBRACE, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(2034), 1, - sym_keyed_field_initializer, - [17361] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4001), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1223), 1, - sym_block, - [17380] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4003), 1, - sym_identifier, - ACTIONS(4005), 1, - sym__newline, - STATE(1224), 1, - sym_block, - STATE(1646), 1, - aux_sym_import_declaration_repeat1, - [17399] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4007), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1226), 1, - sym_block, - [17418] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4009), 1, - sym_identifier, - ACTIONS(4012), 1, - anon_sym_RBRACE, - ACTIONS(4014), 1, - sym__newline, - STATE(1566), 1, - aux_sym_record_body_repeat1, - STATE(1825), 1, - sym_record_field, - [17437] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1885), 1, - anon_sym_RBRACK, - ACTIONS(3443), 1, - anon_sym_COMMA, - ACTIONS(4017), 1, - sym__newline, - STATE(1529), 1, - aux_sym_match_arm_repeat1, - STATE(1685), 1, - aux_sym_import_declaration_repeat1, - [17456] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4019), 1, - sym_identifier, - ACTIONS(4021), 1, - sym__newline, - STATE(1227), 1, - sym_block, - STATE(1551), 1, - aux_sym_import_declaration_repeat1, - [17475] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4023), 1, - sym_identifier, - ACTIONS(4025), 1, - sym__newline, - STATE(1111), 1, - sym_block, - STATE(1647), 1, - aux_sym_import_declaration_repeat1, - [17494] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4027), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1194), 1, - sym_block, - [17513] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4029), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1012), 1, - sym_block, - [17532] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4031), 1, - sym_identifier, - ACTIONS(4033), 1, - sym__newline, - STATE(1137), 1, - sym_block, - STATE(1556), 1, - aux_sym_import_declaration_repeat1, - [17551] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4035), 1, - sym_identifier, - ACTIONS(4037), 1, - sym__newline, - STATE(1195), 1, - sym_block, - STATE(1623), 1, - aux_sym_import_declaration_repeat1, - [17570] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4039), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1199), 1, - sym_block, - [17589] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4041), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1116), 1, - sym_block, - [17608] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4043), 1, - sym_identifier, - ACTIONS(4045), 1, - sym__newline, - STATE(1023), 1, - sym_block, - STATE(1636), 1, - aux_sym_import_declaration_repeat1, - [17627] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4047), 1, - sym_identifier, - ACTIONS(4049), 1, - anon_sym_RBRACE, - ACTIONS(4051), 1, - sym__newline, - STATE(1650), 1, + STATE(1934), 1, sym_field_initializer, - STATE(1652), 1, - aux_sym_import_declaration_repeat1, - [17646] = 6, + [16908] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4053), 1, + ACTIONS(3896), 1, sym_identifier, - ACTIONS(4055), 1, - sym__newline, - STATE(1038), 1, - sym_block, - STATE(1638), 1, - aux_sym_import_declaration_repeat1, - [17665] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4057), 1, - sym_identifier, - ACTIONS(4059), 1, - sym__newline, - STATE(1168), 1, - sym_block, - STATE(1648), 1, - aux_sym_import_declaration_repeat1, - [17684] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4061), 1, - sym_identifier, - ACTIONS(4063), 1, - sym__newline, - STATE(1140), 1, - sym_block, - STATE(1570), 1, - aux_sym_import_declaration_repeat1, - [17703] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4065), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1170), 1, - sym_block, - [17722] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3742), 1, - anon_sym_RPAREN, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - sym__newline, - STATE(1624), 1, - aux_sym_parameter_list_repeat1, - STATE(1845), 1, - aux_sym_import_declaration_repeat1, - [17741] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1817), 1, + ACTIONS(3898), 1, anon_sym_RBRACE, - ACTIONS(4071), 1, - anon_sym_COMMA, - ACTIONS(4073), 1, + ACTIONS(3902), 1, sym__newline, - STATE(1595), 1, - aux_sym_variant_payload_repeat1, + STATE(1590), 1, + aux_sym_import_declaration_repeat1, + STATE(2005), 1, + sym_field_initializer, + [16927] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3904), 1, + anon_sym_COMMA, + ACTIONS(3907), 1, + anon_sym_RBRACE, + ACTIONS(3909), 1, + sym__newline, + STATE(1541), 1, + aux_sym_initializer_list_repeat1, + STATE(1937), 1, + aux_sym_import_declaration_repeat1, + [16946] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3898), 1, + anon_sym_RBRACE, + ACTIONS(3912), 1, + anon_sym_COMMA, + ACTIONS(3914), 1, + sym__newline, + STATE(1541), 1, + aux_sym_initializer_list_repeat1, STATE(1745), 1, aux_sym_import_declaration_repeat1, - [17760] = 6, + [16965] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(4075), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1172), 1, - sym_block, - [17779] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4077), 1, - sym_identifier, - ACTIONS(4079), 1, - sym__newline, - STATE(1174), 1, - sym_block, - STATE(1655), 1, - aux_sym_import_declaration_repeat1, - [17798] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4081), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1041), 1, - sym_block, - [17817] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4083), 1, - sym_identifier, - ACTIONS(4085), 1, - sym__newline, - STATE(1177), 1, - sym_block, - STATE(1656), 1, - aux_sym_import_declaration_repeat1, - [17836] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3617), 1, - anon_sym_RBRACE, ACTIONS(3916), 1, sym_identifier, - ACTIONS(4087), 1, - sym__newline, - STATE(1596), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(1951), 1, - sym_keyed_field_initializer, - [17855] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4089), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1178), 1, + STATE(1056), 1, sym_block, - [17874] = 6, + [16984] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4091), 1, - sym_identifier, - ACTIONS(4093), 1, - sym__newline, - STATE(1179), 1, - sym_block, - STATE(1631), 1, - aux_sym_import_declaration_repeat1, - [17893] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4095), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1133), 1, - sym_block, - [17912] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4097), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1144), 1, - sym_block, - [17931] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4099), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1148), 1, - sym_block, - [17950] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4101), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1149), 1, - sym_block, - [17969] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3617), 1, - anon_sym_RBRACE, - ACTIONS(4103), 1, + ACTIONS(3774), 1, + anon_sym_RPAREN, + ACTIONS(3918), 1, anon_sym_COMMA, - ACTIONS(4105), 1, + ACTIONS(3920), 1, sym__newline, - STATE(1599), 1, - aux_sym_variant_payload_repeat1, - STATE(1809), 1, + STATE(1588), 1, + aux_sym_parameter_list_repeat1, + STATE(1734), 1, aux_sym_import_declaration_repeat1, - [17988] = 6, + [17003] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3916), 1, - sym_identifier, - ACTIONS(4107), 1, - anon_sym_RBRACE, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(2034), 1, - sym_keyed_field_initializer, - [18007] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3916), 1, - sym_identifier, - ACTIONS(4107), 1, - anon_sym_RBRACE, - ACTIONS(4109), 1, - sym__newline, - STATE(1542), 1, - aux_sym_import_declaration_repeat1, - STATE(2034), 1, - sym_keyed_field_initializer, - [18026] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3916), 1, - sym_identifier, - ACTIONS(4107), 1, - anon_sym_RBRACE, - ACTIONS(4111), 1, - sym__newline, - STATE(1545), 1, - aux_sym_import_declaration_repeat1, - STATE(1951), 1, - sym_keyed_field_initializer, - [18045] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4113), 1, + ACTIONS(1897), 1, + anon_sym_RBRACK, + ACTIONS(3922), 1, anon_sym_COMMA, - ACTIONS(4116), 1, - anon_sym_RBRACE, - ACTIONS(4118), 1, + ACTIONS(3924), 1, sym__newline, - STATE(1599), 1, - aux_sym_variant_payload_repeat1, - STATE(1997), 1, + STATE(1528), 1, + aux_sym_match_arm_repeat1, + STATE(1778), 1, aux_sym_import_declaration_repeat1, - [18064] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3916), 1, - sym_identifier, - ACTIONS(3999), 1, - anon_sym_RBRACE, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(2035), 1, - sym_keyed_field_initializer, - [18083] = 6, + [17022] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(4121), 1, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3926), 1, sym_identifier, - ACTIONS(4123), 1, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1036), 1, + sym_block, + [17041] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3928), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1093), 1, + sym_block, + [17060] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(3930), 1, + sym_identifier, + ACTIONS(3932), 1, sym__newline, STATE(1151), 1, sym_block, - STATE(1591), 1, + STATE(1622), 1, aux_sym_import_declaration_repeat1, - [18102] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3766), 1, - anon_sym_RPAREN, - ACTIONS(4125), 1, - anon_sym_COMMA, - ACTIONS(4127), 1, - sym__newline, - STATE(1582), 1, - aux_sym_parameter_list_repeat1, - STATE(1902), 1, - aux_sym_import_declaration_repeat1, - [18121] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4047), 1, - sym_identifier, - ACTIONS(4129), 1, - anon_sym_RBRACE, - ACTIONS(4131), 1, - sym__newline, - STATE(1626), 1, - aux_sym_import_declaration_repeat1, - STATE(1974), 1, - sym_field_initializer, - [18140] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4129), 1, - anon_sym_RBRACE, - ACTIONS(4133), 1, - anon_sym_COMMA, - ACTIONS(4135), 1, - sym__newline, - STATE(1632), 1, - aux_sym_initializer_list_repeat1, - STATE(1833), 1, - aux_sym_import_declaration_repeat1, - [18159] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4129), 1, - anon_sym_RBRACE, - ACTIONS(4133), 1, - anon_sym_COMMA, - ACTIONS(4135), 1, - sym__newline, - STATE(1633), 1, - aux_sym_initializer_list_repeat1, - STATE(1833), 1, - aux_sym_import_declaration_repeat1, - [18178] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1901), 1, - anon_sym_RPAREN, - ACTIONS(3541), 1, - anon_sym_COMMA, - ACTIONS(3549), 1, - sym__newline, - STATE(1529), 1, - aux_sym_match_arm_repeat1, - STATE(1899), 1, - aux_sym_import_declaration_repeat1, - [18197] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4047), 1, - sym_identifier, - ACTIONS(4137), 1, - anon_sym_RBRACE, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1998), 1, - sym_field_initializer, - [18216] = 6, + [17079] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(4139), 1, + ACTIONS(3934), 1, sym_identifier, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(1011), 1, + STATE(1045), 1, sym_block, - [18235] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4047), 1, - sym_identifier, - ACTIONS(4137), 1, - anon_sym_RBRACE, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1960), 1, - sym_field_initializer, - [18254] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4047), 1, - sym_identifier, - ACTIONS(4137), 1, - anon_sym_RBRACE, - ACTIONS(4141), 1, - sym__newline, - STATE(1621), 1, - aux_sym_import_declaration_repeat1, - STATE(1960), 1, - sym_field_initializer, - [18273] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3916), 1, - sym_identifier, - ACTIONS(3918), 1, - anon_sym_RBRACE, - ACTIONS(4143), 1, - sym__newline, - STATE(1600), 1, - aux_sym_import_declaration_repeat1, - STATE(2034), 1, - sym_keyed_field_initializer, - [18292] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4047), 1, - sym_identifier, - ACTIONS(4137), 1, - anon_sym_RBRACE, - ACTIONS(4145), 1, - sym__newline, - STATE(1627), 1, - aux_sym_import_declaration_repeat1, - STATE(1974), 1, - sym_field_initializer, - [18311] = 6, + [17098] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(4147), 1, - sym_identifier, - ACTIONS(4149), 1, + ACTIONS(227), 1, sym__newline, + ACTIONS(3936), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, STATE(1153), 1, sym_block, - STATE(1608), 1, - aux_sym_import_declaration_repeat1, - [18330] = 6, + [17117] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3617), 1, - anon_sym_RBRACE, - ACTIONS(4103), 1, - anon_sym_COMMA, - ACTIONS(4105), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, sym__newline, - STATE(1661), 1, + ACTIONS(3938), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1060), 1, + sym_block, + [17136] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_RBRACE, + ACTIONS(3940), 1, + anon_sym_COMMA, + ACTIONS(3942), 1, + sym__newline, + STATE(1652), 1, aux_sym_variant_payload_repeat1, - STATE(1809), 1, + STATE(1884), 1, aux_sym_import_declaration_repeat1, - [18349] = 6, + [17155] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, sym__newline, - ACTIONS(3916), 1, + ACTIONS(3944), 1, sym_identifier, - ACTIONS(4151), 1, - anon_sym_RBRACE, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(2035), 1, - sym_keyed_field_initializer, - [18368] = 6, + STATE(1136), 1, + sym_block, + [17174] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4153), 1, - sym_identifier, - ACTIONS(4156), 1, - anon_sym_RBRACE, - ACTIONS(4158), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, sym__newline, - STATE(1616), 1, - aux_sym_enum_body_repeat1, - STATE(1821), 1, - sym_enum_member, - [18387] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3916), 1, + ACTIONS(3946), 1, sym_identifier, - ACTIONS(3918), 1, - anon_sym_RBRACE, - ACTIONS(4161), 1, - sym__newline, - STATE(1562), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(1951), 1, - sym_keyed_field_initializer, - [18406] = 6, + STATE(1062), 1, + sym_block, + [17193] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3742), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3948), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1103), 1, + sym_block, + [17212] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3896), 1, + sym_identifier, + ACTIONS(3950), 1, + anon_sym_RBRACE, + ACTIONS(3952), 1, + sym__newline, + STATE(1538), 1, + aux_sym_import_declaration_repeat1, + STATE(2005), 1, + sym_field_initializer, + [17231] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3950), 1, + anon_sym_RBRACE, + ACTIONS(3954), 1, + anon_sym_COMMA, + ACTIONS(3956), 1, + sym__newline, + STATE(1541), 1, + aux_sym_initializer_list_repeat1, + STATE(1667), 1, + aux_sym_import_declaration_repeat1, + [17250] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3950), 1, + anon_sym_RBRACE, + ACTIONS(3954), 1, + anon_sym_COMMA, + ACTIONS(3956), 1, + sym__newline, + STATE(1542), 1, + aux_sym_initializer_list_repeat1, + STATE(1667), 1, + aux_sym_import_declaration_repeat1, + [17269] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3958), 1, anon_sym_RPAREN, - ACTIONS(4067), 1, + ACTIONS(3960), 1, anon_sym_COMMA, - ACTIONS(4069), 1, + ACTIONS(3963), 1, sym__newline, - STATE(1628), 1, + STATE(1559), 1, aux_sym_parameter_list_repeat1, - STATE(1845), 1, + STATE(2027), 1, aux_sym_import_declaration_repeat1, - [18425] = 6, + [17288] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(4163), 1, + ACTIONS(3966), 1, sym_identifier, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(1020), 1, + STATE(1048), 1, sym_block, - [18444] = 6, + [17307] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4165), 1, + ACTIONS(3968), 1, sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1025), 1, + ACTIONS(3970), 1, + sym__newline, + STATE(1180), 1, sym_block, - [18463] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4047), 1, - sym_identifier, - ACTIONS(4167), 1, - anon_sym_RBRACE, - STATE(680), 1, + STATE(1600), 1, aux_sym_import_declaration_repeat1, - STATE(1998), 1, - sym_field_initializer, - [18482] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4171), 1, - anon_sym_EQ, - ACTIONS(4169), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, - sym__newline, - [18495] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4173), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1027), 1, - sym_block, - [18514] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4175), 1, - anon_sym_RPAREN, - ACTIONS(4177), 1, - anon_sym_COMMA, - ACTIONS(4180), 1, - sym__newline, - STATE(1624), 1, - aux_sym_parameter_list_repeat1, - STATE(2029), 1, - aux_sym_import_declaration_repeat1, - [18533] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4183), 1, - sym_identifier, - ACTIONS(4185), 1, - sym__newline, - STATE(1028), 1, - sym_block, - STATE(1555), 1, - aux_sym_import_declaration_repeat1, - [18552] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4047), 1, - sym_identifier, - ACTIONS(4187), 1, - anon_sym_RBRACE, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1960), 1, - sym_field_initializer, - [18571] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4047), 1, - sym_identifier, - ACTIONS(4167), 1, - anon_sym_RBRACE, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1960), 1, - sym_field_initializer, - [18590] = 6, + [17326] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3760), 1, anon_sym_RPAREN, - ACTIONS(4189), 1, + ACTIONS(3972), 1, anon_sym_COMMA, - ACTIONS(4191), 1, + ACTIONS(3974), 1, sym__newline, - STATE(1624), 1, + STATE(1559), 1, aux_sym_parameter_list_repeat1, - STATE(1912), 1, + STATE(1741), 1, aux_sym_import_declaration_repeat1, - [18609] = 6, + [17345] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4047), 1, - sym_identifier, - ACTIONS(4187), 1, - anon_sym_RBRACE, - ACTIONS(4193), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, sym__newline, - STATE(1607), 1, + ACTIONS(3976), 1, + sym_identifier, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(1960), 1, + STATE(1182), 1, + sym_block, + [17364] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3978), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1184), 1, + sym_block, + [17383] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3896), 1, + sym_identifier, + ACTIONS(3980), 1, + anon_sym_RBRACE, + ACTIONS(3982), 1, + sym__newline, + STATE(1585), 1, sym_field_initializer, - [18628] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4047), 1, - sym_identifier, - ACTIONS(4187), 1, - anon_sym_RBRACE, - ACTIONS(4195), 1, - sym__newline, - STATE(1609), 1, + STATE(1586), 1, aux_sym_import_declaration_repeat1, - STATE(1974), 1, - sym_field_initializer, - [18647] = 6, + [17402] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4197), 1, + ACTIONS(3984), 1, sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1215), 1, + ACTIONS(3986), 1, + sym__newline, + STATE(1185), 1, sym_block, - [18666] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_COMMA, - ACTIONS(4202), 1, - anon_sym_RBRACE, - ACTIONS(4204), 1, - sym__newline, - STATE(1632), 1, - aux_sym_initializer_list_repeat1, - STATE(1962), 1, + STATE(1604), 1, aux_sym_import_declaration_repeat1, - [18685] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4187), 1, - anon_sym_RBRACE, - ACTIONS(4207), 1, - anon_sym_COMMA, - ACTIONS(4209), 1, - sym__newline, - STATE(1632), 1, - aux_sym_initializer_list_repeat1, - STATE(1830), 1, - aux_sym_import_declaration_repeat1, - [18704] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4211), 1, - sym_identifier, - ACTIONS(4213), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, - sym__newline, - STATE(1635), 1, - aux_sym_enum_body_repeat1, - STATE(1821), 1, - sym_enum_member, - [18723] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4211), 1, - sym_identifier, - ACTIONS(4217), 1, - anon_sym_RBRACE, - ACTIONS(4219), 1, - sym__newline, - STATE(1616), 1, - aux_sym_enum_body_repeat1, - STATE(1821), 1, - sym_enum_member, - [18742] = 6, + [17421] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4221), 1, + ACTIONS(3988), 1, sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1034), 1, + ACTIONS(3990), 1, + sym__newline, + STATE(1188), 1, sym_block, - [18761] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3916), 1, - sym_identifier, - ACTIONS(3999), 1, - anon_sym_RBRACE, - ACTIONS(4223), 1, - sym__newline, - STATE(1615), 1, + STATE(1605), 1, aux_sym_import_declaration_repeat1, - STATE(2034), 1, - sym_keyed_field_initializer, - [18780] = 6, + [17440] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(3047), 1, + sym_identifier, + ACTIONS(3049), 1, anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4225), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1039), 1, - sym_block, - [18799] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3991), 1, - sym_identifier, - ACTIONS(4227), 1, - anon_sym_RBRACE, - ACTIONS(4229), 1, - sym__newline, - STATE(1566), 1, - aux_sym_record_body_repeat1, - STATE(1825), 1, - sym_record_field, - [18818] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3031), 1, - sym_identifier, - ACTIONS(3033), 1, - anon_sym_LBRACE, - ACTIONS(4231), 1, + ACTIONS(3992), 1, anon_sym_else, - ACTIONS(4233), 1, + ACTIONS(3994), 1, sym__newline, - STATE(2039), 1, + STATE(1958), 1, aux_sym_import_declaration_repeat1, - [18837] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4047), 1, - sym_identifier, - ACTIONS(4167), 1, - anon_sym_RBRACE, - ACTIONS(4236), 1, - sym__newline, - STATE(1643), 1, - aux_sym_import_declaration_repeat1, - STATE(1960), 1, - sym_field_initializer, - [18856] = 6, + [17459] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(4238), 1, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3997), 1, sym_identifier, - ACTIONS(4240), 1, - sym__newline, - STATE(1052), 1, - sym_block, - STATE(1581), 1, - aux_sym_import_declaration_repeat1, - [18875] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4047), 1, - sym_identifier, - ACTIONS(4242), 1, - anon_sym_RBRACE, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1998), 1, - sym_field_initializer, - [18894] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4244), 1, - anon_sym_BANG, - ACTIONS(4246), 1, - sym__newline, - STATE(525), 1, - sym_block, - STATE(1908), 1, - aux_sym_import_declaration_repeat1, - [18913] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4248), 1, - sym_identifier, - ACTIONS(4250), 1, - sym__newline, - STATE(1066), 1, - sym_block, - STATE(1584), 1, - aux_sym_import_declaration_repeat1, - [18932] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4252), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1160), 1, - sym_block, - [18951] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4254), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1050), 1, - sym_block, - [18970] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4256), 1, - sym_identifier, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, STATE(1189), 1, sym_block, - [18989] = 6, + [17478] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4258), 1, - sym_identifier, - ACTIONS(4260), 1, - sym__newline, - STATE(1192), 1, - sym_block, - STATE(1563), 1, - aux_sym_import_declaration_repeat1, - [19008] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4262), 1, - anon_sym_COMMA, - ACTIONS(4264), 1, - anon_sym_RBRACE, - ACTIONS(4266), 1, - sym__newline, - STATE(1604), 1, - aux_sym_initializer_list_repeat1, - STATE(1817), 1, - aux_sym_import_declaration_repeat1, - [19027] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4268), 1, - sym_identifier, - ACTIONS(4270), 1, - sym__newline, - STATE(1202), 1, - sym_block, - STATE(1565), 1, - aux_sym_import_declaration_repeat1, - [19046] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4047), 1, - sym_identifier, - ACTIONS(4264), 1, - anon_sym_RBRACE, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1605), 1, - sym_field_initializer, - [19065] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - sym__newline, - STATE(1206), 1, - sym_block, - STATE(1571), 1, - aux_sym_import_declaration_repeat1, - [19084] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, - anon_sym_RPAREN, - ACTIONS(4276), 1, - anon_sym_COMMA, - ACTIONS(4278), 1, - sym__newline, - STATE(1529), 1, - aux_sym_match_arm_repeat1, - STATE(1707), 1, - aux_sym_import_declaration_repeat1, - [19103] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4280), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1208), 1, - sym_block, - [19122] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4282), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1210), 1, - sym_block, - [19141] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4284), 1, - sym_identifier, - ACTIONS(4286), 1, - sym__newline, - STATE(1211), 1, - sym_block, - STATE(1592), 1, - aux_sym_import_declaration_repeat1, - [19160] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4288), 1, + ACTIONS(3999), 1, anon_sym_LPAREN, - ACTIONS(4290), 1, + ACTIONS(4001), 1, anon_sym_LBRACE, - ACTIONS(4292), 1, + ACTIONS(4003), 1, sym__newline, - STATE(421), 1, - sym_record_body, - STATE(1813), 1, + STATE(437), 1, + sym_enum_body, + STATE(1870), 1, aux_sym_import_declaration_repeat1, - [19179] = 6, + [17497] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(4294), 1, + ACTIONS(4005), 1, sym_identifier, - ACTIONS(4296), 1, + ACTIONS(4007), 1, sym__newline, - STATE(1213), 1, + STATE(1190), 1, + sym_block, + STATE(1610), 1, + aux_sym_import_declaration_repeat1, + [17516] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3056), 1, + sym_identifier, + ACTIONS(3058), 1, + anon_sym_LBRACE, + ACTIONS(4009), 1, + anon_sym_else, + ACTIONS(4011), 1, + sym__newline, + STATE(1973), 1, + aux_sym_import_declaration_repeat1, + [17535] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + sym_identifier, + ACTIONS(4016), 1, + anon_sym_RBRACE, + ACTIONS(4018), 1, + sym__newline, + STATE(1595), 1, + aux_sym_record_body_repeat1, + STATE(1750), 1, + sym_record_field, + [17554] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3065), 1, + sym_identifier, + ACTIONS(3067), 1, + anon_sym_LBRACE, + ACTIONS(4020), 1, + anon_sym_else, + ACTIONS(4022), 1, + sym__newline, + STATE(1978), 1, + aux_sym_import_declaration_repeat1, + [17573] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4025), 1, + sym_identifier, + ACTIONS(4027), 1, + anon_sym_RBRACE, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(2004), 1, + sym_keyed_field_initializer, + [17592] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3074), 1, + sym_identifier, + ACTIONS(3076), 1, + anon_sym_LBRACE, + ACTIONS(4029), 1, + anon_sym_else, + ACTIONS(4031), 1, + sym__newline, + STATE(1991), 1, + aux_sym_import_declaration_repeat1, + [17611] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3083), 1, + sym_identifier, + ACTIONS(3085), 1, + anon_sym_LBRACE, + ACTIONS(4034), 1, + anon_sym_else, + ACTIONS(4036), 1, + sym__newline, + STATE(1994), 1, + aux_sym_import_declaration_repeat1, + [17630] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3037), 1, + sym_identifier, + ACTIONS(3039), 1, + anon_sym_LBRACE, + ACTIONS(4039), 1, + anon_sym_else, + ACTIONS(4041), 1, + sym__newline, + STATE(2000), 1, + aux_sym_import_declaration_repeat1, + [17649] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4044), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + sym__newline, + STATE(511), 1, + sym_block, + STATE(1820), 1, + aux_sym_import_declaration_repeat1, + [17668] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4025), 1, + sym_identifier, + ACTIONS(4048), 1, + anon_sym_RBRACE, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1938), 1, + sym_keyed_field_initializer, + [17687] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + sym_identifier, + ACTIONS(4048), 1, + anon_sym_RBRACE, + ACTIONS(4050), 1, + sym__newline, + STATE(1612), 1, + aux_sym_import_declaration_repeat1, + STATE(1938), 1, + sym_keyed_field_initializer, + [17706] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + sym_identifier, + ACTIONS(4048), 1, + anon_sym_RBRACE, + ACTIONS(4052), 1, + sym__newline, + STATE(1613), 1, + aux_sym_import_declaration_repeat1, + STATE(2013), 1, + sym_keyed_field_initializer, + [17725] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4054), 1, + anon_sym_COMMA, + ACTIONS(4057), 1, + anon_sym_RBRACE, + ACTIONS(4059), 1, + sym__newline, + STATE(1583), 1, + aux_sym_variant_payload_repeat1, + STATE(1941), 1, + aux_sym_import_declaration_repeat1, + [17744] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4048), 1, + anon_sym_RBRACE, + ACTIONS(4062), 1, + anon_sym_COMMA, + ACTIONS(4064), 1, + sym__newline, + STATE(1583), 1, + aux_sym_variant_payload_repeat1, + STATE(1819), 1, + aux_sym_import_declaration_repeat1, + [17763] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4066), 1, + anon_sym_COMMA, + ACTIONS(4068), 1, + anon_sym_RBRACE, + ACTIONS(4070), 1, + sym__newline, + STATE(1557), 1, + aux_sym_initializer_list_repeat1, + STATE(1671), 1, + aux_sym_import_declaration_repeat1, + [17782] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3896), 1, + sym_identifier, + ACTIONS(4068), 1, + anon_sym_RBRACE, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1558), 1, + sym_field_initializer, + [17801] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1857), 1, + anon_sym_RPAREN, + ACTIONS(4072), 1, + anon_sym_COMMA, + ACTIONS(4074), 1, + sym__newline, + STATE(1528), 1, + aux_sym_match_arm_repeat1, + STATE(1859), 1, + aux_sym_import_declaration_repeat1, + [17820] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3780), 1, + anon_sym_RPAREN, + ACTIONS(4076), 1, + anon_sym_COMMA, + ACTIONS(4078), 1, + sym__newline, + STATE(1559), 1, + aux_sym_parameter_list_repeat1, + STATE(1682), 1, + aux_sym_import_declaration_repeat1, + [17839] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3896), 1, + sym_identifier, + ACTIONS(4080), 1, + anon_sym_RBRACE, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1949), 1, + sym_field_initializer, + [17858] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3896), 1, + sym_identifier, + ACTIONS(4080), 1, + anon_sym_RBRACE, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1934), 1, + sym_field_initializer, + [17877] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3896), 1, + sym_identifier, + ACTIONS(4080), 1, + anon_sym_RBRACE, + ACTIONS(4082), 1, + sym__newline, + STATE(1617), 1, + aux_sym_import_declaration_repeat1, + STATE(1934), 1, + sym_field_initializer, + [17896] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3896), 1, + sym_identifier, + ACTIONS(4080), 1, + anon_sym_RBRACE, + ACTIONS(4084), 1, + sym__newline, + STATE(1618), 1, + aux_sym_import_declaration_repeat1, + STATE(2005), 1, + sym_field_initializer, + [17915] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4086), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1069), 1, + sym_block, + [17934] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4088), 1, + sym_identifier, + ACTIONS(4090), 1, + sym__newline, + STATE(1041), 1, sym_block, STATE(1593), 1, aux_sym_import_declaration_repeat1, - [19198] = 6, + [17953] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4298), 1, + ACTIONS(4014), 1, sym_identifier, - ACTIONS(4300), 1, - sym__newline, - STATE(1214), 1, - sym_block, - STATE(1594), 1, - aux_sym_import_declaration_repeat1, - [19217] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4107), 1, + ACTIONS(4092), 1, anon_sym_RBRACE, - ACTIONS(4302), 1, - anon_sym_COMMA, - ACTIONS(4304), 1, + ACTIONS(4094), 1, sym__newline, - STATE(1599), 1, - aux_sym_variant_payload_repeat1, - STATE(1803), 1, - aux_sym_import_declaration_repeat1, - [19236] = 5, + STATE(1621), 1, + aux_sym_record_body_repeat1, + STATE(1750), 1, + sym_record_field, + [17972] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4306), 1, + ACTIONS(3780), 1, + anon_sym_RPAREN, + ACTIONS(4076), 1, anon_sym_COMMA, - ACTIONS(4308), 1, - anon_sym_RBRACK, - STATE(680), 1, + ACTIONS(4078), 1, + sym__newline, + STATE(1562), 1, + aux_sym_parameter_list_repeat1, + STATE(1682), 1, aux_sym_import_declaration_repeat1, - [19252] = 5, + [17991] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1058), 1, - sym_block, - [19268] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4310), 1, - sym__newline, - STATE(1059), 1, - sym_block, - STATE(1714), 1, - aux_sym_import_declaration_repeat1, - [19284] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4306), 1, - anon_sym_COMMA, - ACTIONS(4312), 1, - anon_sym_RBRACK, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [19300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4314), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4316), 2, - anon_sym_import, + ACTIONS(4096), 1, sym_identifier, - [19312] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1060), 1, - sym_block, - [19328] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1138), 1, - sym_block, - [19344] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1061), 1, - sym_block, - [19360] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4318), 1, - sym__newline, - STATE(1063), 1, - sym_block, - STATE(1720), 1, - aux_sym_import_declaration_repeat1, - [19376] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4320), 1, - sym__newline, - STATE(1064), 1, - sym_block, - STATE(1722), 1, - aux_sym_import_declaration_repeat1, - [19392] = 4, - ACTIONS(4322), 1, - anon_sym_DQUOTE, - ACTIONS(4327), 1, - sym_comment, - STATE(1672), 1, - aux_sym_string_repeat1, - ACTIONS(4324), 2, - sym_string_content, - sym_escape_sequence, - [19406] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1065), 1, - sym_block, - [19422] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4329), 1, - sym__newline, - STATE(1139), 1, - sym_block, - STATE(1910), 1, - aux_sym_import_declaration_repeat1, - [19438] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1067), 1, - sym_block, - [19454] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4331), 1, - sym__newline, - STATE(1068), 1, - sym_block, - STATE(1727), 1, - aux_sym_import_declaration_repeat1, - [19470] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4333), 1, - sym__newline, - STATE(1071), 1, - sym_block, - STATE(1729), 1, - aux_sym_import_declaration_repeat1, - [19486] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4290), 1, - anon_sym_LBRACE, - ACTIONS(4335), 1, - sym__newline, - STATE(458), 1, - sym_record_body, - STATE(1724), 1, - aux_sym_import_declaration_repeat1, - [19502] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, STATE(1072), 1, sym_block, - [19518] = 5, + [18010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4337), 1, - sym__newline, - STATE(1073), 1, - sym_block, - STATE(1734), 1, - aux_sym_import_declaration_repeat1, - [19534] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4306), 1, + ACTIONS(4100), 1, + anon_sym_EQ, + ACTIONS(4098), 4, anon_sym_COMMA, - ACTIONS(4339), 1, - anon_sym_RBRACK, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [19550] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4341), 1, - sym__newline, - STATE(1074), 1, - sym_block, - STATE(1736), 1, - aux_sym_import_declaration_repeat1, - [19566] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4343), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4345), 2, - anon_sym_import, + anon_sym_RBRACE, sym_identifier, - [19578] = 5, + sym__newline, + [18023] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4102), 1, + sym_identifier, + ACTIONS(4104), 1, + anon_sym_RBRACE, + ACTIONS(4106), 1, + sym__newline, + STATE(1624), 1, + aux_sym_enum_body_repeat1, + STATE(1780), 1, + sym_enum_member, + [18042] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - STATE(680), 1, + ACTIONS(4108), 1, + sym_identifier, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(1196), 1, - sym_block, - [19594] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(1909), 1, - anon_sym_RBRACK, - ACTIONS(4347), 1, - anon_sym_COMMA, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [19610] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4349), 1, - sym__newline, STATE(1197), 1, sym_block, - STATE(1826), 1, - aux_sym_import_declaration_repeat1, - [19626] = 5, + [18061] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(4110), 1, + sym_identifier, + ACTIONS(4112), 1, sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1076), 1, + STATE(1033), 1, sym_block, - [19642] = 5, + STATE(1554), 1, + aux_sym_import_declaration_repeat1, + [18080] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(4351), 1, + ACTIONS(4114), 1, + sym_identifier, + ACTIONS(4116), 1, + sym__newline, + STATE(1201), 1, + sym_block, + STATE(1628), 1, + aux_sym_import_declaration_repeat1, + [18099] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4118), 1, + sym_identifier, + ACTIONS(4120), 1, + sym__newline, + STATE(1203), 1, + sym_block, + STATE(1631), 1, + aux_sym_import_declaration_repeat1, + [18118] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4122), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1205), 1, + sym_block, + [18137] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4124), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1207), 1, + sym_block, + [18156] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4126), 1, + sym_identifier, + ACTIONS(4128), 1, + sym__newline, + STATE(1208), 1, + sym_block, + STATE(1638), 1, + aux_sym_import_declaration_repeat1, + [18175] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4130), 1, + sym_identifier, + ACTIONS(4132), 1, sym__newline, STATE(1077), 1, sym_block, - STATE(1744), 1, + STATE(1555), 1, aux_sym_import_declaration_repeat1, - [19658] = 5, + [18194] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4134), 1, + sym_identifier, + ACTIONS(4136), 1, + sym__newline, + STATE(1210), 1, + sym_block, + STATE(1640), 1, + aux_sym_import_declaration_repeat1, + [18213] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4138), 1, + sym_identifier, + ACTIONS(4140), 1, + sym__newline, + STATE(1211), 1, + sym_block, + STATE(1642), 1, + aux_sym_import_declaration_repeat1, + [18232] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4142), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1212), 1, + sym_block, + [18251] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + anon_sym_RPAREN, + ACTIONS(3533), 1, + anon_sym_COMMA, + ACTIONS(3535), 1, + sym__newline, + STATE(1528), 1, + aux_sym_match_arm_repeat1, + STATE(1729), 1, + aux_sym_import_declaration_repeat1, + [18270] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4025), 1, + sym_identifier, + ACTIONS(4144), 1, + anon_sym_RBRACE, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(2004), 1, + sym_keyed_field_initializer, + [18289] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4025), 1, + sym_identifier, + ACTIONS(4144), 1, + anon_sym_RBRACE, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1938), 1, + sym_keyed_field_initializer, + [18308] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + sym_identifier, + ACTIONS(4144), 1, + anon_sym_RBRACE, + ACTIONS(4146), 1, + sym__newline, + STATE(1649), 1, + aux_sym_import_declaration_repeat1, + STATE(1938), 1, + sym_keyed_field_initializer, + [18327] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + sym_identifier, + ACTIONS(4144), 1, + anon_sym_RBRACE, + ACTIONS(4148), 1, + sym__newline, + STATE(1650), 1, + aux_sym_import_declaration_repeat1, + STATE(2013), 1, + sym_keyed_field_initializer, + [18346] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4150), 1, + anon_sym_BANG, + ACTIONS(4152), 1, + sym__newline, + STATE(510), 1, + sym_block, + STATE(1746), 1, + aux_sym_import_declaration_repeat1, + [18365] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3896), 1, + sym_identifier, + ACTIONS(4154), 1, + anon_sym_RBRACE, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1949), 1, + sym_field_initializer, + [18384] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3896), 1, + sym_identifier, + ACTIONS(4154), 1, + anon_sym_RBRACE, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1934), 1, + sym_field_initializer, + [18403] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3896), 1, + sym_identifier, + ACTIONS(4154), 1, + anon_sym_RBRACE, + ACTIONS(4156), 1, + sym__newline, + STATE(1653), 1, + aux_sym_import_declaration_repeat1, + STATE(1934), 1, + sym_field_initializer, + [18422] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_LPAREN, + ACTIONS(4160), 1, + anon_sym_LBRACE, + ACTIONS(4162), 1, + sym__newline, + STATE(436), 1, + sym_record_body, + STATE(1827), 1, + aux_sym_import_declaration_repeat1, + [18441] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4164), 1, + sym_identifier, + ACTIONS(4167), 1, + anon_sym_RBRACE, + ACTIONS(4169), 1, + sym__newline, + STATE(1621), 1, + aux_sym_record_body_repeat1, + STATE(1750), 1, + sym_record_field, + [18460] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4172), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1166), 1, + sym_block, + [18479] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4174), 1, + sym_identifier, + ACTIONS(4176), 1, + sym__newline, + STATE(1167), 1, + sym_block, + STATE(1563), 1, + aux_sym_import_declaration_repeat1, + [18498] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + sym_identifier, + ACTIONS(4181), 1, + anon_sym_RBRACE, + ACTIONS(4183), 1, + sym__newline, + STATE(1624), 1, + aux_sym_enum_body_repeat1, + STATE(1780), 1, + sym_enum_member, + [18517] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4186), 1, + sym_identifier, + ACTIONS(4188), 1, + sym__newline, + STATE(1170), 1, + sym_block, + STATE(1564), 1, + aux_sym_import_declaration_repeat1, + [18536] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4190), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1222), 1, + sym_block, + [18555] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4192), 1, + sym_identifier, + ACTIONS(4194), 1, + sym__newline, + STATE(1223), 1, + sym_block, + STATE(1656), 1, + aux_sym_import_declaration_repeat1, + [18574] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4196), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1225), 1, + sym_block, + [18593] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4198), 1, + sym_identifier, + ACTIONS(4200), 1, + sym__newline, + STATE(1226), 1, + sym_block, + STATE(1657), 1, + aux_sym_import_declaration_repeat1, + [18612] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3047), 1, + sym_identifier, + ACTIONS(3049), 1, + anon_sym_LBRACE, + ACTIONS(4202), 1, + anon_sym_else, + ACTIONS(4205), 1, + sym__newline, + STATE(1985), 1, + aux_sym_import_declaration_repeat1, + [18631] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4208), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1229), 1, + sym_block, + [18650] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4210), 1, + sym_identifier, + ACTIONS(4212), 1, + sym__newline, + STATE(1230), 1, + sym_block, + STATE(1659), 1, + aux_sym_import_declaration_repeat1, + [18669] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4214), 1, + sym_identifier, + ACTIONS(4216), 1, + sym__newline, + STATE(1172), 1, + sym_block, + STATE(1569), 1, + aux_sym_import_declaration_repeat1, + [18688] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4218), 1, + sym_identifier, + ACTIONS(4220), 1, + sym__newline, + STATE(1233), 1, + sym_block, + STATE(1661), 1, + aux_sym_import_declaration_repeat1, + [18707] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4222), 1, + sym_identifier, + ACTIONS(4224), 1, + sym__newline, + STATE(1024), 1, + sym_block, + STATE(1546), 1, + aux_sym_import_declaration_repeat1, + [18726] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3056), 1, + sym_identifier, + ACTIONS(3058), 1, + anon_sym_LBRACE, + ACTIONS(4226), 1, + anon_sym_else, + ACTIONS(4229), 1, + sym__newline, + STATE(1986), 1, + aux_sym_import_declaration_repeat1, + [18745] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3065), 1, + sym_identifier, + ACTIONS(3067), 1, + anon_sym_LBRACE, + ACTIONS(4232), 1, + anon_sym_else, + ACTIONS(4235), 1, + sym__newline, + STATE(1987), 1, + aux_sym_import_declaration_repeat1, + [18764] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4238), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1011), 1, + sym_block, + [18783] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3074), 1, + sym_identifier, + ACTIONS(3076), 1, + anon_sym_LBRACE, + ACTIONS(4240), 1, + anon_sym_else, + ACTIONS(4243), 1, + sym__newline, + STATE(2049), 1, + aux_sym_import_declaration_repeat1, + [18802] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4246), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1014), 1, + sym_block, + [18821] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3083), 1, + sym_identifier, + ACTIONS(3085), 1, + anon_sym_LBRACE, + ACTIONS(4248), 1, + anon_sym_else, + ACTIONS(4251), 1, + sym__newline, + STATE(1988), 1, + aux_sym_import_declaration_repeat1, + [18840] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4254), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1015), 1, + sym_block, + [18859] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4256), 1, + sym_identifier, + ACTIONS(4258), 1, + sym__newline, + STATE(1016), 1, + sym_block, + STATE(1549), 1, + aux_sym_import_declaration_repeat1, + [18878] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3037), 1, + sym_identifier, + ACTIONS(3039), 1, + anon_sym_LBRACE, + ACTIONS(4260), 1, + anon_sym_else, + ACTIONS(4263), 1, + sym__newline, + STATE(1989), 1, + aux_sym_import_declaration_repeat1, + [18897] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4266), 1, + sym_identifier, + ACTIONS(4268), 1, + sym__newline, + STATE(1043), 1, + sym_block, + STATE(1597), 1, + aux_sym_import_declaration_repeat1, + [18916] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4270), 1, + sym_identifier, + ACTIONS(4272), 1, + sym__newline, + STATE(1018), 1, + sym_block, + STATE(1560), 1, + aux_sym_import_declaration_repeat1, + [18935] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4102), 1, + sym_identifier, + ACTIONS(4274), 1, + anon_sym_RBRACE, + ACTIONS(4276), 1, + sym__newline, + STATE(1599), 1, + aux_sym_enum_body_repeat1, + STATE(1780), 1, + sym_enum_member, + [18954] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3657), 1, + anon_sym_RBRACE, + ACTIONS(4025), 1, + sym_identifier, + ACTIONS(4278), 1, + sym__newline, + STATE(1580), 1, + aux_sym_import_declaration_repeat1, + STATE(2013), 1, + sym_keyed_field_initializer, + [18973] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4025), 1, + sym_identifier, + ACTIONS(4280), 1, + anon_sym_RBRACE, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(2004), 1, + sym_keyed_field_initializer, + [18992] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4025), 1, + sym_identifier, + ACTIONS(4280), 1, + anon_sym_RBRACE, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1938), 1, + sym_keyed_field_initializer, + [19011] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + sym_identifier, + ACTIONS(4280), 1, + anon_sym_RBRACE, + ACTIONS(4282), 1, + sym__newline, + STATE(1575), 1, + aux_sym_import_declaration_repeat1, + STATE(1938), 1, + sym_keyed_field_initializer, + [19030] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3657), 1, + anon_sym_RBRACE, + ACTIONS(4284), 1, + anon_sym_COMMA, + ACTIONS(4286), 1, + sym__newline, + STATE(1583), 1, + aux_sym_variant_payload_repeat1, + STATE(1727), 1, + aux_sym_import_declaration_repeat1, + [19049] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3896), 1, + sym_identifier, + ACTIONS(4288), 1, + anon_sym_RBRACE, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1949), 1, + sym_field_initializer, + [19068] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3657), 1, + anon_sym_RBRACE, + ACTIONS(4284), 1, + anon_sym_COMMA, + ACTIONS(4286), 1, + sym__newline, + STATE(1584), 1, + aux_sym_variant_payload_repeat1, + STATE(1727), 1, + aux_sym_import_declaration_repeat1, + [19087] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, + anon_sym_RBRACK, + ACTIONS(3461), 1, + anon_sym_COMMA, + ACTIONS(4290), 1, + sym__newline, + STATE(1528), 1, + aux_sym_match_arm_repeat1, + STATE(1698), 1, + aux_sym_import_declaration_repeat1, + [19106] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4292), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1023), 1, + sym_block, + [19125] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4294), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1025), 1, + sym_block, + [19144] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4296), 1, + sym_identifier, + ACTIONS(4298), 1, + sym__newline, + STATE(1026), 1, + sym_block, + STATE(1543), 1, + aux_sym_import_declaration_repeat1, + [19163] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4300), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1029), 1, + sym_block, + [19182] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4302), 1, + sym_identifier, + ACTIONS(4304), 1, + sym__newline, + STATE(1030), 1, + sym_block, + STATE(1551), 1, + aux_sym_import_declaration_repeat1, + [19201] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4306), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1032), 1, + sym_block, + [19220] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4308), 1, + sym_identifier, + ACTIONS(4310), 1, + sym__newline, + STATE(1198), 1, + sym_block, + STATE(1626), 1, + aux_sym_import_declaration_repeat1, + [19239] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(513), 1, + sym_block, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [19255] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4312), 1, + sym__newline, + STATE(1035), 1, + sym_block, + STATE(1679), 1, + aux_sym_import_declaration_repeat1, + [19271] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4314), 2, + sym_sink, + sym_identifier, + [19285] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_DQUOTE, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(1824), 1, + STATE(1719), 1, sym_string, - [19674] = 5, + [19301] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(4347), 1, - anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_RBRACK, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [19690] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1078), 1, - sym_block, - [19706] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4355), 1, - sym__newline, - STATE(1079), 1, - sym_block, - STATE(1749), 1, - aux_sym_import_declaration_repeat1, - [19722] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4347), 1, - anon_sym_COMMA, - ACTIONS(4357), 1, - anon_sym_RBRACK, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [19738] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4359), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4361), 2, - anon_sym_import, - sym_identifier, - [19750] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4363), 1, - sym__newline, - STATE(1127), 1, - sym_block, - STATE(1816), 1, - aux_sym_import_declaration_repeat1, - [19766] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1080), 1, - sym_block, - [19782] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4365), 1, - sym__newline, - STATE(1081), 1, - sym_block, - STATE(1755), 1, - aux_sym_import_declaration_repeat1, - [19798] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4369), 2, - anon_sym_import, - sym_identifier, - [19810] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1082), 1, - sym_block, - [19826] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(1841), 1, - anon_sym_RBRACK, - ACTIONS(4371), 1, - anon_sym_COMMA, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [19842] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1083), 1, - sym_block, - [19858] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4373), 1, - sym__newline, - STATE(1084), 1, - sym_block, - STATE(1759), 1, - aux_sym_import_declaration_repeat1, - [19874] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1200), 1, - sym_block, - [19890] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4375), 1, - sym__newline, - STATE(1229), 1, - sym_block, - STATE(1834), 1, - aux_sym_import_declaration_repeat1, - [19906] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4377), 1, - sym__newline, - STATE(1230), 1, - sym_block, - STATE(1836), 1, - aux_sym_import_declaration_repeat1, - [19922] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4306), 1, - anon_sym_COMMA, - ACTIONS(4379), 1, - anon_sym_RBRACK, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [19938] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(1913), 1, - anon_sym_RPAREN, - ACTIONS(4381), 1, - anon_sym_COMMA, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [19954] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1093), 1, - sym_block, - [19970] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4347), 1, - anon_sym_COMMA, - ACTIONS(4383), 1, - anon_sym_RBRACK, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [19986] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4385), 1, - sym__newline, - STATE(1096), 1, - sym_block, - STATE(1763), 1, - aux_sym_import_declaration_repeat1, - [20002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4387), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4389), 2, - anon_sym_import, - sym_identifier, - [20014] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(468), 1, - sym_block, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [20030] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4391), 1, - sym__newline, - STATE(469), 1, - sym_block, - STATE(1860), 1, - aux_sym_import_declaration_repeat1, - [20046] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1098), 1, - sym_block, - [20062] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3892), 1, - anon_sym_LBRACE, - ACTIONS(4393), 1, - sym__newline, - STATE(440), 1, - sym_enum_body, - STATE(1772), 1, - aux_sym_import_declaration_repeat1, - [20078] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4290), 1, - anon_sym_LBRACE, - STATE(462), 1, - sym_record_body, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [20094] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4395), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4397), 2, - anon_sym_import, - sym_identifier, - [20106] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1231), 1, - sym_block, - [20122] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4399), 1, - sym__newline, - STATE(1141), 1, - sym_block, - STATE(1684), 1, - aux_sym_import_declaration_repeat1, - [20138] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1099), 1, - sym_block, - [20154] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4401), 4, - anon_sym_COMMA, + ACTIONS(3898), 1, anon_sym_RBRACE, - sym_identifier, - sym__newline, - [20164] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, + ACTIONS(4316), 1, + anon_sym_COMMA, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(1100), 1, - sym_block, - [20180] = 5, + [19317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4403), 1, - sym__newline, - STATE(1101), 1, - sym_block, - STATE(1766), 1, - aux_sym_import_declaration_repeat1, - [20196] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4290), 1, - anon_sym_LBRACE, - STATE(435), 1, - sym_record_body, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [20212] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4405), 1, - sym__newline, - STATE(1037), 1, - sym_block, - STATE(1844), 1, - aux_sym_import_declaration_repeat1, - [20228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4407), 2, + ACTIONS(4318), 2, ts_builtin_sym_end, sym__newline, - ACTIONS(4409), 2, + ACTIONS(4320), 2, anon_sym_import, sym_identifier, - [20240] = 5, + [19329] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(4322), 1, sym__newline, - STATE(680), 1, + STATE(1775), 1, aux_sym_import_declaration_repeat1, - STATE(1102), 1, - sym_block, - [20256] = 5, + ACTIONS(4314), 2, + sym_sink, + sym_identifier, + [19343] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(4411), 1, + ACTIONS(227), 1, sym__newline, - STATE(1232), 1, - sym_block, - STATE(1858), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [20272] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1103), 1, - sym_block, - [20288] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4413), 1, - sym__newline, STATE(1104), 1, sym_block, - STATE(1767), 1, - aux_sym_import_declaration_repeat1, - [20304] = 5, + [19359] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(4047), 1, - sym_identifier, - STATE(680), 1, + ACTIONS(3950), 1, + anon_sym_RBRACE, + ACTIONS(4324), 1, + anon_sym_COMMA, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(1960), 1, - sym_field_initializer, - [20320] = 5, + [19375] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3033), 1, + ACTIONS(89), 1, + anon_sym_DQUOTE, + ACTIONS(4326), 1, + sym__newline, + STATE(1666), 1, + aux_sym_import_declaration_repeat1, + STATE(1879), 1, + sym_string, + [19391] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4328), 1, + anon_sym_COMMA, + ACTIONS(4330), 1, + anon_sym_RBRACK, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [19407] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3058), 1, anon_sym_RPAREN, - ACTIONS(4415), 1, + ACTIONS(4332), 1, anon_sym_else, - ACTIONS(4417), 1, + ACTIONS(4335), 1, sym__newline, - STATE(2019), 1, + STATE(2043), 1, aux_sym_import_declaration_repeat1, - [20336] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4290), 1, - anon_sym_LBRACE, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1694), 1, - sym_record_body, - [20352] = 5, + [19423] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(4338), 1, sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, STATE(1105), 1, sym_block, - [20368] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4420), 1, - sym__newline, - STATE(1143), 1, - sym_block, - STATE(1703), 1, + STATE(1792), 1, aux_sym_import_declaration_repeat1, - [20384] = 5, + [19439] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3067), 1, + anon_sym_RPAREN, + ACTIONS(4340), 1, + anon_sym_else, + ACTIONS(4343), 1, + sym__newline, + STATE(2044), 1, + aux_sym_import_declaration_repeat1, + [19455] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4346), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4348), 2, + anon_sym_import, + sym_identifier, + [19467] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(4350), 1, sym__newline, - STATE(680), 1, + STATE(1038), 1, + sym_block, + STATE(1699), 1, + aux_sym_import_declaration_repeat1, + [19483] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1064), 1, + sym_block, + [19499] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, aux_sym_import_declaration_repeat1, STATE(1106), 1, sym_block, - [20400] = 5, + [19515] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(4422), 1, + ACTIONS(4352), 1, sym__newline, + STATE(1065), 1, + sym_block, + STATE(1726), 1, + aux_sym_import_declaration_repeat1, + [19531] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3760), 1, + anon_sym_RPAREN, + ACTIONS(4354), 1, + anon_sym_COMMA, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [19547] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3076), 1, + anon_sym_RPAREN, + ACTIONS(4356), 1, + anon_sym_else, + ACTIONS(4359), 1, + sym__newline, + STATE(2045), 1, + aux_sym_import_declaration_repeat1, + [19563] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3085), 1, + anon_sym_RPAREN, + ACTIONS(4362), 1, + anon_sym_else, + ACTIONS(4365), 1, + sym__newline, + STATE(2046), 1, + aux_sym_import_declaration_repeat1, + [19579] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3039), 1, + anon_sym_RPAREN, + ACTIONS(4368), 1, + anon_sym_else, + ACTIONS(4371), 1, + sym__newline, + STATE(2047), 1, + aux_sym_import_declaration_repeat1, + [19595] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4328), 1, + anon_sym_COMMA, + ACTIONS(4374), 1, + anon_sym_RBRACK, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [19611] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4376), 2, + sym_sink, + sym_identifier, + [19625] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4378), 1, + sym__newline, + STATE(1181), 1, + sym_block, + STATE(1795), 1, + aux_sym_import_declaration_repeat1, + [19641] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, STATE(1107), 1, sym_block, - STATE(1769), 1, + [19657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4380), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4382), 2, + anon_sym_import, + sym_identifier, + [19669] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [20416] = 5, + STATE(1040), 1, + sym_block, + [19685] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4384), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4386), 2, + anon_sym_import, + sym_identifier, + [19697] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1108), 1, + sym_block, + [19713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4388), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4390), 2, + anon_sym_import, + sym_identifier, + [19725] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1183), 1, + sym_block, + [19741] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1801), 1, + sym_block, + [19757] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4392), 1, + sym__newline, + STATE(1109), 1, + sym_block, + STATE(1807), 1, + aux_sym_import_declaration_repeat1, + [19773] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(1897), 1, + anon_sym_RBRACK, + ACTIONS(4328), 1, + anon_sym_COMMA, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [19789] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1066), 1, + sym_block, + [19805] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1186), 1, + sym_block, + [19821] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4394), 1, + sym__newline, + STATE(1187), 1, + sym_block, + STATE(1806), 1, + aux_sym_import_declaration_repeat1, + [19837] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4396), 1, + anon_sym_COMMA, + ACTIONS(4398), 1, + anon_sym_RBRACK, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [19853] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4025), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(2004), 1, + sym_keyed_field_initializer, + [19869] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4328), 1, + anon_sym_COMMA, + ACTIONS(4400), 1, + anon_sym_RBRACK, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [19885] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1086), 1, + sym_block, + [19901] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1110), 1, + sym_block, + [19917] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1067), 1, + sym_block, + [19933] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1090), 1, + sym_block, + [19949] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1111), 1, + sym_block, + [19965] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4402), 1, + sym__newline, + STATE(1112), 1, + sym_block, + STATE(1813), 1, + aux_sym_import_declaration_repeat1, + [19981] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4328), 1, + anon_sym_COMMA, + ACTIONS(4404), 1, + anon_sym_RBRACK, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [19997] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4406), 1, + sym__newline, + STATE(1091), 1, + sym_block, + STATE(1715), 1, + aux_sym_import_declaration_repeat1, + [20013] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4408), 1, + sym__newline, + STATE(1092), 1, + sym_block, + STATE(1716), 1, + aux_sym_import_declaration_repeat1, + [20029] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4410), 1, + sym__newline, + STATE(1068), 1, + sym_block, + STATE(1808), 1, + aux_sym_import_declaration_repeat1, + [20045] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1113), 1, + sym_block, + [20061] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1114), 1, + sym_block, + [20077] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1057), 1, + sym_block, + [20093] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4412), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4414), 2, + anon_sym_import, + sym_identifier, + [20105] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4416), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4418), 2, + anon_sym_import, + sym_identifier, + [20117] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1135), 1, + sym_block, + [20133] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4420), 1, + anon_sym_DASH, + STATE(1948), 1, + sym__type_constant, + ACTIONS(4422), 2, + sym_integer, + sym_character, + [20147] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, ACTIONS(4424), 1, sym__newline, - STATE(1109), 1, - sym_block, - STATE(1770), 1, - aux_sym_import_declaration_repeat1, - [20432] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3033), 1, - anon_sym_RPAREN, - ACTIONS(4426), 1, - anon_sym_else, - ACTIONS(4429), 1, - sym__newline, - STATE(2041), 1, - aux_sym_import_declaration_repeat1, - [20448] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3052), 1, - anon_sym_RPAREN, - ACTIONS(4432), 1, - anon_sym_else, - ACTIONS(4434), 1, - sym__newline, - STATE(2032), 1, - aux_sym_import_declaration_repeat1, - [20464] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4437), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4439), 2, - anon_sym_import, - sym_identifier, - [20476] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3077), 1, - anon_sym_RPAREN, - ACTIONS(4441), 1, - anon_sym_else, - ACTIONS(4443), 1, - sym__newline, - STATE(2036), 1, - aux_sym_import_declaration_repeat1, - [20492] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4446), 1, - sym__newline, - STATE(1113), 1, - sym_block, - STATE(1859), 1, - aux_sym_import_declaration_repeat1, - [20508] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1110), 1, - sym_block, - [20524] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3617), 1, - anon_sym_RBRACE, - ACTIONS(4448), 1, - anon_sym_COMMA, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [20540] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4450), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4452), 2, - anon_sym_import, - sym_identifier, - [20552] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4454), 1, - anon_sym_RPAREN, - ACTIONS(4456), 1, - anon_sym_COMMA, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [20568] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3086), 1, - anon_sym_RPAREN, - ACTIONS(4458), 1, - anon_sym_else, - ACTIONS(4460), 1, - sym__newline, - STATE(1917), 1, - aux_sym_import_declaration_repeat1, - [20584] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1112), 1, - sym_block, - [20600] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4463), 1, - sym__newline, - STATE(1114), 1, - sym_block, - STATE(1774), 1, - aux_sym_import_declaration_repeat1, - [20616] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3043), 1, - anon_sym_RPAREN, - ACTIONS(4465), 1, - anon_sym_else, - ACTIONS(4467), 1, - sym__newline, - STATE(1918), 1, - aux_sym_import_declaration_repeat1, - [20632] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3865), 4, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - sym__newline, - [20642] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1009), 1, - sym_block, - [20658] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4470), 2, - sym_sink, - sym_identifier, - [20672] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, STATE(1115), 1, sym_block, - [20688] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4472), 1, - sym__newline, - STATE(1119), 1, - sym_block, - STATE(1777), 1, + STATE(1831), 1, aux_sym_import_declaration_repeat1, - [20704] = 5, + [20163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4474), 1, - sym__newline, - STATE(1010), 1, - sym_block, - STATE(1872), 1, - aux_sym_import_declaration_repeat1, - [20720] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4476), 1, - sym__newline, - STATE(1876), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4470), 2, - sym_sink, - sym_identifier, - [20734] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1120), 1, - sym_block, - [20750] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3062), 1, - anon_sym_RPAREN, - ACTIONS(4478), 1, - anon_sym_else, - ACTIONS(4480), 1, - sym__newline, - STATE(1922), 1, - aux_sym_import_declaration_repeat1, - [20766] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4483), 1, - sym__newline, - STATE(1122), 1, - sym_block, - STATE(1778), 1, - aux_sym_import_declaration_repeat1, - [20782] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4047), 1, - sym_identifier, - ACTIONS(4485), 1, - sym__newline, - STATE(1849), 1, - aux_sym_import_declaration_repeat1, - STATE(1960), 1, - sym_field_initializer, - [20798] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1123), 1, - sym_block, - [20814] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3539), 1, - anon_sym_RPAREN, - ACTIONS(4487), 1, + ACTIONS(4426), 1, + anon_sym_EQ, + ACTIONS(4428), 3, anon_sym_COMMA, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [20830] = 5, + anon_sym_RBRACE, + sym__newline, + [20175] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4430), 1, sym__newline, - ACTIONS(4347), 1, + STATE(1058), 1, + sym_block, + STATE(1705), 1, + aux_sym_import_declaration_repeat1, + [20191] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4432), 1, + sym__newline, + STATE(1059), 1, + sym_block, + STATE(1810), 1, + aux_sym_import_declaration_repeat1, + [20207] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1094), 1, + sym_block, + [20223] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4048), 1, + anon_sym_RBRACE, + ACTIONS(4434), 1, anon_sym_COMMA, - ACTIONS(4489), 1, - anon_sym_RBRACK, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [20846] = 5, + [20239] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(4436), 1, sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1124), 1, + STATE(1116), 1, sym_block, - [20862] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, + STATE(1838), 1, aux_sym_import_declaration_repeat1, - STATE(1125), 1, - sym_block, - [20878] = 5, + [20255] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, - anon_sym_LBRACE, - ACTIONS(4491), 1, + ACTIONS(227), 1, sym__newline, - STATE(463), 1, - sym_record_body, - STATE(1716), 1, - aux_sym_import_declaration_repeat1, - [20894] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1126), 1, - sym_block, - [20910] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1128), 1, - sym_block, - [20926] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4493), 1, - sym__newline, - STATE(1129), 1, - sym_block, - STATE(1782), 1, - aux_sym_import_declaration_repeat1, - [20942] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3892), 1, - anon_sym_LBRACE, - STATE(438), 1, - sym_enum_body, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [20958] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(1901), 1, + ACTIONS(1857), 1, anon_sym_RPAREN, - ACTIONS(4487), 1, + ACTIONS(4438), 1, anon_sym_COMMA, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [20974] = 5, + [20271] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(4440), 1, sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1130), 1, + STATE(1162), 1, sym_block, - [20990] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3916), 1, - sym_identifier, - STATE(680), 1, + STATE(1900), 1, aux_sym_import_declaration_repeat1, - STATE(2035), 1, - sym_keyed_field_initializer, - [21006] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1145), 1, - sym_block, - [21022] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1131), 1, - sym_block, - [21038] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1132), 1, - sym_block, - [21054] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4495), 1, - sym__newline, - STATE(1233), 1, - sym_block, - STATE(1786), 1, - aux_sym_import_declaration_repeat1, - [21070] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4497), 1, - sym__newline, - STATE(1169), 1, - sym_block, - STATE(1894), 1, - aux_sym_import_declaration_repeat1, - [21086] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(4499), 1, - anon_sym_LBRACE, - STATE(470), 1, - sym_initializer_list, - STATE(2070), 1, - sym_argument_list, - [21102] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1134), 1, - sym_block, - [21118] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4501), 1, - sym__newline, - STATE(1146), 1, - sym_block, - STATE(1718), 1, - aux_sym_import_declaration_repeat1, - [21134] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4503), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4505), 2, - anon_sym_import, - sym_identifier, - [21146] = 4, - ACTIONS(4327), 1, - sym_comment, - ACTIONS(4507), 1, - anon_sym_DQUOTE, - STATE(1898), 1, - aux_sym_string_repeat1, - ACTIONS(4509), 2, - sym_string_content, - sym_escape_sequence, - [21160] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1135), 1, - sym_block, - [21176] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1013), 1, - sym_block, - [21192] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1171), 1, - sym_block, - [21208] = 5, + [20287] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_DQUOTE, - ACTIONS(4511), 1, + ACTIONS(227), 1, sym__newline, - STATE(1824), 1, - sym_string, - STATE(1905), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [21224] = 5, + STATE(1677), 1, + sym_string, + [20303] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4420), 1, + anon_sym_DASH, + STATE(1977), 1, + sym__type_constant, + ACTIONS(4442), 2, + sym_integer, + sym_character, + [20317] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(4444), 1, sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1014), 1, + STATE(472), 1, sym_block, - [21240] = 3, + STATE(1861), 1, + aux_sym_import_declaration_repeat1, + [20333] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3657), 2, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3780), 1, + anon_sym_RPAREN, + ACTIONS(4446), 1, + anon_sym_COMMA, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [20349] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4448), 1, + sym__newline, + STATE(1095), 1, + sym_block, + STATE(1749), 1, + aux_sym_import_declaration_repeat1, + [20365] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4396), 1, + anon_sym_COMMA, + ACTIONS(4450), 1, + anon_sym_RBRACK, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [20381] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4160), 1, + anon_sym_LBRACE, + STATE(471), 1, + sym_record_body, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [20397] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(507), 1, + sym_block, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [20413] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4452), 2, ts_builtin_sym_end, sym__newline, - ACTIONS(3659), 2, + ACTIONS(4454), 2, anon_sym_import, sym_identifier, - [21252] = 5, + [20425] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4513), 1, + ACTIONS(4458), 1, sym__newline, - STATE(1015), 1, - sym_block, - STATE(1914), 1, + STATE(1687), 1, aux_sym_import_declaration_repeat1, - [21268] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4515), 1, - sym__newline, - STATE(1016), 1, - sym_block, - STATE(1663), 1, - aux_sym_import_declaration_repeat1, - [21284] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1175), 1, - sym_block, - [21300] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4517), 1, - sym__newline, - STATE(1176), 1, - sym_block, - STATE(1907), 1, - aux_sym_import_declaration_repeat1, - [21316] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3916), 1, - sym_identifier, - ACTIONS(4519), 1, - sym__newline, - STATE(1832), 1, - aux_sym_import_declaration_repeat1, - STATE(1951), 1, - sym_keyed_field_initializer, - [21332] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3052), 1, - anon_sym_RPAREN, - ACTIONS(4521), 1, - anon_sym_else, - ACTIONS(4524), 1, - sym__newline, - STATE(2042), 1, - aux_sym_import_declaration_repeat1, - [21348] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1837), 1, - sym_block, - [21364] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3077), 1, - anon_sym_RPAREN, - ACTIONS(4527), 1, - anon_sym_else, - ACTIONS(4530), 1, - sym__newline, - STATE(2043), 1, - aux_sym_import_declaration_repeat1, - [21380] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4533), 1, - sym__newline, - STATE(1018), 1, - sym_block, - STATE(1667), 1, - aux_sym_import_declaration_repeat1, - [21396] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4535), 1, - sym__newline, - STATE(1019), 1, - sym_block, - STATE(1669), 1, - aux_sym_import_declaration_repeat1, - [21412] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4539), 1, - sym__newline, - STATE(1850), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4537), 2, + ACTIONS(4456), 2, sym_sink, sym_identifier, - [21426] = 5, + [20439] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(3918), 1, - anon_sym_RBRACE, - ACTIONS(4541), 1, + ACTIONS(3754), 1, + anon_sym_RPAREN, + ACTIONS(4460), 1, anon_sym_COMMA, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [21442] = 3, + [20455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 2, + ACTIONS(4462), 2, ts_builtin_sym_end, sym__newline, - ACTIONS(4545), 2, + ACTIONS(4464), 2, anon_sym_import, sym_identifier, - [21454] = 5, + [20467] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3896), 1, + sym_identifier, + ACTIONS(4466), 1, + sym__newline, + STATE(1822), 1, + aux_sym_import_declaration_repeat1, + STATE(2005), 1, + sym_field_initializer, + [20483] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(1021), 1, + STATE(1751), 1, sym_block, - [21470] = 5, + [20499] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 1, - anon_sym_RPAREN, - ACTIONS(4547), 1, - anon_sym_else, - ACTIONS(4550), 1, + ACTIONS(227), 1, sym__newline, - STATE(2044), 1, - aux_sym_import_declaration_repeat1, - [21486] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3043), 1, - anon_sym_RPAREN, - ACTIONS(4553), 1, - anon_sym_else, - ACTIONS(4556), 1, - sym__newline, - STATE(2045), 1, - aux_sym_import_declaration_repeat1, - [21502] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4559), 1, - sym__newline, - STATE(1022), 1, - sym_block, - STATE(1673), 1, - aux_sym_import_declaration_repeat1, - [21518] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4107), 1, + ACTIONS(4080), 1, anon_sym_RBRACE, - ACTIONS(4561), 1, + ACTIONS(4468), 1, anon_sym_COMMA, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [21534] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3062), 1, - anon_sym_RPAREN, - ACTIONS(4563), 1, - anon_sym_else, - ACTIONS(4566), 1, - sym__newline, - STATE(2046), 1, - aux_sym_import_declaration_repeat1, - [21550] = 5, + [20515] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(4569), 1, + ACTIONS(227), 1, sym__newline, - STATE(1024), 1, + STATE(473), 1, sym_block, - STATE(1675), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [21566] = 5, + [20531] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4571), 1, + ACTIONS(227), 1, sym__newline, - STATE(518), 1, - sym_block, - STATE(1820), 1, + ACTIONS(4328), 1, + anon_sym_COMMA, + ACTIONS(4470), 1, + anon_sym_RBRACK, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [21582] = 5, + [20547] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(4290), 1, + ACTIONS(4160), 1, anon_sym_LBRACE, - STATE(432), 1, + STATE(434), 1, sym_record_body, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [21598] = 5, + [20563] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(4573), 1, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1117), 1, + sym_block, + [20579] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4474), 1, + anon_sym_COMMA, + ACTIONS(4472), 3, + anon_sym_RBRACE, + sym_identifier, + sym__newline, + [20591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4478), 2, + anon_sym_import, + sym_identifier, + [20603] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4480), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4482), 2, + anon_sym_import, + sym_identifier, + [20615] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1828), 1, + sym_block, + [20631] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1134), 1, + sym_block, + [20647] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4001), 1, + anon_sym_LBRACE, + STATE(435), 1, + sym_enum_body, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [20663] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4484), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + sym__newline, + [20673] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1070), 1, + sym_block, + [20689] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4486), 1, + sym__newline, + STATE(1071), 1, + sym_block, + STATE(1844), 1, + aux_sym_import_declaration_repeat1, + [20705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4488), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4490), 2, + anon_sym_import, + sym_identifier, + [20717] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1009), 1, + sym_block, + [20733] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4396), 1, + anon_sym_COMMA, + ACTIONS(4492), 1, + anon_sym_RBRACK, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [20749] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4494), 1, + sym__newline, + STATE(1119), 1, + sym_block, + STATE(1869), 1, + aux_sym_import_declaration_repeat1, + [20765] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4328), 1, + anon_sym_COMMA, + ACTIONS(4496), 1, + anon_sym_RBRACK, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [20781] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1692), 1, + sym_block, + [20797] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4160), 1, + anon_sym_LBRACE, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1768), 1, + sym_record_body, + [20813] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4498), 1, + sym__newline, + STATE(1042), 1, + sym_block, + STATE(1757), 1, + aux_sym_import_declaration_repeat1, + [20829] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1120), 1, + sym_block, + [20845] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4500), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4502), 2, + anon_sym_import, + sym_identifier, + [20857] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4504), 1, + sym__newline, + STATE(1121), 1, + sym_block, + STATE(1889), 1, + aux_sym_import_declaration_repeat1, + [20873] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4506), 1, sym__newline, STATE(1152), 1, sym_block, - STATE(1753), 1, + STATE(1836), 1, aux_sym_import_declaration_repeat1, - [21614] = 5, + [20889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(4508), 2, + ts_builtin_sym_end, sym__newline, - ACTIONS(4347), 1, + ACTIONS(4510), 2, + anon_sym_import, + sym_identifier, + [20901] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4512), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4514), 2, + anon_sym_import, + sym_identifier, + [20913] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1073), 1, + sym_block, + [20929] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4516), 4, anon_sym_COMMA, - ACTIONS(4575), 1, + anon_sym_PIPE, + anon_sym_COLON, + sym__newline, + [20939] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4518), 2, + sym_sink, + sym_identifier, + [20953] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1122), 1, + sym_block, + [20969] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3049), 1, + anon_sym_RPAREN, + ACTIONS(4520), 1, + anon_sym_else, + ACTIONS(4522), 1, + sym__newline, + STATE(2022), 1, + aux_sym_import_declaration_repeat1, + [20985] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(1879), 1, anon_sym_RBRACK, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [21630] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1057), 1, - sym_block, - [21646] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4129), 1, - anon_sym_RBRACE, - ACTIONS(4577), 1, + ACTIONS(4525), 1, anon_sym_COMMA, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [21662] = 5, + [21001] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4579), 1, - sym__newline, - STATE(1008), 1, - sym_block, - STATE(1679), 1, - aux_sym_import_declaration_repeat1, - [21678] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4581), 1, + ACTIONS(4420), 1, anon_sym_DASH, - STATE(2006), 1, + STATE(1953), 1, sym__type_constant, - ACTIONS(4583), 2, + ACTIONS(4527), 2, sym_integer, sym_character, - [21692] = 5, + [21015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(504), 1, - sym_block, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [21708] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4587), 1, + ACTIONS(4531), 1, anon_sym_COMMA, - ACTIONS(4585), 3, + ACTIONS(4529), 3, anon_sym_RBRACE, sym_identifier, sym__newline, - [21720] = 3, + [21027] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3549), 1, + anon_sym_RPAREN, + ACTIONS(4533), 1, + anon_sym_COMMA, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [21043] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4420), 1, + anon_sym_DASH, + STATE(1967), 1, + sym__type_constant, + ACTIONS(4535), 2, + sym_integer, + sym_character, + [21057] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4537), 1, + sym__newline, + STATE(1123), 1, + sym_block, + STATE(1898), 1, + aux_sym_import_declaration_repeat1, + [21073] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3058), 1, + anon_sym_RPAREN, + ACTIONS(4539), 1, + anon_sym_else, + ACTIONS(4541), 1, + sym__newline, + STATE(2031), 1, + aux_sym_import_declaration_repeat1, + [21089] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3067), 1, + anon_sym_RPAREN, + ACTIONS(4544), 1, + anon_sym_else, + ACTIONS(4546), 1, + sym__newline, + STATE(2036), 1, + aux_sym_import_declaration_repeat1, + [21105] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4551), 1, + sym__newline, + STATE(1665), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4549), 2, + sym_sink, + sym_identifier, + [21119] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4553), 1, + sym__newline, + STATE(1074), 1, + sym_block, + STATE(1865), 1, + aux_sym_import_declaration_repeat1, + [21135] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4555), 1, + sym__newline, + STATE(1075), 1, + sym_block, + STATE(1875), 1, + aux_sym_import_declaration_repeat1, + [21151] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3076), 1, + anon_sym_RPAREN, + ACTIONS(4557), 1, + anon_sym_else, + ACTIONS(4559), 1, + sym__newline, + STATE(1919), 1, + aux_sym_import_declaration_repeat1, + [21167] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4562), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4564), 2, + anon_sym_import, + sym_identifier, + [21179] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3085), 1, + anon_sym_RPAREN, + ACTIONS(4566), 1, + anon_sym_else, + ACTIONS(4568), 1, + sym__newline, + STATE(1921), 1, + aux_sym_import_declaration_repeat1, + [21195] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1124), 1, + sym_block, + [21211] = 4, + ACTIONS(4571), 1, + anon_sym_DQUOTE, + ACTIONS(4576), 1, + sym_comment, + STATE(1793), 1, + aux_sym_string_repeat1, + ACTIONS(4573), 2, + sym_string_content, + sym_escape_sequence, + [21225] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1049), 1, + sym_block, + [21241] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1199), 1, + sym_block, + [21257] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4578), 1, + sym__newline, + STATE(1200), 1, + sym_block, + STATE(1846), 1, + aux_sym_import_declaration_repeat1, + [21273] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3039), 1, + anon_sym_RPAREN, + ACTIONS(4580), 1, + anon_sym_else, + ACTIONS(4582), 1, + sym__newline, + STATE(1929), 1, + aux_sym_import_declaration_repeat1, + [21289] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4585), 1, + sym__newline, + STATE(1202), 1, + sym_block, + STATE(1848), 1, + aux_sym_import_declaration_repeat1, + [21305] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3829), 4, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + sym__newline, + [21315] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4396), 1, + anon_sym_COMMA, + ACTIONS(4587), 1, + anon_sym_RBRACK, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [21331] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4589), 2, @@ -139549,3842 +140170,4112 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4591), 2, anon_sym_import, sym_identifier, - [21732] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4595), 1, - sym__newline, - STATE(1754), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4593), 2, - sym_sink, - sym_identifier, - [21746] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4597), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4599), 2, - anon_sym_import, - sym_identifier, - [21758] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_COMMA, - ACTIONS(4601), 3, - anon_sym_RBRACE, - sym_identifier, - sym__newline, - [21770] = 5, + [21343] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(4593), 1, sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1029), 1, + STATE(1204), 1, sym_block, - [21786] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4047), 1, - sym_identifier, - ACTIONS(4605), 1, - sym__newline, - STATE(1731), 1, + STATE(1851), 1, aux_sym_import_declaration_repeat1, - STATE(1974), 1, - sym_field_initializer, - [21802] = 5, + [21359] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1050), 1, + sym_block, + [21375] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4595), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4597), 2, + anon_sym_import, + sym_identifier, + [21387] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1076), 1, + sym_block, + [21403] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1206), 1, + sym_block, + [21419] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1125), 1, + sym_block, + [21435] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1096), 1, + sym_block, + [21451] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4599), 1, + sym__newline, + STATE(1209), 1, + sym_block, + STATE(1857), 1, + aux_sym_import_declaration_repeat1, + [21467] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1087), 1, + sym_block, + [21483] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4601), 1, + sym__newline, + STATE(1078), 1, + sym_block, + STATE(1670), 1, + aux_sym_import_declaration_repeat1, + [21499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4605), 2, + anon_sym_import, + sym_identifier, + [21511] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1126), 1, + sym_block, + [21527] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4160), 1, + anon_sym_LBRACE, ACTIONS(4607), 1, sym__newline, - STATE(1030), 1, - sym_block, - STATE(1687), 1, + STATE(476), 1, + sym_record_body, + STATE(1737), 1, aux_sym_import_declaration_repeat1, - [21818] = 4, + [21543] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 1, - anon_sym_DASH, - STATE(2016), 1, - sym__type_constant, - ACTIONS(4609), 2, - sym_integer, - sym_character, - [21832] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(4137), 1, - anon_sym_RBRACE, - ACTIONS(4611), 1, + ACTIONS(1893), 1, + anon_sym_RPAREN, + ACTIONS(4533), 1, anon_sym_COMMA, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [21848] = 5, + [21559] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4609), 1, + sym__newline, + STATE(1051), 1, + sym_block, + STATE(1866), 1, + aux_sym_import_declaration_repeat1, + [21575] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + sym_identifier, + ACTIONS(4611), 1, + sym__newline, + STATE(1876), 1, + aux_sym_import_declaration_repeat1, + STATE(2013), 1, + sym_keyed_field_initializer, + [21591] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, ACTIONS(4613), 1, sym__newline, - STATE(1222), 1, + STATE(1097), 1, sym_block, - STATE(1870), 1, + STATE(1760), 1, aux_sym_import_declaration_repeat1, - [21864] = 5, + [21607] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(3916), 1, - sym_identifier, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(2034), 1, - sym_keyed_field_initializer, - [21880] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4187), 1, + ACTIONS(4144), 1, anon_sym_RBRACE, ACTIONS(4615), 1, anon_sym_COMMA, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [21896] = 5, + [21623] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1031), 1, + STATE(509), 1, sym_block, - [21912] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3916), 1, - sym_identifier, - ACTIONS(4617), 1, - sym__newline, - STATE(1775), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(2034), 1, - sym_keyed_field_initializer, - [21928] = 5, + [21639] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1032), 1, - sym_block, - [21944] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4619), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4621), 2, - anon_sym_import, - sym_identifier, - [21956] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4623), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4625), 2, - anon_sym_import, - sym_identifier, - [21968] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1842), 1, - sym_block, - [21984] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4627), 1, - sym__newline, - STATE(1033), 1, - sym_block, - STATE(1691), 1, - aux_sym_import_declaration_repeat1, - [22000] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4629), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4631), 2, - anon_sym_import, - sym_identifier, - [22012] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4633), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4635), 2, - anon_sym_import, - sym_identifier, - [22024] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4637), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4639), 2, - anon_sym_import, - sym_identifier, - [22036] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1035), 1, - sym_block, - [22052] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3760), 1, - anon_sym_RPAREN, - ACTIONS(4641), 1, - anon_sym_COMMA, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [22068] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4643), 1, - sym__newline, - STATE(1036), 1, - sym_block, - STATE(1696), 1, - aux_sym_import_declaration_repeat1, - [22084] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4306), 1, - anon_sym_COMMA, - ACTIONS(4645), 1, - anon_sym_RBRACK, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [22100] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4647), 4, + ACTIONS(4617), 4, anon_sym_COMMA, anon_sym_RBRACE, sym_identifier, sym__newline, - [22110] = 5, + [21649] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(4047), 1, + ACTIONS(3896), 1, sym_identifier, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(1998), 1, + STATE(1934), 1, sym_field_initializer, - [22126] = 4, + [21665] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4649), 2, - sym_sink, + ACTIONS(3896), 1, sym_identifier, - [22140] = 5, + ACTIONS(4619), 1, + sym__newline, + STATE(1887), 1, + aux_sym_import_declaration_repeat1, + STATE(1934), 1, + sym_field_initializer, + [21681] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, + ACTIONS(4420), 1, + anon_sym_DASH, + STATE(1995), 1, + sym__type_constant, + ACTIONS(4621), 2, + sym_integer, + sym_character, + [21695] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1037), 1, + sym_block, + [21711] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4623), 1, + sym__newline, + STATE(1052), 1, + sym_block, + STATE(1873), 1, + aux_sym_import_declaration_repeat1, + [21727] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4160), 1, + anon_sym_LBRACE, + STATE(402), 1, + sym_record_body, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [21743] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4625), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4627), 2, + anon_sym_import, + sym_identifier, + [21755] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4160), 1, + anon_sym_LBRACE, + ACTIONS(4629), 1, + sym__newline, + STATE(1739), 1, + sym_record_body, + STATE(1765), 1, + aux_sym_import_declaration_repeat1, + [21771] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4160), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + sym__newline, + STATE(422), 1, + sym_record_body, + STATE(1748), 1, + aux_sym_import_declaration_repeat1, + [21787] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1127), 1, + sym_block, + [21803] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3681), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3683), 2, + anon_sym_import, + sym_identifier, + [21815] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4001), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + sym__newline, + STATE(423), 1, + sym_enum_body, + STATE(1755), 1, + aux_sym_import_declaration_repeat1, + [21831] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4635), 4, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + sym__newline, + [21841] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_DQUOTE, + ACTIONS(4637), 1, + sym__newline, + STATE(1719), 1, + sym_string, + STATE(1731), 1, + aux_sym_import_declaration_repeat1, + [21857] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1168), 1, + sym_block, + [21873] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4639), 1, + sym__newline, + STATE(1169), 1, + sym_block, + STATE(1695), 1, + aux_sym_import_declaration_repeat1, + [21889] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1128), 1, + sym_block, + [21905] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1046), 1, + sym_block, + [21921] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4641), 1, + sym__newline, + STATE(1221), 1, + sym_block, + STATE(1895), 1, + aux_sym_import_declaration_repeat1, + [21937] = 4, + ACTIONS(4576), 1, + sym_comment, + ACTIONS(4643), 1, + anon_sym_DQUOTE, + STATE(1912), 1, + aux_sym_string_repeat1, + ACTIONS(4645), 2, + sym_string_content, + sym_escape_sequence, + [21951] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4647), 1, + sym__newline, + STATE(1171), 1, + sym_block, + STATE(1700), 1, + aux_sym_import_declaration_repeat1, + [21967] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4649), 1, + sym__newline, + STATE(1088), 1, + sym_block, + STATE(1706), 1, + aux_sym_import_declaration_repeat1, + [21983] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1098), 1, + sym_block, + [21999] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACE, ACTIONS(4651), 1, sym__newline, - STATE(1717), 1, - sym_record_body, - STATE(1733), 1, + STATE(1129), 1, + sym_block, + STATE(1754), 1, aux_sym_import_declaration_repeat1, - [22156] = 5, + [22015] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, sym__newline, - ACTIONS(4306), 1, - anon_sym_COMMA, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1224), 1, + sym_block, + [22031] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, ACTIONS(4653), 1, - anon_sym_RBRACK, - STATE(680), 1, + sym__newline, + STATE(1099), 1, + sym_block, + STATE(1767), 1, aux_sym_import_declaration_repeat1, - [22172] = 5, + [22047] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - STATE(461), 1, - sym_block, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [22188] = 3, + STATE(1227), 1, + sym_block, + [22063] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4655), 2, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4655), 1, + sym__newline, + STATE(1228), 1, + sym_block, + STATE(1905), 1, + aux_sym_import_declaration_repeat1, + [22079] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_LPAREN, + ACTIONS(4657), 1, + anon_sym_LBRACE, + STATE(524), 1, + sym_initializer_list, + STATE(2055), 1, + sym_argument_list, + [22095] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1231), 1, + sym_block, + [22111] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4659), 1, + sym__newline, + STATE(1232), 1, + sym_block, + STATE(1911), 1, + aux_sym_import_declaration_repeat1, + [22127] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + sym__newline, + STATE(1061), 1, + sym_block, + STATE(1708), 1, + aux_sym_import_declaration_repeat1, + [22143] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4663), 1, + sym__newline, + STATE(1157), 1, + sym_block, + STATE(1915), 1, + aux_sym_import_declaration_repeat1, + [22159] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3689), 2, ts_builtin_sym_end, sym__newline, - ACTIONS(4657), 2, + ACTIONS(3691), 2, anon_sym_import, sym_identifier, - [22200] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4659), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4661), 2, - anon_sym_import, - sym_identifier, - [22212] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4663), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4665), 2, - anon_sym_import, - sym_identifier, - [22224] = 5, + [22171] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(4665), 1, sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1666), 1, + STATE(1010), 1, sym_block, - [22240] = 5, + STATE(1825), 1, + aux_sym_import_declaration_repeat1, + [22187] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(1040), 1, + STATE(1012), 1, sym_block, - [22256] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1053), 1, - sym_block, - [22272] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(511), 1, - sym_block, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [22288] = 5, + [22203] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, ACTIONS(4667), 1, sym__newline, - STATE(1042), 1, + STATE(1013), 1, sym_block, - STATE(1699), 1, + STATE(1691), 1, aux_sym_import_declaration_repeat1, - [22304] = 5, + [22219] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4669), 1, + ACTIONS(227), 1, sym__newline, - STATE(1047), 1, - sym_block, - STATE(1701), 1, + ACTIONS(1851), 1, + anon_sym_RPAREN, + ACTIONS(4669), 1, + anon_sym_COMMA, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [22320] = 5, + [22235] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, ACTIONS(4671), 1, sym__newline, - STATE(1054), 1, + STATE(1047), 1, sym_block, - STATE(1788), 1, + STATE(1805), 1, aux_sym_import_declaration_repeat1, - [22336] = 5, + [22251] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1225), 1, + STATE(497), 1, sym_block, - [22352] = 4, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [22267] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 1, - anon_sym_DASH, - STATE(2002), 1, - sym__type_constant, - ACTIONS(4673), 2, - sym_integer, - sym_character, - [22366] = 4, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4673), 1, + sym__newline, + STATE(498), 1, + sym_block, + STATE(1663), 1, + aux_sym_import_declaration_repeat1, + [22283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 1, - anon_sym_DASH, - STATE(2028), 1, - sym__type_constant, ACTIONS(4675), 2, - sym_integer, - sym_character, - [22380] = 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4677), 2, + anon_sym_import, + sym_identifier, + [22295] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 4, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4679), 1, + sym__newline, + STATE(1017), 1, + sym_block, + STATE(1839), 1, + aux_sym_import_declaration_repeat1, + [22311] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1100), 1, + sym_block, + [22327] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1079), 1, + sym_block, + [22343] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4681), 4, anon_sym_COMMA, anon_sym_RBRACE, sym_identifier, sym__newline, - [22390] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 4, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - sym__newline, - [22400] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4681), 1, - sym__newline, - STATE(1069), 1, - sym_block, - STATE(1794), 1, - aux_sym_import_declaration_repeat1, - [22416] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1156), 1, - sym_block, - [22432] = 5, + [22353] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, ACTIONS(4683), 1, sym__newline, - STATE(1157), 1, + STATE(1044), 1, sym_block, - STATE(1787), 1, + STATE(1773), 1, aux_sym_import_declaration_repeat1, - [22448] = 5, + [22369] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(1049), 1, + STATE(1130), 1, sym_block, - [22464] = 5, + [22385] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(4347), 1, - anon_sym_COMMA, - ACTIONS(4685), 1, - anon_sym_RBRACK, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [22480] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, + ACTIONS(4001), 1, anon_sym_LBRACE, - ACTIONS(4687), 1, - sym__newline, - STATE(1159), 1, - sym_block, - STATE(1790), 1, - aux_sym_import_declaration_repeat1, - [22496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4689), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4691), 2, - anon_sym_import, - sym_identifier, - [22508] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4693), 2, - sym_sink, - sym_identifier, - [22522] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4695), 1, - sym__newline, - STATE(1055), 1, - sym_block, - STATE(1708), 1, - aux_sym_import_declaration_repeat1, - [22538] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4581), 1, - anon_sym_DASH, - STATE(1993), 1, - sym__type_constant, - ACTIONS(4697), 2, - sym_integer, - sym_character, - [22552] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3607), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(3609), 2, - anon_sym_import, - sym_identifier, - [22564] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3892), 1, - anon_sym_LBRACE, - STATE(450), 1, + STATE(404), 1, sym_enum_body, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [22580] = 4, + [22401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 1, - anon_sym_DASH, - STATE(1999), 1, - sym__type_constant, - ACTIONS(4699), 2, - sym_integer, - sym_character, - [22594] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4581), 1, - anon_sym_DASH, - STATE(2001), 1, - sym__type_constant, - ACTIONS(4701), 2, - sym_integer, - sym_character, - [22608] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4581), 1, - anon_sym_DASH, - STATE(2023), 1, - sym__type_constant, - ACTIONS(4703), 2, - sym_integer, - sym_character, - [22622] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4581), 1, - anon_sym_DASH, - STATE(2024), 1, - sym__type_constant, - ACTIONS(4705), 2, - sym_integer, - sym_character, - [22636] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1228), 1, - sym_block, - [22652] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4581), 1, - anon_sym_DASH, - STATE(1938), 1, - sym__type_constant, - ACTIONS(4707), 2, - sym_integer, - sym_character, - [22666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4709), 2, + ACTIONS(4685), 2, ts_builtin_sym_end, sym__newline, - ACTIONS(4711), 2, + ACTIONS(4687), 2, anon_sym_import, sym_identifier, - [22678] = 5, + [22413] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(89), 1, anon_sym_DQUOTE, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(1784), 1, + STATE(1863), 1, sym_string, - [22694] = 5, + [22429] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(4713), 1, + ACTIONS(227), 1, sym__newline, - STATE(1161), 1, - sym_block, - STATE(1915), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [22710] = 3, + STATE(1080), 1, + sym_block, + [22445] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4715), 1, - anon_sym_EQ, - ACTIONS(4717), 3, - anon_sym_COMMA, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4689), 1, + sym__newline, + STATE(1081), 1, + sym_block, + STATE(1680), 1, + aux_sym_import_declaration_repeat1, + [22461] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1101), 1, + sym_block, + [22477] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4025), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1938), 1, + sym_keyed_field_initializer, + [22493] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4420), 1, + anon_sym_DASH, + STATE(1997), 1, + sym__type_constant, + ACTIONS(4691), 2, + sym_integer, + sym_character, + [22507] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + sym_identifier, + ACTIONS(4693), 1, + sym__newline, + STATE(1703), 1, + aux_sym_import_declaration_repeat1, + STATE(1938), 1, + sym_keyed_field_initializer, + [22523] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4695), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4697), 2, + anon_sym_import, + sym_identifier, + [22535] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4420), 1, + anon_sym_DASH, + STATE(2007), 1, + sym__type_constant, + ACTIONS(4699), 2, + sym_integer, + sym_character, + [22549] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4420), 1, + anon_sym_DASH, + STATE(2009), 1, + sym__type_constant, + ACTIONS(4701), 2, + sym_integer, + sym_character, + [22563] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4420), 1, + anon_sym_DASH, + STATE(2025), 1, + sym__type_constant, + ACTIONS(4703), 2, + sym_integer, + sym_character, + [22577] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4420), 1, + anon_sym_DASH, + STATE(2026), 1, + sym__type_constant, + ACTIONS(4705), 2, + sym_integer, + sym_character, + [22591] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3657), 1, anon_sym_RBRACE, - sym__newline, - [22722] = 5, + ACTIONS(4707), 1, + anon_sym_COMMA, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [22607] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(4719), 1, + ACTIONS(4709), 1, sym__newline, - STATE(1026), 1, + STATE(489), 1, sym_block, - STATE(1893), 1, + STATE(1738), 1, aux_sym_import_declaration_repeat1, - [22738] = 5, + [22623] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4711), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4713), 2, + anon_sym_import, + sym_identifier, + [22635] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3896), 1, + sym_identifier, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1949), 1, + sym_field_initializer, + [22651] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4715), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4717), 2, + anon_sym_import, + sym_identifier, + [22663] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(1854), 1, + STATE(1131), 1, sym_block, - [22754] = 5, + [22679] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1166), 1, - sym_block, - [22770] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1193), 1, - sym_block, - [22786] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4721), 1, - sym__newline, - STATE(1201), 1, - sym_block, - STATE(1864), 1, - aux_sym_import_declaration_repeat1, - [22802] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4723), 1, - sym__newline, - STATE(1173), 1, - sym_block, - STATE(1805), 1, - aux_sym_import_declaration_repeat1, - [22818] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4725), 1, - sym__newline, - STATE(1205), 1, - sym_block, - STATE(1885), 1, - aux_sym_import_declaration_repeat1, - [22834] = 4, - ACTIONS(4327), 1, - sym_comment, - ACTIONS(4727), 1, - anon_sym_DQUOTE, - STATE(1672), 1, - aux_sym_string_repeat1, - ACTIONS(4729), 2, - sym_string_content, - sym_escape_sequence, - [22848] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(1867), 1, + ACTIONS(3049), 1, anon_sym_RPAREN, - ACTIONS(4456), 1, - anon_sym_COMMA, - STATE(680), 1, + ACTIONS(4719), 1, + anon_sym_else, + ACTIONS(4722), 1, + sym__newline, + STATE(2042), 1, aux_sym_import_declaration_repeat1, - [22864] = 2, + [22695] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4731), 4, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(227), 1, sym__newline, - [22874] = 5, + ACTIONS(4396), 1, + anon_sym_COMMA, + ACTIONS(4725), 1, + anon_sym_RBRACK, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [22711] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4727), 1, + sym__newline, + STATE(1102), 1, + sym_block, + STATE(1776), 1, + aux_sym_import_declaration_repeat1, + [22727] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1053), 1, + sym_block, + [22743] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4729), 1, + sym__newline, + STATE(1054), 1, + sym_block, + STATE(1902), 1, + aux_sym_import_declaration_repeat1, + [22759] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1020), 1, + sym_block, + [22775] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4731), 1, + sym__newline, + STATE(1021), 1, + sym_block, + STATE(1794), 1, + aux_sym_import_declaration_repeat1, + [22791] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, ACTIONS(4733), 1, sym__newline, - STATE(1207), 1, + STATE(1022), 1, sym_block, - STATE(1668), 1, + STATE(1803), 1, aux_sym_import_declaration_repeat1, - [22890] = 5, + [22807] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, sym__newline, - ACTIONS(3742), 1, - anon_sym_RPAREN, - ACTIONS(4735), 1, - anon_sym_COMMA, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [22906] = 5, + STATE(1132), 1, + sym_block, + [22823] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4735), 1, + sym__newline, + STATE(1133), 1, + sym_block, + STATE(1720), 1, + aux_sym_import_declaration_repeat1, + [22839] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1139), 1, + sym_block, + [22855] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, ACTIONS(4737), 1, sym__newline, - STATE(483), 1, + STATE(1234), 1, sym_block, - STATE(1712), 1, + STATE(1893), 1, aux_sym_import_declaration_repeat1, - [22922] = 5, + [22871] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(89), 1, - anon_sym_DQUOTE, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1082), 1, + sym_block, + [22887] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, ACTIONS(4739), 1, sym__newline, - STATE(1683), 1, - sym_string, - STATE(1689), 1, + STATE(1055), 1, + sym_block, + STATE(1907), 1, aux_sym_import_declaration_repeat1, - [22938] = 5, + [22903] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(89), 1, - anon_sym_DQUOTE, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1822), 1, - sym_string, - [22954] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_DQUOTE, + ACTIONS(4396), 1, + anon_sym_COMMA, ACTIONS(4741), 1, - sym__newline, - STATE(1698), 1, - sym_string, - STATE(1888), 1, + anon_sym_RBRACK, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [22970] = 5, + [22919] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(1209), 1, + STATE(1027), 1, sym_block, - [22986] = 5, + [22935] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(4743), 1, sym__newline, - STATE(485), 1, + STATE(1028), 1, sym_block, - STATE(680), 1, + STATE(1717), 1, aux_sym_import_declaration_repeat1, - [23002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4743), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4745), 2, - anon_sym_import, - sym_identifier, - [23014] = 5, + [22951] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - STATE(1191), 1, + STATE(1083), 1, sym_block, - [23030] = 5, + [22967] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_LBRACE, + ACTIONS(4745), 1, + sym__newline, + STATE(1089), 1, + sym_block, + STATE(1709), 1, + aux_sym_import_declaration_repeat1, + [22983] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_DQUOTE, ACTIONS(4747), 1, sym__newline, - STATE(1212), 1, - sym_block, - STATE(1776), 1, + STATE(1871), 1, + sym_string, + STATE(1872), 1, aux_sym_import_declaration_repeat1, - [23046] = 5, + [22999] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3750), 1, - anon_sym_RPAREN, + ACTIONS(23), 1, + anon_sym_LBRACE, ACTIONS(4749), 1, - anon_sym_COMMA, - STATE(680), 1, + sym__newline, + STATE(1084), 1, + sym_block, + STATE(1689), 1, aux_sym_import_declaration_repeat1, - [23062] = 3, + [23015] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4751), 2, - ts_builtin_sym_end, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1031), 1, + sym_block, + [23031] = 4, + ACTIONS(4576), 1, + sym_comment, + ACTIONS(4751), 1, + anon_sym_DQUOTE, + STATE(1793), 1, + aux_sym_string_repeat1, ACTIONS(4753), 2, - anon_sym_import, - sym_identifier, - [23074] = 5, + sym_string_content, + sym_escape_sequence, + [23045] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1056), 1, - sym_block, - [23090] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(251), 1, - sym__newline, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - STATE(1017), 1, - sym_block, - [23106] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, + ACTIONS(4438), 1, + anon_sym_COMMA, ACTIONS(4755), 1, anon_sym_RPAREN, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [23119] = 4, + [23061] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, - sym__newline, + ACTIONS(23), 1, + anon_sym_LBRACE, ACTIONS(4757), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23132] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, sym__newline, - ACTIONS(4759), 1, - anon_sym_else, - STATE(680), 1, + STATE(1085), 1, + sym_block, + STATE(1693), 1, aux_sym_import_declaration_repeat1, - [23145] = 4, + [23077] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + sym__newline, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + STATE(1034), 1, + sym_block, + [23093] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(4759), 1, + sym__newline, + STATE(1039), 1, + sym_block, + STATE(1707), 1, + aux_sym_import_declaration_repeat1, + [23109] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, sym__newline, ACTIONS(4761), 1, - anon_sym_RPAREN, - STATE(680), 1, + anon_sym_COMMA, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [23158] = 4, + [23122] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(4763), 1, - anon_sym_else, - STATE(680), 1, + anon_sym_RPAREN, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [23171] = 4, + [23135] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(4765), 1, - anon_sym_RBRACK, - STATE(680), 1, + anon_sym_else, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [23184] = 4, + [23148] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(4767), 1, - anon_sym_else, - STATE(680), 1, + anon_sym_RBRACK, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [23197] = 4, + [23161] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(4769), 1, anon_sym_else, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [23210] = 4, + [23174] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, - sym__newline, ACTIONS(4771), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23223] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, + anon_sym_RPAREN, ACTIONS(4773), 1, - anon_sym_PIPE, - STATE(680), 1, + sym__newline, + STATE(1918), 1, aux_sym_import_declaration_repeat1, - [23236] = 4, + [23187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(4775), 1, - anon_sym_else, - STATE(680), 1, + anon_sym_RPAREN, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [23249] = 4, + [23200] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, - anon_sym_PIPE, - ACTIONS(3423), 1, - anon_sym_COLON, - STATE(2137), 1, - sym_match_capture, - [23262] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, + ACTIONS(4775), 1, + anon_sym_RPAREN, ACTIONS(4777), 1, - anon_sym_else, - STATE(680), 1, + sym__newline, + STATE(1970), 1, aux_sym_import_declaration_repeat1, - [23275] = 4, + [23213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(4779), 1, - anon_sym_else, - STATE(680), 1, + anon_sym_RBRACK, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [23288] = 4, + [23226] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4781), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23301] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4783), 3, + ACTIONS(4781), 3, anon_sym_RPAREN, anon_sym_COMMA, sym__newline, - [23310] = 4, + [23235] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(4785), 1, - anon_sym_COMMA, - STATE(680), 1, + ACTIONS(4783), 1, + anon_sym_RPAREN, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [23323] = 4, + [23248] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(4783), 1, + anon_sym_RPAREN, + ACTIONS(4785), 1, + sym__newline, + STATE(1974), 1, + aux_sym_import_declaration_repeat1, + [23261] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, sym__newline, ACTIONS(4787), 1, - anon_sym_COMMA, - STATE(680), 1, + anon_sym_else, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [23336] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4789), 1, - anon_sym_RPAREN, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23349] = 4, + [23274] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4789), 1, anon_sym_RPAREN, ACTIONS(4791), 1, sym__newline, - STATE(1996), 1, + STATE(1975), 1, aux_sym_import_declaration_repeat1, - [23362] = 4, + [23287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(4793), 1, - anon_sym_RPAREN, - STATE(680), 1, + anon_sym_else, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [23375] = 4, + [23300] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4793), 1, - anon_sym_RPAREN, + ACTIONS(227), 1, + sym__newline, ACTIONS(4795), 1, - sym__newline, - STATE(1916), 1, + anon_sym_else, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [23388] = 4, + [23313] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(227), 1, + sym__newline, ACTIONS(4797), 1, - anon_sym_RBRACK, - ACTIONS(4799), 1, - sym__newline, - STATE(2003), 1, + anon_sym_else, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [23401] = 4, + [23326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(4799), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [23335] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, sym__newline, ACTIONS(4801), 1, - anon_sym_RBRACK, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23414] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4803), 1, - anon_sym_LBRACE, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23427] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4805), 1, - anon_sym_RPAREN, - ACTIONS(4807), 1, - sym__newline, - STATE(2025), 1, - aux_sym_import_declaration_repeat1, - [23440] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4809), 1, anon_sym_else, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [23453] = 4, + [23348] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3625), 1, + ACTIONS(4803), 1, anon_sym_RPAREN, - STATE(680), 1, + ACTIONS(4805), 1, + sym__newline, + STATE(1923), 1, aux_sym_import_declaration_repeat1, - [23466] = 2, + [23361] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4012), 3, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_COMMA, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [23374] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4809), 3, + anon_sym_COMMA, anon_sym_RBRACE, - sym_identifier, sym__newline, - [23475] = 4, + [23383] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(227), 1, + sym__newline, ACTIONS(4811), 1, - anon_sym_RPAREN, - ACTIONS(4813), 1, - sym__newline, - STATE(2030), 1, + anon_sym_PIPE, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [23488] = 4, + [23396] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4813), 1, + anon_sym_RBRACK, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [23409] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, sym__newline, ACTIONS(4815), 1, + anon_sym_COMMA, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [23422] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4817), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [23431] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4819), 1, anon_sym_else, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [23501] = 4, + [23444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(4821), 1, + anon_sym_RPAREN, + ACTIONS(4823), 1, sym__newline, - ACTIONS(1905), 1, + STATE(2020), 1, + aux_sym_import_declaration_repeat1, + [23457] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4825), 1, anon_sym_RBRACK, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [23514] = 4, + [23470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(4817), 1, - anon_sym_PIPE, - STATE(680), 1, + ACTIONS(4827), 1, + anon_sym_else, + STATE(682), 1, aux_sym_import_declaration_repeat1, + [23483] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3425), 1, + anon_sym_PIPE, + ACTIONS(3429), 1, + anon_sym_COLON, + STATE(2092), 1, + sym_match_capture, + [23496] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4829), 1, + anon_sym_RBRACK, + ACTIONS(4831), 1, + sym__newline, + STATE(1993), 1, + aux_sym_import_declaration_repeat1, + [23509] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4833), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [23518] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3958), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, [23527] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(4819), 1, - anon_sym_RBRACK, - STATE(680), 1, + ACTIONS(4835), 1, + anon_sym_else, + STATE(682), 1, aux_sym_import_declaration_repeat1, [23540] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(4821), 1, - anon_sym_LBRACE, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23553] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4116), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [23562] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4823), 1, + ACTIONS(4837), 1, anon_sym_RBRACK, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, + [23553] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4839), 1, + anon_sym_RBRACK, + ACTIONS(4841), 1, + sym__newline, + STATE(1969), 1, + aux_sym_import_declaration_repeat1, + [23566] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4167), 3, + anon_sym_RBRACE, + sym_identifier, + sym__newline, [23575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4107), 1, - anon_sym_RBRACE, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23588] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4825), 1, - anon_sym_RBRACK, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23601] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4827), 1, - anon_sym_RBRACK, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23614] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4829), 1, - anon_sym_RBRACK, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23627] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4831), 1, - anon_sym_RBRACK, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23640] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4833), 1, - anon_sym_RBRACK, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23653] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4835), 1, - anon_sym_RBRACK, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23666] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4837), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [23675] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4839), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23688] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4841), 1, - anon_sym_COMMA, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23701] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(4843), 1, - anon_sym_else, - STATE(680), 1, + anon_sym_LBRACE, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [23714] = 2, + [23588] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4845), 3, anon_sym_RPAREN, anon_sym_COMMA, sym__newline, - [23723] = 4, + [23597] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4847), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23736] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4849), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23749] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4851), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23762] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4853), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23775] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4855), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23788] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4857), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23801] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4175), 3, + ACTIONS(4847), 3, anon_sym_RPAREN, anon_sym_COMMA, sym__newline, + [23606] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4849), 1, + anon_sym_else, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [23619] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4851), 1, + anon_sym_RPAREN, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [23632] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4853), 1, + anon_sym_else, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [23645] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 3, + anon_sym_RBRACE, + sym_identifier, + sym__newline, + [23654] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4855), 1, + anon_sym_else, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [23667] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4857), 1, + anon_sym_else, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [23680] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4859), 1, + anon_sym_else, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [23693] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4861), 1, + anon_sym_else, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [23706] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4863), 1, + anon_sym_else, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [23719] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4865), 1, + anon_sym_RBRACK, + ACTIONS(4867), 1, + sym__newline, + STATE(1972), 1, + aux_sym_import_declaration_repeat1, + [23732] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4869), 1, + anon_sym_else, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [23745] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4871), 1, + anon_sym_RBRACK, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [23758] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4873), 1, + anon_sym_RPAREN, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [23771] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4875), 1, + anon_sym_RPAREN, + ACTIONS(4877), 1, + sym__newline, + STATE(1927), 1, + aux_sym_import_declaration_repeat1, + [23784] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4879), 1, + anon_sym_RBRACK, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [23797] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4881), 1, + anon_sym_else, + STATE(682), 1, + aux_sym_import_declaration_repeat1, [23810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(4859), 1, - anon_sym_RBRACK, - STATE(680), 1, + ACTIONS(4883), 1, + anon_sym_RPAREN, + STATE(682), 1, aux_sym_import_declaration_repeat1, [23823] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(4861), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23836] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4202), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [23845] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4863), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23858] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4865), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23871] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4867), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23884] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4869), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23897] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4871), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23910] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4873), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23923] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4875), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23936] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4877), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23949] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4879), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23962] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4881), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [23975] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4883), 3, + ACTIONS(4885), 1, anon_sym_RPAREN, - anon_sym_COMMA, - sym__newline, - [23984] = 3, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [23836] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(4885), 1, + anon_sym_RPAREN, ACTIONS(4887), 1, - anon_sym_AT, - ACTIONS(4885), 2, - sym_sink, - sym_identifier, - [23995] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4889), 3, - anon_sym_RPAREN, - anon_sym_COMMA, sym__newline, - [24004] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4891), 1, - anon_sym_else, - STATE(680), 1, + STATE(2040), 1, aux_sym_import_declaration_repeat1, - [24017] = 4, + [23849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(4889), 1, + anon_sym_RBRACK, + ACTIONS(4891), 1, + sym__newline, + STATE(1925), 1, + aux_sym_import_declaration_repeat1, + [23862] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, sym__newline, ACTIONS(4893), 1, anon_sym_else, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24030] = 4, + [23875] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, - anon_sym_RPAREN, - ACTIONS(4897), 1, + ACTIONS(227), 1, sym__newline, - STATE(1936), 1, + ACTIONS(4895), 1, + anon_sym_else, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24043] = 4, + [23888] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4897), 1, + anon_sym_else, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [23901] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, sym__newline, ACTIONS(4899), 1, anon_sym_else, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24056] = 2, + [23914] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4901), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(227), 1, sym__newline, - [24065] = 4, + ACTIONS(4901), 1, + anon_sym_else, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [23927] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(227), 1, + sym__newline, ACTIONS(4903), 1, - anon_sym_RBRACK, - ACTIONS(4905), 1, - sym__newline, - STATE(2000), 1, + anon_sym_else, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24078] = 4, + [23940] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4905), 1, + anon_sym_else, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [23953] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, sym__newline, ACTIONS(4907), 1, - anon_sym_RBRACK, - STATE(680), 1, + anon_sym_else, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24091] = 4, + [23966] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(4909), 1, - anon_sym_RBRACK, - STATE(680), 1, + anon_sym_else, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24104] = 4, + [23979] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(4911), 1, - anon_sym_RPAREN, - STATE(680), 1, + anon_sym_else, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24117] = 4, + [23992] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(4913), 1, - anon_sym_COMMA, - STATE(680), 1, + anon_sym_else, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24130] = 2, + [24005] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4915), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(227), 1, sym__newline, - [24139] = 4, + ACTIONS(4915), 1, + anon_sym_else, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [24018] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(227), 1, + sym__newline, ACTIONS(4917), 1, - anon_sym_RBRACK, - ACTIONS(4919), 1, - sym__newline, - STATE(2021), 1, + anon_sym_PIPE, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24152] = 4, + [24031] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(4921), 1, - anon_sym_RBRACK, - STATE(680), 1, + ACTIONS(4919), 1, + anon_sym_else, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24165] = 4, + [24044] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4923), 1, - anon_sym_RBRACK, + anon_sym_AT, + ACTIONS(4921), 2, + sym_sink, + sym_identifier, + [24055] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, ACTIONS(4925), 1, - sym__newline, - STATE(2022), 1, + anon_sym_RBRACK, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24178] = 4, + [24068] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(227), 1, + sym__newline, ACTIONS(4927), 1, - anon_sym_RBRACK, + anon_sym_else, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [24081] = 4, + ACTIONS(3), 1, + sym_comment, ACTIONS(4929), 1, - sym__newline, - STATE(1921), 1, - aux_sym_import_declaration_repeat1, - [24191] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4931), 1, anon_sym_RBRACK, - STATE(680), 1, + ACTIONS(4931), 1, + sym__newline, + STATE(1940), 1, aux_sym_import_declaration_repeat1, - [24204] = 4, + [24094] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(4933), 1, - anon_sym_RBRACK, - STATE(680), 1, + anon_sym_LBRACE, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24217] = 4, + [24107] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, - sym__newline, ACTIONS(4935), 1, - anon_sym_RPAREN, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [24230] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4937), 1, anon_sym_RBRACK, - ACTIONS(4939), 1, + ACTIONS(4937), 1, sym__newline, - STATE(1955), 1, + STATE(2008), 1, aux_sym_import_declaration_repeat1, - [24243] = 4, + [24120] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4939), 1, + anon_sym_RBRACK, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [24133] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(3649), 1, + anon_sym_RPAREN, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [24146] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, sym__newline, ACTIONS(4941), 1, anon_sym_else, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24256] = 4, + [24159] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, + sym__newline, + ACTIONS(1847), 1, + anon_sym_RBRACK, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [24172] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, sym__newline, ACTIONS(4943), 1, - anon_sym_RPAREN, - STATE(680), 1, + anon_sym_COMMA, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24269] = 4, + [24185] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(4945), 1, - anon_sym_else, - STATE(680), 1, + ACTIONS(3657), 1, + anon_sym_RBRACE, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24282] = 4, + [24198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(4945), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [24207] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3907), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [24216] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, sym__newline, ACTIONS(4947), 1, - anon_sym_COMMA, - STATE(680), 1, + anon_sym_else, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24295] = 4, + [24229] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, - sym__newline, ACTIONS(4949), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [24308] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, + anon_sym_RBRACK, ACTIONS(4951), 1, - anon_sym_else, - STATE(680), 1, + sym__newline, + STATE(2023), 1, aux_sym_import_declaration_repeat1, - [24321] = 4, + [24242] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(4953), 1, - anon_sym_else, - STATE(680), 1, + anon_sym_RBRACK, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24334] = 4, + [24255] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, - sym__newline, ACTIONS(4955), 1, - anon_sym_else, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [24347] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, + anon_sym_RBRACK, ACTIONS(4957), 1, - anon_sym_else, - STATE(680), 1, + sym__newline, + STATE(2024), 1, aux_sym_import_declaration_repeat1, - [24360] = 4, + [24268] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(227), 1, + sym__newline, ACTIONS(4959), 1, anon_sym_RBRACK, - ACTIONS(4961), 1, - sym__newline, - STATE(1958), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24373] = 4, + [24281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4961), 1, + anon_sym_RBRACK, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [24294] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, sym__newline, ACTIONS(4963), 1, - anon_sym_RBRACK, - STATE(680), 1, + anon_sym_else, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24386] = 4, + [24307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(4057), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [24316] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, sym__newline, ACTIONS(4965), 1, anon_sym_else, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24399] = 4, + [24329] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(4967), 1, anon_sym_else, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24412] = 4, + [24342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(4969), 1, anon_sym_else, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24425] = 4, + [24355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(4971), 1, - anon_sym_RBRACK, - STATE(680), 1, + anon_sym_else, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24438] = 4, + [24368] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(4973), 1, - anon_sym_RBRACK, - STATE(680), 1, + anon_sym_else, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24451] = 4, + [24381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 1, - anon_sym_RBRACK, + ACTIONS(4975), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [24390] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4771), 1, + anon_sym_RPAREN, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [24403] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, ACTIONS(4977), 1, + anon_sym_RBRACK, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [24416] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4979), 1, + anon_sym_else, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [24429] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4981), 1, + anon_sym_RBRACK, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [24442] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4983), 1, + anon_sym_RBRACK, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [24455] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4985), 1, + anon_sym_RBRACK, + ACTIONS(4987), 1, sym__newline, STATE(2037), 1, aux_sym_import_declaration_repeat1, - [24464] = 4, + [24468] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4979), 1, + ACTIONS(4989), 1, anon_sym_RBRACK, - ACTIONS(4981), 1, + ACTIONS(4991), 1, sym__newline, STATE(2038), 1, aux_sym_import_declaration_repeat1, - [24477] = 4, + [24481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(4983), 1, - anon_sym_RPAREN, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [24490] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4983), 1, - anon_sym_RPAREN, - ACTIONS(4985), 1, - sym__newline, - STATE(2005), 1, - aux_sym_import_declaration_repeat1, - [24503] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4156), 3, - anon_sym_RBRACE, - sym_identifier, - sym__newline, - [24512] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4987), 1, - anon_sym_RBRACK, - ACTIONS(4989), 1, - sym__newline, - STATE(1995), 1, - aux_sym_import_declaration_repeat1, - [24525] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(4991), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24538] = 4, + [24494] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, - ACTIONS(4993), 1, - anon_sym_RPAREN, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [24551] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4993), 1, - anon_sym_RPAREN, ACTIONS(4995), 1, - sym__newline, - STATE(1919), 1, + anon_sym_RBRACK, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24564] = 4, + [24507] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, + sym__newline, + ACTIONS(4048), 1, + anon_sym_RBRACE, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [24520] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, sym__newline, ACTIONS(4997), 1, anon_sym_else, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24577] = 4, + [24533] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(227), 1, + sym__newline, ACTIONS(4999), 1, - anon_sym_RPAREN, - ACTIONS(5001), 1, - sym__newline, - STATE(1934), 1, + anon_sym_else, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24590] = 2, + [24546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5003), 3, + ACTIONS(5001), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, sym__newline, - [24599] = 2, + [24555] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5005), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(227), 1, sym__newline, - [24608] = 4, + ACTIONS(5003), 1, + anon_sym_else, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [24568] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, + sym__newline, + ACTIONS(5005), 1, + anon_sym_RBRACK, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [24581] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, sym__newline, ACTIONS(5007), 1, - anon_sym_else, - STATE(680), 1, + anon_sym_COMMA, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24621] = 4, + [24594] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(5009), 1, - anon_sym_RBRACK, - STATE(680), 1, + anon_sym_else, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24634] = 4, + [24607] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(5011), 1, anon_sym_RBRACK, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24647] = 4, + [24620] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(5013), 1, - anon_sym_else, - STATE(680), 1, + anon_sym_RBRACK, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24660] = 2, + [24633] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5015), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(227), 1, sym__newline, - [24669] = 4, + ACTIONS(5015), 1, + anon_sym_else, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [24646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(5017), 1, - anon_sym_else, - STATE(680), 1, + anon_sym_RPAREN, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24682] = 4, + [24659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(5019), 1, - anon_sym_else, - STATE(680), 1, + anon_sym_RBRACK, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24695] = 4, + [24672] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(5021), 1, anon_sym_else, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24708] = 4, + [24685] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(5023), 1, anon_sym_else, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24721] = 4, + [24698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(5025), 1, anon_sym_else, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24734] = 4, + [24711] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(5027), 1, anon_sym_else, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24747] = 4, + [24724] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, - sym__newline, - ACTIONS(3617), 1, - anon_sym_RBRACE, - STATE(680), 1, - aux_sym_import_declaration_repeat1, - [24760] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, + ACTIONS(227), 1, sym__newline, ACTIONS(5029), 1, anon_sym_else, - STATE(680), 1, + STATE(682), 1, aux_sym_import_declaration_repeat1, - [24773] = 3, + [24737] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(227), 1, + sym__newline, ACTIONS(5031), 1, - anon_sym_COLON_COLON, + anon_sym_else, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [24750] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__newline, ACTIONS(5033), 1, - anon_sym_EQ, - [24783] = 3, + anon_sym_RBRACK, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [24763] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(227), 1, + sym__newline, ACTIONS(5035), 1, - anon_sym_COMMA, + anon_sym_else, + STATE(682), 1, + aux_sym_import_declaration_repeat1, + [24776] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(5037), 1, - anon_sym_PIPE, - [24793] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5041), 1, - anon_sym_AT, - [24803] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5043), 1, anon_sym_COMMA, - ACTIONS(5045), 1, + ACTIONS(5039), 1, anon_sym_PIPE, - [24813] = 3, + [24786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5047), 1, + ACTIONS(5041), 1, anon_sym_COLON_COLON, - ACTIONS(5049), 1, + ACTIONS(5043), 1, anon_sym_EQ, - [24823] = 3, + [24796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5045), 1, + anon_sym_COMMA, + ACTIONS(5047), 1, + anon_sym_PIPE, + [24806] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5049), 2, + anon_sym_RBRACK, + sym__newline, + [24814] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5051), 1, - anon_sym_COMMA, + sym_identifier, ACTIONS(5053), 1, - anon_sym_PIPE, - [24833] = 3, + anon_sym_AT, + [24824] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4657), 1, + anon_sym_LBRACE, + STATE(493), 1, + sym_initializer_list, + [24834] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5055), 1, anon_sym_COMMA, ACTIONS(5057), 1, anon_sym_PIPE, - [24843] = 2, + [24844] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5059), 2, sym_sink, sym_identifier, - [24851] = 3, + [24852] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5061), 1, - anon_sym_COMMA, + sym_identifier, ACTIONS(5063), 1, - anon_sym_PIPE, - [24861] = 3, + anon_sym_AT, + [24862] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5065), 1, - sym_identifier, + anon_sym_COMMA, ACTIONS(5067), 1, - anon_sym_AT, - [24871] = 2, + anon_sym_PIPE, + [24872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5069), 2, - sym_integer, - sym_character, - [24879] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5071), 1, + ACTIONS(5069), 1, anon_sym_COLON_COLON, - ACTIONS(5073), 1, + ACTIONS(5071), 1, anon_sym_EQ, - [24889] = 3, + [24882] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5073), 1, + anon_sym_LPAREN, + STATE(1275), 1, + sym_parameter_list, + [24892] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5075), 1, anon_sym_COLON_COLON, ACTIONS(5077), 1, anon_sym_EQ, - [24899] = 3, + [24902] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5079), 1, anon_sym_COLON_COLON, ACTIONS(5081), 1, anon_sym_EQ, - [24909] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5083), 2, - sym_sink, - sym_identifier, - [24917] = 3, + [24912] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(5083), 1, + anon_sym_COLON_COLON, ACTIONS(5085), 1, - sym_identifier, - ACTIONS(5087), 1, - anon_sym_AT, - [24927] = 3, + anon_sym_EQ, + [24922] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(5087), 1, + anon_sym_DASH, ACTIONS(5089), 1, - sym_identifier, - ACTIONS(5091), 1, - anon_sym_AT, - [24937] = 2, + sym_integer, + [24932] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5091), 2, + sym_integer, + sym_character, + [24940] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5093), 2, sym_sink, sym_identifier, - [24945] = 3, + [24948] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5095), 1, anon_sym_COLON_COLON, ACTIONS(5097), 1, anon_sym_EQ, - [24955] = 2, + [24958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5099), 2, - anon_sym_RBRACK, - sym__newline, - [24963] = 2, + ACTIONS(5099), 1, + anon_sym_COLON_COLON, + ACTIONS(5101), 1, + anon_sym_EQ, + [24968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5101), 2, - sym_sink, - sym_identifier, - [24971] = 3, + ACTIONS(915), 1, + anon_sym_LPAREN, + STATE(470), 1, + sym_argument_list, + [24978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4499), 1, - anon_sym_LBRACE, - STATE(493), 1, - sym_initializer_list, - [24981] = 2, + ACTIONS(5073), 1, + anon_sym_LPAREN, + STATE(1283), 1, + sym_parameter_list, + [24988] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5103), 2, sym_sink, sym_identifier, - [24989] = 3, + [24996] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5105), 1, - anon_sym_DASH, + anon_sym_COLON_COLON, ACTIONS(5107), 1, - sym_integer, - [24999] = 3, + anon_sym_EQ, + [25006] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5109), 1, - anon_sym_COLON_COLON, - ACTIONS(5111), 1, - anon_sym_EQ, - [25009] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5113), 1, - anon_sym_LPAREN, - STATE(1279), 1, - sym_parameter_list, - [25019] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5113), 1, - anon_sym_LPAREN, - STATE(1284), 1, - sym_parameter_list, - [25029] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5115), 1, - anon_sym_COLON_COLON, - ACTIONS(5117), 1, - anon_sym_EQ, - [25039] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5119), 1, anon_sym_COMMA, - ACTIONS(5121), 1, + ACTIONS(5111), 1, anon_sym_PIPE, - [25049] = 3, + [25016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5113), 1, + anon_sym_COLON_COLON, + ACTIONS(5115), 1, + anon_sym_EQ, + [25026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5117), 1, + anon_sym_COMMA, + ACTIONS(5119), 1, + anon_sym_PIPE, + [25036] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5121), 2, + sym_sink, + sym_identifier, + [25044] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5123), 1, - anon_sym_COLON_COLON, + sym_identifier, ACTIONS(5125), 1, - anon_sym_EQ, - [25059] = 3, + anon_sym_AT, + [25054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5113), 1, - anon_sym_LPAREN, - STATE(1282), 1, - sym_parameter_list, - [25069] = 3, + ACTIONS(5127), 2, + sym_sink, + sym_identifier, + [25062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5127), 1, - anon_sym_COLON_COLON, ACTIONS(5129), 1, - anon_sym_EQ, - [25079] = 2, - ACTIONS(3), 1, - sym_comment, + sym_identifier, ACTIONS(5131), 1, - anon_sym_COLON, - [25086] = 2, + anon_sym_AT, + [25072] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5133), 1, - anon_sym_COLON, - [25093] = 2, + anon_sym_COLON_COLON, + ACTIONS(5135), 1, + anon_sym_EQ, + [25082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5135), 1, - anon_sym_PIPE, - [25100] = 2, + ACTIONS(5073), 1, + anon_sym_LPAREN, + STATE(1281), 1, + sym_parameter_list, + [25092] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5137), 1, anon_sym_COLON, - [25107] = 2, + [25099] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5139), 1, anon_sym_COLON, - [25114] = 2, + [25106] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5141), 1, - anon_sym_COLON, - [25121] = 2, + anon_sym_PIPE, + [25113] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5143), 1, anon_sym_COLON, - [25128] = 2, + [25120] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5145), 1, - sym_identifier, - [25135] = 2, + anon_sym_COLON, + [25127] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5147), 1, anon_sym_COLON, - [25142] = 2, + [25134] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5149), 1, - anon_sym_PIPE, - [25149] = 2, + sym_identifier, + [25141] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5151), 1, - sym_identifier, - [25156] = 2, + anon_sym_COLON, + [25148] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5153), 1, anon_sym_COLON, - [25163] = 2, + [25155] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5155), 1, - sym_integer, - [25170] = 2, + anon_sym_COLON, + [25162] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5157), 1, - ts_builtin_sym_end, - [25177] = 2, + sym_identifier, + [25169] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5159), 1, - sym_identifier, - [25184] = 2, + anon_sym_COLON, + [25176] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5161), 1, sym_identifier, - [25191] = 2, + [25183] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5163), 1, anon_sym_COLON, - [25198] = 2, + [25190] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5165), 1, - sym_identifier, - [25205] = 2, + anon_sym_COLON, + [25197] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5167), 1, - anon_sym_PIPE, - [25212] = 2, + sym_identifier, + [25204] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5169), 1, - anon_sym_COLON, - [25219] = 2, + sym_identifier, + [25211] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5123), 1, + sym_identifier, + [25218] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5171), 1, - anon_sym_COLON, - [25226] = 2, + sym_identifier, + [25225] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5173), 1, - anon_sym_PIPE, - [25233] = 2, + sym_identifier, + [25232] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5175), 1, - anon_sym_PIPE, - [25240] = 2, + anon_sym_RPAREN, + [25239] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5177), 1, anon_sym_COLON, - [25247] = 2, + [25246] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5179), 1, - anon_sym_COLON, - [25254] = 2, + anon_sym_PIPE, + [25253] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5181), 1, anon_sym_COLON, - [25261] = 2, + [25260] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5183), 1, anon_sym_COLON, - [25268] = 2, + [25267] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5185), 1, - anon_sym_COLON, - [25275] = 2, + anon_sym_PIPE, + [25274] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5187), 1, anon_sym_COLON, - [25282] = 2, + [25281] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5189), 1, - sym_identifier, - [25289] = 2, + anon_sym_COLON, + [25288] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5191), 1, anon_sym_COLON, - [25296] = 2, + [25295] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5193), 1, anon_sym_COLON, - [25303] = 2, + [25302] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5195), 1, - anon_sym_EQ, - [25310] = 2, + anon_sym_COLON, + [25309] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5197), 1, - sym_identifier, - [25317] = 2, + anon_sym_SEMI, + [25316] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5199), 1, anon_sym_COLON, - [25324] = 2, + [25323] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5201), 1, - anon_sym_PIPE, - [25331] = 2, + sym_integer, + [25330] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5203), 1, - sym_identifier, - [25338] = 2, + anon_sym_COLON, + [25337] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5205), 1, anon_sym_COLON, - [25345] = 2, + [25344] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5207), 1, sym_identifier, - [25352] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1683), 1, - anon_sym_SEMI, - [25359] = 2, + [25351] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5209), 1, - anon_sym_COLON, - [25366] = 2, + sym_identifier, + [25358] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5211), 1, anon_sym_COLON, - [25373] = 2, + [25365] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5213), 1, - sym_identifier, - [25380] = 2, + anon_sym_COLON, + [25372] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5215), 1, - anon_sym_RPAREN, - [25387] = 2, + anon_sym_EQ, + [25379] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5217), 1, anon_sym_COLON, - [25394] = 2, + [25386] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5219), 1, - sym_identifier, - [25401] = 2, + anon_sym_PIPE, + [25393] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5221), 1, - anon_sym_PIPE, - [25408] = 2, + anon_sym_COLON, + [25400] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5223), 1, anon_sym_COLON, - [25415] = 2, + [25407] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5225), 1, - anon_sym_COLON, - [25422] = 2, + sym_identifier, + [25414] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5227), 1, - anon_sym_COLON, - [25429] = 2, + sym_identifier, + [25421] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5229), 1, anon_sym_COLON, - [25436] = 2, + [25428] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5231), 1, anon_sym_COLON, - [25443] = 2, + [25435] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5233), 1, - anon_sym_SEMI, - [25450] = 2, + anon_sym_PIPE, + [25442] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5235), 1, - sym_identifier, - [25457] = 2, + anon_sym_COLON, + [25449] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5237), 1, anon_sym_COLON, - [25464] = 2, + [25456] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5239), 1, anon_sym_COLON, - [25471] = 2, + [25463] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5241), 1, anon_sym_COLON, - [25478] = 2, + [25470] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5243), 1, - anon_sym_COLON, - [25485] = 2, + sym_identifier, + [25477] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5245), 1, - anon_sym_COLON, - [25492] = 2, + sym_identifier, + [25484] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5247), 1, - anon_sym_COLON, - [25499] = 2, + anon_sym_PIPE, + [25491] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1651), 1, + anon_sym_SEMI, + [25498] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5249), 1, - anon_sym_COLON, - [25506] = 2, + sym_identifier, + [25505] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5251), 1, - sym_identifier, - [25513] = 2, + anon_sym_COLON, + [25512] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5253), 1, anon_sym_COLON, - [25520] = 2, + [25519] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5255), 1, - sym_identifier, - [25527] = 2, + anon_sym_COLON, + [25526] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5257), 1, anon_sym_COLON, - [25534] = 2, + [25533] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5259), 1, anon_sym_COLON, - [25541] = 2, + [25540] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5261), 1, anon_sym_COLON, - [25548] = 2, + [25547] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5263), 1, anon_sym_COLON, - [25555] = 2, + [25554] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5265), 1, anon_sym_COLON, - [25562] = 2, + [25561] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5267), 1, - sym_identifier, - [25569] = 2, + anon_sym_RPAREN, + [25568] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5269), 1, anon_sym_COLON, - [25576] = 2, + [25575] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5271), 1, - anon_sym_COLON, - [25583] = 2, + sym_identifier, + [25582] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5273), 1, - anon_sym_COLON, - [25590] = 2, + sym_identifier, + [25589] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5275), 1, anon_sym_COLON, - [25597] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5039), 1, - sym_identifier, - [25604] = 2, + [25596] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5277), 1, anon_sym_COLON, - [25611] = 2, + [25603] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5279), 1, anon_sym_COLON, - [25618] = 2, + [25610] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5281), 1, anon_sym_COLON, - [25625] = 2, + [25617] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5283), 1, - anon_sym_COLON, - [25632] = 2, + anon_sym_PIPE, + [25624] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5285), 1, anon_sym_COLON, - [25639] = 2, + [25631] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5287), 1, anon_sym_COLON, - [25646] = 2, + [25638] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5289), 1, - anon_sym_RPAREN, - [25653] = 2, + anon_sym_COLON, + [25645] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5291), 1, - sym_identifier, - [25660] = 2, + anon_sym_PIPE, + [25652] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5293), 1, anon_sym_COLON, - [25667] = 2, + [25659] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5295), 1, - anon_sym_PIPE, - [25674] = 2, + anon_sym_COLON, + [25666] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5297), 1, - anon_sym_PIPE, - [25681] = 2, + sym_identifier, + [25673] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5299), 1, anon_sym_COLON, - [25688] = 2, + [25680] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5301), 1, anon_sym_COLON, - [25695] = 2, + [25687] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5303), 1, - anon_sym_COLON, - [25702] = 2, + anon_sym_PIPE, + [25694] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5305), 1, - anon_sym_COLON, - [25709] = 2, + ts_builtin_sym_end, + [25701] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5307), 1, anon_sym_COLON, - [25716] = 2, + [25708] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5309), 1, - anon_sym_COLON, - [25723] = 2, + sym_identifier, + [25715] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5061), 1, + sym_identifier, + [25722] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5311), 1, anon_sym_COLON, - [25730] = 2, + [25729] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5313), 1, - sym_identifier, - [25737] = 2, + anon_sym_COLON, + [25736] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5315), 1, - sym_identifier, - [25744] = 2, + anon_sym_COLON, + [25743] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5317), 1, - sym_identifier, - [25751] = 2, + anon_sym_PIPE, + [25750] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5319), 1, - sym_identifier, - [25758] = 2, + anon_sym_COLON, + [25757] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5321), 1, - sym_identifier, - [25765] = 2, + anon_sym_COLON, + [25764] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5323), 1, sym_identifier, - [25772] = 2, + [25771] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5325), 1, - anon_sym_COLON, - [25779] = 2, + sym_identifier, + [25778] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5327), 1, anon_sym_COLON, - [25786] = 2, + [25785] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5329), 1, anon_sym_COLON, - [25793] = 2, + [25792] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5331), 1, - sym_identifier, - [25800] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5085), 1, - sym_identifier, - [25807] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1613), 1, - anon_sym_SEMI, - [25814] = 2, + anon_sym_COLON, + [25799] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5333), 1, - anon_sym_SEMI, - [25821] = 2, + anon_sym_COLON, + [25806] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5335), 1, sym_identifier, - [25828] = 2, + [25813] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5337), 1, - anon_sym_PIPE, - [25835] = 2, + sym_identifier, + [25820] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1613), 1, + anon_sym_SEMI, + [25827] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5339), 1, + anon_sym_SEMI, + [25834] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5341), 1, + sym_identifier, + [25841] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5343), 1, + sym_identifier, + [25848] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5345), 1, anon_sym_COLON, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1251)] = 0, - [SMALL_STATE(1252)] = 71, - [SMALL_STATE(1253)] = 144, - [SMALL_STATE(1254)] = 216, - [SMALL_STATE(1255)] = 288, - [SMALL_STATE(1256)] = 359, - [SMALL_STATE(1257)] = 430, - [SMALL_STATE(1258)] = 501, - [SMALL_STATE(1259)] = 572, - [SMALL_STATE(1260)] = 643, - [SMALL_STATE(1261)] = 714, - [SMALL_STATE(1262)] = 778, - [SMALL_STATE(1263)] = 842, - [SMALL_STATE(1264)] = 906, - [SMALL_STATE(1265)] = 970, - [SMALL_STATE(1266)] = 1034, - [SMALL_STATE(1267)] = 1098, - [SMALL_STATE(1268)] = 1177, - [SMALL_STATE(1269)] = 1256, - [SMALL_STATE(1270)] = 1335, - [SMALL_STATE(1271)] = 1414, - [SMALL_STATE(1272)] = 1493, - [SMALL_STATE(1273)] = 1572, - [SMALL_STATE(1274)] = 1648, - [SMALL_STATE(1275)] = 1724, - [SMALL_STATE(1276)] = 1800, - [SMALL_STATE(1277)] = 1874, - [SMALL_STATE(1278)] = 1950, - [SMALL_STATE(1279)] = 2026, - [SMALL_STATE(1280)] = 2102, - [SMALL_STATE(1281)] = 2178, - [SMALL_STATE(1282)] = 2254, - [SMALL_STATE(1283)] = 2330, - [SMALL_STATE(1284)] = 2406, - [SMALL_STATE(1285)] = 2482, - [SMALL_STATE(1286)] = 2555, - [SMALL_STATE(1287)] = 2628, - [SMALL_STATE(1288)] = 2701, - [SMALL_STATE(1289)] = 2774, - [SMALL_STATE(1290)] = 2847, - [SMALL_STATE(1291)] = 2920, - [SMALL_STATE(1292)] = 2993, - [SMALL_STATE(1293)] = 3066, - [SMALL_STATE(1294)] = 3139, - [SMALL_STATE(1295)] = 3212, - [SMALL_STATE(1296)] = 3285, - [SMALL_STATE(1297)] = 3358, - [SMALL_STATE(1298)] = 3431, - [SMALL_STATE(1299)] = 3504, - [SMALL_STATE(1300)] = 3577, - [SMALL_STATE(1301)] = 3650, - [SMALL_STATE(1302)] = 3723, - [SMALL_STATE(1303)] = 3796, - [SMALL_STATE(1304)] = 3869, - [SMALL_STATE(1305)] = 3942, - [SMALL_STATE(1306)] = 4015, - [SMALL_STATE(1307)] = 4088, - [SMALL_STATE(1308)] = 4161, - [SMALL_STATE(1309)] = 4234, - [SMALL_STATE(1310)] = 4307, - [SMALL_STATE(1311)] = 4380, - [SMALL_STATE(1312)] = 4453, - [SMALL_STATE(1313)] = 4526, - [SMALL_STATE(1314)] = 4599, - [SMALL_STATE(1315)] = 4672, - [SMALL_STATE(1316)] = 4745, - [SMALL_STATE(1317)] = 4818, - [SMALL_STATE(1318)] = 4891, - [SMALL_STATE(1319)] = 4964, - [SMALL_STATE(1320)] = 5034, - [SMALL_STATE(1321)] = 5104, - [SMALL_STATE(1322)] = 5174, - [SMALL_STATE(1323)] = 5244, - [SMALL_STATE(1324)] = 5314, - [SMALL_STATE(1325)] = 5384, - [SMALL_STATE(1326)] = 5454, - [SMALL_STATE(1327)] = 5524, - [SMALL_STATE(1328)] = 5594, - [SMALL_STATE(1329)] = 5664, - [SMALL_STATE(1330)] = 5734, - [SMALL_STATE(1331)] = 5804, - [SMALL_STATE(1332)] = 5874, - [SMALL_STATE(1333)] = 5944, - [SMALL_STATE(1334)] = 6014, - [SMALL_STATE(1335)] = 6084, - [SMALL_STATE(1336)] = 6154, - [SMALL_STATE(1337)] = 6224, - [SMALL_STATE(1338)] = 6294, - [SMALL_STATE(1339)] = 6364, - [SMALL_STATE(1340)] = 6434, - [SMALL_STATE(1341)] = 6504, - [SMALL_STATE(1342)] = 6574, - [SMALL_STATE(1343)] = 6644, - [SMALL_STATE(1344)] = 6714, - [SMALL_STATE(1345)] = 6784, - [SMALL_STATE(1346)] = 6854, - [SMALL_STATE(1347)] = 6924, - [SMALL_STATE(1348)] = 6994, - [SMALL_STATE(1349)] = 7064, - [SMALL_STATE(1350)] = 7134, - [SMALL_STATE(1351)] = 7204, - [SMALL_STATE(1352)] = 7274, - [SMALL_STATE(1353)] = 7344, - [SMALL_STATE(1354)] = 7414, - [SMALL_STATE(1355)] = 7484, - [SMALL_STATE(1356)] = 7554, - [SMALL_STATE(1357)] = 7624, - [SMALL_STATE(1358)] = 7694, - [SMALL_STATE(1359)] = 7761, - [SMALL_STATE(1360)] = 7814, - [SMALL_STATE(1361)] = 7862, - [SMALL_STATE(1362)] = 7910, - [SMALL_STATE(1363)] = 7958, - [SMALL_STATE(1364)] = 8006, - [SMALL_STATE(1365)] = 8054, - [SMALL_STATE(1366)] = 8102, - [SMALL_STATE(1367)] = 8150, - [SMALL_STATE(1368)] = 8198, - [SMALL_STATE(1369)] = 8246, - [SMALL_STATE(1370)] = 8314, - [SMALL_STATE(1371)] = 8376, - [SMALL_STATE(1372)] = 8432, - [SMALL_STATE(1373)] = 8486, - [SMALL_STATE(1374)] = 8554, - [SMALL_STATE(1375)] = 8618, - [SMALL_STATE(1376)] = 8680, - [SMALL_STATE(1377)] = 8734, - [SMALL_STATE(1378)] = 8794, - [SMALL_STATE(1379)] = 8850, - [SMALL_STATE(1380)] = 8914, - [SMALL_STATE(1381)] = 8974, - [SMALL_STATE(1382)] = 9026, - [SMALL_STATE(1383)] = 9092, - [SMALL_STATE(1384)] = 9154, - [SMALL_STATE(1385)] = 9208, - [SMALL_STATE(1386)] = 9260, - [SMALL_STATE(1387)] = 9312, - [SMALL_STATE(1388)] = 9378, - [SMALL_STATE(1389)] = 9444, - [SMALL_STATE(1390)] = 9498, - [SMALL_STATE(1391)] = 9560, - [SMALL_STATE(1392)] = 9618, - [SMALL_STATE(1393)] = 9672, - [SMALL_STATE(1394)] = 9732, - [SMALL_STATE(1395)] = 9792, - [SMALL_STATE(1396)] = 9852, - [SMALL_STATE(1397)] = 9914, - [SMALL_STATE(1398)] = 9988, - [SMALL_STATE(1399)] = 10046, - [SMALL_STATE(1400)] = 10106, - [SMALL_STATE(1401)] = 10164, - [SMALL_STATE(1402)] = 10216, - [SMALL_STATE(1403)] = 10270, - [SMALL_STATE(1404)] = 10328, - [SMALL_STATE(1405)] = 10394, - [SMALL_STATE(1406)] = 10456, - [SMALL_STATE(1407)] = 10529, - [SMALL_STATE(1408)] = 10602, - [SMALL_STATE(1409)] = 10676, - [SMALL_STATE(1410)] = 10748, - [SMALL_STATE(1411)] = 10818, - [SMALL_STATE(1412)] = 10892, - [SMALL_STATE(1413)] = 10969, - [SMALL_STATE(1414)] = 11038, - [SMALL_STATE(1415)] = 11112, - [SMALL_STATE(1416)] = 11186, - [SMALL_STATE(1417)] = 11260, - [SMALL_STATE(1418)] = 11334, - [SMALL_STATE(1419)] = 11408, - [SMALL_STATE(1420)] = 11482, - [SMALL_STATE(1421)] = 11556, - [SMALL_STATE(1422)] = 11630, - [SMALL_STATE(1423)] = 11704, - [SMALL_STATE(1424)] = 11778, - [SMALL_STATE(1425)] = 11852, - [SMALL_STATE(1426)] = 11926, - [SMALL_STATE(1427)] = 12000, - [SMALL_STATE(1428)] = 12074, - [SMALL_STATE(1429)] = 12145, - [SMALL_STATE(1430)] = 12210, - [SMALL_STATE(1431)] = 12277, - [SMALL_STATE(1432)] = 12348, - [SMALL_STATE(1433)] = 12419, - [SMALL_STATE(1434)] = 12490, - [SMALL_STATE(1435)] = 12557, - [SMALL_STATE(1436)] = 12625, - [SMALL_STATE(1437)] = 12687, - [SMALL_STATE(1438)] = 12749, - [SMALL_STATE(1439)] = 12791, - [SMALL_STATE(1440)] = 12859, - [SMALL_STATE(1441)] = 12923, - [SMALL_STATE(1442)] = 12969, - [SMALL_STATE(1443)] = 13029, - [SMALL_STATE(1444)] = 13085, - [SMALL_STATE(1445)] = 13139, - [SMALL_STATE(1446)] = 13191, - [SMALL_STATE(1447)] = 13239, - [SMALL_STATE(1448)] = 13285, - [SMALL_STATE(1449)] = 13345, - [SMALL_STATE(1450)] = 13401, - [SMALL_STATE(1451)] = 13455, - [SMALL_STATE(1452)] = 13507, - [SMALL_STATE(1453)] = 13555, - [SMALL_STATE(1454)] = 13617, - [SMALL_STATE(1455)] = 13659, - [SMALL_STATE(1456)] = 13701, - [SMALL_STATE(1457)] = 13763, - [SMALL_STATE(1458)] = 13825, - [SMALL_STATE(1459)] = 13887, - [SMALL_STATE(1460)] = 13929, - [SMALL_STATE(1461)] = 13990, - [SMALL_STATE(1462)] = 14027, - [SMALL_STATE(1463)] = 14088, - [SMALL_STATE(1464)] = 14153, - [SMALL_STATE(1465)] = 14214, - [SMALL_STATE(1466)] = 14279, - [SMALL_STATE(1467)] = 14344, - [SMALL_STATE(1468)] = 14409, - [SMALL_STATE(1469)] = 14474, - [SMALL_STATE(1470)] = 14515, - [SMALL_STATE(1471)] = 14580, - [SMALL_STATE(1472)] = 14617, - [SMALL_STATE(1473)] = 14682, - [SMALL_STATE(1474)] = 14747, - [SMALL_STATE(1475)] = 14812, - [SMALL_STATE(1476)] = 14873, - [SMALL_STATE(1477)] = 14938, - [SMALL_STATE(1478)] = 14999, - [SMALL_STATE(1479)] = 15064, - [SMALL_STATE(1480)] = 15129, - [SMALL_STATE(1481)] = 15173, - [SMALL_STATE(1482)] = 15231, - [SMALL_STATE(1483)] = 15285, - [SMALL_STATE(1484)] = 15337, - [SMALL_STATE(1485)] = 15387, - [SMALL_STATE(1486)] = 15433, - [SMALL_STATE(1487)] = 15477, - [SMALL_STATE(1488)] = 15535, - [SMALL_STATE(1489)] = 15589, - [SMALL_STATE(1490)] = 15641, - [SMALL_STATE(1491)] = 15691, - [SMALL_STATE(1492)] = 15737, - [SMALL_STATE(1493)] = 15796, - [SMALL_STATE(1494)] = 15855, - [SMALL_STATE(1495)] = 15886, - [SMALL_STATE(1496)] = 15917, - [SMALL_STATE(1497)] = 15942, - [SMALL_STATE(1498)] = 15967, - [SMALL_STATE(1499)] = 15995, - [SMALL_STATE(1500)] = 16023, - [SMALL_STATE(1501)] = 16049, - [SMALL_STATE(1502)] = 16075, - [SMALL_STATE(1503)] = 16101, - [SMALL_STATE(1504)] = 16127, - [SMALL_STATE(1505)] = 16153, - [SMALL_STATE(1506)] = 16179, - [SMALL_STATE(1507)] = 16205, - [SMALL_STATE(1508)] = 16231, - [SMALL_STATE(1509)] = 16257, - [SMALL_STATE(1510)] = 16283, - [SMALL_STATE(1511)] = 16309, - [SMALL_STATE(1512)] = 16335, - [SMALL_STATE(1513)] = 16361, - [SMALL_STATE(1514)] = 16387, - [SMALL_STATE(1515)] = 16412, - [SMALL_STATE(1516)] = 16435, - [SMALL_STATE(1517)] = 16458, - [SMALL_STATE(1518)] = 16481, - [SMALL_STATE(1519)] = 16504, - [SMALL_STATE(1520)] = 16524, - [SMALL_STATE(1521)] = 16544, - [SMALL_STATE(1522)] = 16564, - [SMALL_STATE(1523)] = 16584, - [SMALL_STATE(1524)] = 16604, - [SMALL_STATE(1525)] = 16624, - [SMALL_STATE(1526)] = 16644, - [SMALL_STATE(1527)] = 16666, - [SMALL_STATE(1528)] = 16688, - [SMALL_STATE(1529)] = 16708, - [SMALL_STATE(1530)] = 16728, - [SMALL_STATE(1531)] = 16748, - [SMALL_STATE(1532)] = 16768, - [SMALL_STATE(1533)] = 16788, - [SMALL_STATE(1534)] = 16808, - [SMALL_STATE(1535)] = 16828, - [SMALL_STATE(1536)] = 16848, - [SMALL_STATE(1537)] = 16867, - [SMALL_STATE(1538)] = 16886, - [SMALL_STATE(1539)] = 16905, - [SMALL_STATE(1540)] = 16924, - [SMALL_STATE(1541)] = 16943, - [SMALL_STATE(1542)] = 16962, - [SMALL_STATE(1543)] = 16981, - [SMALL_STATE(1544)] = 17000, - [SMALL_STATE(1545)] = 17019, - [SMALL_STATE(1546)] = 17038, - [SMALL_STATE(1547)] = 17057, - [SMALL_STATE(1548)] = 17076, - [SMALL_STATE(1549)] = 17095, - [SMALL_STATE(1550)] = 17114, - [SMALL_STATE(1551)] = 17133, - [SMALL_STATE(1552)] = 17152, - [SMALL_STATE(1553)] = 17171, - [SMALL_STATE(1554)] = 17190, - [SMALL_STATE(1555)] = 17209, - [SMALL_STATE(1556)] = 17228, - [SMALL_STATE(1557)] = 17247, - [SMALL_STATE(1558)] = 17266, - [SMALL_STATE(1559)] = 17285, - [SMALL_STATE(1560)] = 17304, - [SMALL_STATE(1561)] = 17323, - [SMALL_STATE(1562)] = 17342, - [SMALL_STATE(1563)] = 17361, - [SMALL_STATE(1564)] = 17380, - [SMALL_STATE(1565)] = 17399, - [SMALL_STATE(1566)] = 17418, - [SMALL_STATE(1567)] = 17437, - [SMALL_STATE(1568)] = 17456, - [SMALL_STATE(1569)] = 17475, - [SMALL_STATE(1570)] = 17494, - [SMALL_STATE(1571)] = 17513, - [SMALL_STATE(1572)] = 17532, - [SMALL_STATE(1573)] = 17551, - [SMALL_STATE(1574)] = 17570, - [SMALL_STATE(1575)] = 17589, - [SMALL_STATE(1576)] = 17608, - [SMALL_STATE(1577)] = 17627, - [SMALL_STATE(1578)] = 17646, - [SMALL_STATE(1579)] = 17665, - [SMALL_STATE(1580)] = 17684, - [SMALL_STATE(1581)] = 17703, - [SMALL_STATE(1582)] = 17722, - [SMALL_STATE(1583)] = 17741, - [SMALL_STATE(1584)] = 17760, - [SMALL_STATE(1585)] = 17779, - [SMALL_STATE(1586)] = 17798, - [SMALL_STATE(1587)] = 17817, - [SMALL_STATE(1588)] = 17836, - [SMALL_STATE(1589)] = 17855, - [SMALL_STATE(1590)] = 17874, - [SMALL_STATE(1591)] = 17893, - [SMALL_STATE(1592)] = 17912, - [SMALL_STATE(1593)] = 17931, - [SMALL_STATE(1594)] = 17950, - [SMALL_STATE(1595)] = 17969, - [SMALL_STATE(1596)] = 17988, - [SMALL_STATE(1597)] = 18007, - [SMALL_STATE(1598)] = 18026, - [SMALL_STATE(1599)] = 18045, - [SMALL_STATE(1600)] = 18064, - [SMALL_STATE(1601)] = 18083, - [SMALL_STATE(1602)] = 18102, - [SMALL_STATE(1603)] = 18121, - [SMALL_STATE(1604)] = 18140, - [SMALL_STATE(1605)] = 18159, - [SMALL_STATE(1606)] = 18178, - [SMALL_STATE(1607)] = 18197, - [SMALL_STATE(1608)] = 18216, - [SMALL_STATE(1609)] = 18235, - [SMALL_STATE(1610)] = 18254, - [SMALL_STATE(1611)] = 18273, - [SMALL_STATE(1612)] = 18292, - [SMALL_STATE(1613)] = 18311, - [SMALL_STATE(1614)] = 18330, - [SMALL_STATE(1615)] = 18349, - [SMALL_STATE(1616)] = 18368, - [SMALL_STATE(1617)] = 18387, - [SMALL_STATE(1618)] = 18406, - [SMALL_STATE(1619)] = 18425, - [SMALL_STATE(1620)] = 18444, - [SMALL_STATE(1621)] = 18463, - [SMALL_STATE(1622)] = 18482, - [SMALL_STATE(1623)] = 18495, - [SMALL_STATE(1624)] = 18514, - [SMALL_STATE(1625)] = 18533, - [SMALL_STATE(1626)] = 18552, - [SMALL_STATE(1627)] = 18571, - [SMALL_STATE(1628)] = 18590, - [SMALL_STATE(1629)] = 18609, - [SMALL_STATE(1630)] = 18628, - [SMALL_STATE(1631)] = 18647, - [SMALL_STATE(1632)] = 18666, - [SMALL_STATE(1633)] = 18685, - [SMALL_STATE(1634)] = 18704, - [SMALL_STATE(1635)] = 18723, - [SMALL_STATE(1636)] = 18742, - [SMALL_STATE(1637)] = 18761, - [SMALL_STATE(1638)] = 18780, - [SMALL_STATE(1639)] = 18799, - [SMALL_STATE(1640)] = 18818, - [SMALL_STATE(1641)] = 18837, - [SMALL_STATE(1642)] = 18856, - [SMALL_STATE(1643)] = 18875, - [SMALL_STATE(1644)] = 18894, - [SMALL_STATE(1645)] = 18913, - [SMALL_STATE(1646)] = 18932, - [SMALL_STATE(1647)] = 18951, - [SMALL_STATE(1648)] = 18970, - [SMALL_STATE(1649)] = 18989, - [SMALL_STATE(1650)] = 19008, - [SMALL_STATE(1651)] = 19027, - [SMALL_STATE(1652)] = 19046, - [SMALL_STATE(1653)] = 19065, - [SMALL_STATE(1654)] = 19084, - [SMALL_STATE(1655)] = 19103, - [SMALL_STATE(1656)] = 19122, - [SMALL_STATE(1657)] = 19141, - [SMALL_STATE(1658)] = 19160, - [SMALL_STATE(1659)] = 19179, - [SMALL_STATE(1660)] = 19198, - [SMALL_STATE(1661)] = 19217, - [SMALL_STATE(1662)] = 19236, - [SMALL_STATE(1663)] = 19252, - [SMALL_STATE(1664)] = 19268, - [SMALL_STATE(1665)] = 19284, - [SMALL_STATE(1666)] = 19300, - [SMALL_STATE(1667)] = 19312, - [SMALL_STATE(1668)] = 19328, - [SMALL_STATE(1669)] = 19344, - [SMALL_STATE(1670)] = 19360, - [SMALL_STATE(1671)] = 19376, - [SMALL_STATE(1672)] = 19392, - [SMALL_STATE(1673)] = 19406, - [SMALL_STATE(1674)] = 19422, - [SMALL_STATE(1675)] = 19438, - [SMALL_STATE(1676)] = 19454, - [SMALL_STATE(1677)] = 19470, - [SMALL_STATE(1678)] = 19486, - [SMALL_STATE(1679)] = 19502, - [SMALL_STATE(1680)] = 19518, - [SMALL_STATE(1681)] = 19534, - [SMALL_STATE(1682)] = 19550, - [SMALL_STATE(1683)] = 19566, - [SMALL_STATE(1684)] = 19578, - [SMALL_STATE(1685)] = 19594, - [SMALL_STATE(1686)] = 19610, - [SMALL_STATE(1687)] = 19626, - [SMALL_STATE(1688)] = 19642, - [SMALL_STATE(1689)] = 19658, - [SMALL_STATE(1690)] = 19674, - [SMALL_STATE(1691)] = 19690, - [SMALL_STATE(1692)] = 19706, - [SMALL_STATE(1693)] = 19722, - [SMALL_STATE(1694)] = 19738, - [SMALL_STATE(1695)] = 19750, - [SMALL_STATE(1696)] = 19766, - [SMALL_STATE(1697)] = 19782, - [SMALL_STATE(1698)] = 19798, - [SMALL_STATE(1699)] = 19810, - [SMALL_STATE(1700)] = 19826, - [SMALL_STATE(1701)] = 19842, - [SMALL_STATE(1702)] = 19858, - [SMALL_STATE(1703)] = 19874, - [SMALL_STATE(1704)] = 19890, - [SMALL_STATE(1705)] = 19906, - [SMALL_STATE(1706)] = 19922, - [SMALL_STATE(1707)] = 19938, - [SMALL_STATE(1708)] = 19954, - [SMALL_STATE(1709)] = 19970, - [SMALL_STATE(1710)] = 19986, - [SMALL_STATE(1711)] = 20002, - [SMALL_STATE(1712)] = 20014, - [SMALL_STATE(1713)] = 20030, - [SMALL_STATE(1714)] = 20046, - [SMALL_STATE(1715)] = 20062, - [SMALL_STATE(1716)] = 20078, - [SMALL_STATE(1717)] = 20094, - [SMALL_STATE(1718)] = 20106, - [SMALL_STATE(1719)] = 20122, - [SMALL_STATE(1720)] = 20138, - [SMALL_STATE(1721)] = 20154, - [SMALL_STATE(1722)] = 20164, - [SMALL_STATE(1723)] = 20180, - [SMALL_STATE(1724)] = 20196, - [SMALL_STATE(1725)] = 20212, - [SMALL_STATE(1726)] = 20228, - [SMALL_STATE(1727)] = 20240, - [SMALL_STATE(1728)] = 20256, - [SMALL_STATE(1729)] = 20272, - [SMALL_STATE(1730)] = 20288, - [SMALL_STATE(1731)] = 20304, - [SMALL_STATE(1732)] = 20320, - [SMALL_STATE(1733)] = 20336, - [SMALL_STATE(1734)] = 20352, - [SMALL_STATE(1735)] = 20368, - [SMALL_STATE(1736)] = 20384, - [SMALL_STATE(1737)] = 20400, - [SMALL_STATE(1738)] = 20416, - [SMALL_STATE(1739)] = 20432, - [SMALL_STATE(1740)] = 20448, - [SMALL_STATE(1741)] = 20464, - [SMALL_STATE(1742)] = 20476, - [SMALL_STATE(1743)] = 20492, - [SMALL_STATE(1744)] = 20508, - [SMALL_STATE(1745)] = 20524, - [SMALL_STATE(1746)] = 20540, - [SMALL_STATE(1747)] = 20552, - [SMALL_STATE(1748)] = 20568, - [SMALL_STATE(1749)] = 20584, - [SMALL_STATE(1750)] = 20600, - [SMALL_STATE(1751)] = 20616, - [SMALL_STATE(1752)] = 20632, - [SMALL_STATE(1753)] = 20642, - [SMALL_STATE(1754)] = 20658, - [SMALL_STATE(1755)] = 20672, - [SMALL_STATE(1756)] = 20688, - [SMALL_STATE(1757)] = 20704, - [SMALL_STATE(1758)] = 20720, - [SMALL_STATE(1759)] = 20734, - [SMALL_STATE(1760)] = 20750, - [SMALL_STATE(1761)] = 20766, - [SMALL_STATE(1762)] = 20782, - [SMALL_STATE(1763)] = 20798, - [SMALL_STATE(1764)] = 20814, - [SMALL_STATE(1765)] = 20830, - [SMALL_STATE(1766)] = 20846, - [SMALL_STATE(1767)] = 20862, - [SMALL_STATE(1768)] = 20878, - [SMALL_STATE(1769)] = 20894, - [SMALL_STATE(1770)] = 20910, - [SMALL_STATE(1771)] = 20926, - [SMALL_STATE(1772)] = 20942, - [SMALL_STATE(1773)] = 20958, - [SMALL_STATE(1774)] = 20974, - [SMALL_STATE(1775)] = 20990, - [SMALL_STATE(1776)] = 21006, - [SMALL_STATE(1777)] = 21022, - [SMALL_STATE(1778)] = 21038, - [SMALL_STATE(1779)] = 21054, - [SMALL_STATE(1780)] = 21070, - [SMALL_STATE(1781)] = 21086, - [SMALL_STATE(1782)] = 21102, - [SMALL_STATE(1783)] = 21118, - [SMALL_STATE(1784)] = 21134, - [SMALL_STATE(1785)] = 21146, - [SMALL_STATE(1786)] = 21160, - [SMALL_STATE(1787)] = 21176, - [SMALL_STATE(1788)] = 21192, - [SMALL_STATE(1789)] = 21208, - [SMALL_STATE(1790)] = 21224, - [SMALL_STATE(1791)] = 21240, - [SMALL_STATE(1792)] = 21252, - [SMALL_STATE(1793)] = 21268, - [SMALL_STATE(1794)] = 21284, - [SMALL_STATE(1795)] = 21300, - [SMALL_STATE(1796)] = 21316, - [SMALL_STATE(1797)] = 21332, - [SMALL_STATE(1798)] = 21348, - [SMALL_STATE(1799)] = 21364, - [SMALL_STATE(1800)] = 21380, - [SMALL_STATE(1801)] = 21396, - [SMALL_STATE(1802)] = 21412, - [SMALL_STATE(1803)] = 21426, - [SMALL_STATE(1804)] = 21442, - [SMALL_STATE(1805)] = 21454, - [SMALL_STATE(1806)] = 21470, - [SMALL_STATE(1807)] = 21486, - [SMALL_STATE(1808)] = 21502, - [SMALL_STATE(1809)] = 21518, - [SMALL_STATE(1810)] = 21534, - [SMALL_STATE(1811)] = 21550, - [SMALL_STATE(1812)] = 21566, - [SMALL_STATE(1813)] = 21582, - [SMALL_STATE(1814)] = 21598, - [SMALL_STATE(1815)] = 21614, - [SMALL_STATE(1816)] = 21630, - [SMALL_STATE(1817)] = 21646, - [SMALL_STATE(1818)] = 21662, - [SMALL_STATE(1819)] = 21678, - [SMALL_STATE(1820)] = 21692, - [SMALL_STATE(1821)] = 21708, - [SMALL_STATE(1822)] = 21720, - [SMALL_STATE(1823)] = 21732, - [SMALL_STATE(1824)] = 21746, - [SMALL_STATE(1825)] = 21758, - [SMALL_STATE(1826)] = 21770, - [SMALL_STATE(1827)] = 21786, - [SMALL_STATE(1828)] = 21802, - [SMALL_STATE(1829)] = 21818, - [SMALL_STATE(1830)] = 21832, - [SMALL_STATE(1831)] = 21848, - [SMALL_STATE(1832)] = 21864, - [SMALL_STATE(1833)] = 21880, - [SMALL_STATE(1834)] = 21896, - [SMALL_STATE(1835)] = 21912, - [SMALL_STATE(1836)] = 21928, - [SMALL_STATE(1837)] = 21944, - [SMALL_STATE(1838)] = 21956, - [SMALL_STATE(1839)] = 21968, - [SMALL_STATE(1840)] = 21984, - [SMALL_STATE(1841)] = 22000, - [SMALL_STATE(1842)] = 22012, - [SMALL_STATE(1843)] = 22024, - [SMALL_STATE(1844)] = 22036, - [SMALL_STATE(1845)] = 22052, - [SMALL_STATE(1846)] = 22068, - [SMALL_STATE(1847)] = 22084, - [SMALL_STATE(1848)] = 22100, - [SMALL_STATE(1849)] = 22110, - [SMALL_STATE(1850)] = 22126, - [SMALL_STATE(1851)] = 22140, - [SMALL_STATE(1852)] = 22156, - [SMALL_STATE(1853)] = 22172, - [SMALL_STATE(1854)] = 22188, - [SMALL_STATE(1855)] = 22200, - [SMALL_STATE(1856)] = 22212, - [SMALL_STATE(1857)] = 22224, - [SMALL_STATE(1858)] = 22240, - [SMALL_STATE(1859)] = 22256, - [SMALL_STATE(1860)] = 22272, - [SMALL_STATE(1861)] = 22288, - [SMALL_STATE(1862)] = 22304, - [SMALL_STATE(1863)] = 22320, - [SMALL_STATE(1864)] = 22336, - [SMALL_STATE(1865)] = 22352, - [SMALL_STATE(1866)] = 22366, - [SMALL_STATE(1867)] = 22380, - [SMALL_STATE(1868)] = 22390, - [SMALL_STATE(1869)] = 22400, - [SMALL_STATE(1870)] = 22416, - [SMALL_STATE(1871)] = 22432, - [SMALL_STATE(1872)] = 22448, - [SMALL_STATE(1873)] = 22464, - [SMALL_STATE(1874)] = 22480, - [SMALL_STATE(1875)] = 22496, - [SMALL_STATE(1876)] = 22508, - [SMALL_STATE(1877)] = 22522, - [SMALL_STATE(1878)] = 22538, - [SMALL_STATE(1879)] = 22552, - [SMALL_STATE(1880)] = 22564, - [SMALL_STATE(1881)] = 22580, - [SMALL_STATE(1882)] = 22594, - [SMALL_STATE(1883)] = 22608, - [SMALL_STATE(1884)] = 22622, - [SMALL_STATE(1885)] = 22636, - [SMALL_STATE(1886)] = 22652, - [SMALL_STATE(1887)] = 22666, - [SMALL_STATE(1888)] = 22678, - [SMALL_STATE(1889)] = 22694, - [SMALL_STATE(1890)] = 22710, - [SMALL_STATE(1891)] = 22722, - [SMALL_STATE(1892)] = 22738, - [SMALL_STATE(1893)] = 22754, - [SMALL_STATE(1894)] = 22770, - [SMALL_STATE(1895)] = 22786, - [SMALL_STATE(1896)] = 22802, - [SMALL_STATE(1897)] = 22818, - [SMALL_STATE(1898)] = 22834, - [SMALL_STATE(1899)] = 22848, - [SMALL_STATE(1900)] = 22864, - [SMALL_STATE(1901)] = 22874, - [SMALL_STATE(1902)] = 22890, - [SMALL_STATE(1903)] = 22906, - [SMALL_STATE(1904)] = 22922, - [SMALL_STATE(1905)] = 22938, - [SMALL_STATE(1906)] = 22954, - [SMALL_STATE(1907)] = 22970, - [SMALL_STATE(1908)] = 22986, - [SMALL_STATE(1909)] = 23002, - [SMALL_STATE(1910)] = 23014, - [SMALL_STATE(1911)] = 23030, - [SMALL_STATE(1912)] = 23046, - [SMALL_STATE(1913)] = 23062, - [SMALL_STATE(1914)] = 23074, - [SMALL_STATE(1915)] = 23090, - [SMALL_STATE(1916)] = 23106, - [SMALL_STATE(1917)] = 23119, - [SMALL_STATE(1918)] = 23132, - [SMALL_STATE(1919)] = 23145, - [SMALL_STATE(1920)] = 23158, - [SMALL_STATE(1921)] = 23171, - [SMALL_STATE(1922)] = 23184, - [SMALL_STATE(1923)] = 23197, - [SMALL_STATE(1924)] = 23210, - [SMALL_STATE(1925)] = 23223, - [SMALL_STATE(1926)] = 23236, - [SMALL_STATE(1927)] = 23249, - [SMALL_STATE(1928)] = 23262, - [SMALL_STATE(1929)] = 23275, - [SMALL_STATE(1930)] = 23288, - [SMALL_STATE(1931)] = 23301, - [SMALL_STATE(1932)] = 23310, - [SMALL_STATE(1933)] = 23323, - [SMALL_STATE(1934)] = 23336, - [SMALL_STATE(1935)] = 23349, - [SMALL_STATE(1936)] = 23362, - [SMALL_STATE(1937)] = 23375, - [SMALL_STATE(1938)] = 23388, - [SMALL_STATE(1939)] = 23401, - [SMALL_STATE(1940)] = 23414, - [SMALL_STATE(1941)] = 23427, - [SMALL_STATE(1942)] = 23440, - [SMALL_STATE(1943)] = 23453, - [SMALL_STATE(1944)] = 23466, - [SMALL_STATE(1945)] = 23475, - [SMALL_STATE(1946)] = 23488, - [SMALL_STATE(1947)] = 23501, - [SMALL_STATE(1948)] = 23514, - [SMALL_STATE(1949)] = 23527, - [SMALL_STATE(1950)] = 23540, - [SMALL_STATE(1951)] = 23553, - [SMALL_STATE(1952)] = 23562, - [SMALL_STATE(1953)] = 23575, - [SMALL_STATE(1954)] = 23588, - [SMALL_STATE(1955)] = 23601, - [SMALL_STATE(1956)] = 23614, - [SMALL_STATE(1957)] = 23627, - [SMALL_STATE(1958)] = 23640, - [SMALL_STATE(1959)] = 23653, - [SMALL_STATE(1960)] = 23666, - [SMALL_STATE(1961)] = 23675, - [SMALL_STATE(1962)] = 23688, - [SMALL_STATE(1963)] = 23701, - [SMALL_STATE(1964)] = 23714, - [SMALL_STATE(1965)] = 23723, - [SMALL_STATE(1966)] = 23736, - [SMALL_STATE(1967)] = 23749, - [SMALL_STATE(1968)] = 23762, - [SMALL_STATE(1969)] = 23775, - [SMALL_STATE(1970)] = 23788, - [SMALL_STATE(1971)] = 23801, - [SMALL_STATE(1972)] = 23810, - [SMALL_STATE(1973)] = 23823, - [SMALL_STATE(1974)] = 23836, - [SMALL_STATE(1975)] = 23845, - [SMALL_STATE(1976)] = 23858, - [SMALL_STATE(1977)] = 23871, - [SMALL_STATE(1978)] = 23884, - [SMALL_STATE(1979)] = 23897, - [SMALL_STATE(1980)] = 23910, - [SMALL_STATE(1981)] = 23923, - [SMALL_STATE(1982)] = 23936, - [SMALL_STATE(1983)] = 23949, - [SMALL_STATE(1984)] = 23962, - [SMALL_STATE(1985)] = 23975, - [SMALL_STATE(1986)] = 23984, - [SMALL_STATE(1987)] = 23995, - [SMALL_STATE(1988)] = 24004, - [SMALL_STATE(1989)] = 24017, - [SMALL_STATE(1990)] = 24030, - [SMALL_STATE(1991)] = 24043, - [SMALL_STATE(1992)] = 24056, - [SMALL_STATE(1993)] = 24065, - [SMALL_STATE(1994)] = 24078, - [SMALL_STATE(1995)] = 24091, - [SMALL_STATE(1996)] = 24104, - [SMALL_STATE(1997)] = 24117, - [SMALL_STATE(1998)] = 24130, - [SMALL_STATE(1999)] = 24139, - [SMALL_STATE(2000)] = 24152, - [SMALL_STATE(2001)] = 24165, - [SMALL_STATE(2002)] = 24178, - [SMALL_STATE(2003)] = 24191, - [SMALL_STATE(2004)] = 24204, - [SMALL_STATE(2005)] = 24217, - [SMALL_STATE(2006)] = 24230, - [SMALL_STATE(2007)] = 24243, - [SMALL_STATE(2008)] = 24256, - [SMALL_STATE(2009)] = 24269, - [SMALL_STATE(2010)] = 24282, - [SMALL_STATE(2011)] = 24295, - [SMALL_STATE(2012)] = 24308, - [SMALL_STATE(2013)] = 24321, - [SMALL_STATE(2014)] = 24334, - [SMALL_STATE(2015)] = 24347, - [SMALL_STATE(2016)] = 24360, - [SMALL_STATE(2017)] = 24373, - [SMALL_STATE(2018)] = 24386, - [SMALL_STATE(2019)] = 24399, - [SMALL_STATE(2020)] = 24412, - [SMALL_STATE(2021)] = 24425, - [SMALL_STATE(2022)] = 24438, - [SMALL_STATE(2023)] = 24451, - [SMALL_STATE(2024)] = 24464, - [SMALL_STATE(2025)] = 24477, - [SMALL_STATE(2026)] = 24490, - [SMALL_STATE(2027)] = 24503, - [SMALL_STATE(2028)] = 24512, - [SMALL_STATE(2029)] = 24525, - [SMALL_STATE(2030)] = 24538, - [SMALL_STATE(2031)] = 24551, - [SMALL_STATE(2032)] = 24564, - [SMALL_STATE(2033)] = 24577, - [SMALL_STATE(2034)] = 24590, - [SMALL_STATE(2035)] = 24599, - [SMALL_STATE(2036)] = 24608, - [SMALL_STATE(2037)] = 24621, - [SMALL_STATE(2038)] = 24634, - [SMALL_STATE(2039)] = 24647, - [SMALL_STATE(2040)] = 24660, - [SMALL_STATE(2041)] = 24669, - [SMALL_STATE(2042)] = 24682, - [SMALL_STATE(2043)] = 24695, - [SMALL_STATE(2044)] = 24708, - [SMALL_STATE(2045)] = 24721, - [SMALL_STATE(2046)] = 24734, - [SMALL_STATE(2047)] = 24747, - [SMALL_STATE(2048)] = 24760, - [SMALL_STATE(2049)] = 24773, - [SMALL_STATE(2050)] = 24783, - [SMALL_STATE(2051)] = 24793, - [SMALL_STATE(2052)] = 24803, - [SMALL_STATE(2053)] = 24813, - [SMALL_STATE(2054)] = 24823, - [SMALL_STATE(2055)] = 24833, - [SMALL_STATE(2056)] = 24843, - [SMALL_STATE(2057)] = 24851, - [SMALL_STATE(2058)] = 24861, - [SMALL_STATE(2059)] = 24871, - [SMALL_STATE(2060)] = 24879, - [SMALL_STATE(2061)] = 24889, - [SMALL_STATE(2062)] = 24899, - [SMALL_STATE(2063)] = 24909, - [SMALL_STATE(2064)] = 24917, - [SMALL_STATE(2065)] = 24927, - [SMALL_STATE(2066)] = 24937, - [SMALL_STATE(2067)] = 24945, - [SMALL_STATE(2068)] = 24955, - [SMALL_STATE(2069)] = 24963, - [SMALL_STATE(2070)] = 24971, - [SMALL_STATE(2071)] = 24981, - [SMALL_STATE(2072)] = 24989, - [SMALL_STATE(2073)] = 24999, - [SMALL_STATE(2074)] = 25009, - [SMALL_STATE(2075)] = 25019, - [SMALL_STATE(2076)] = 25029, - [SMALL_STATE(2077)] = 25039, - [SMALL_STATE(2078)] = 25049, - [SMALL_STATE(2079)] = 25059, - [SMALL_STATE(2080)] = 25069, - [SMALL_STATE(2081)] = 25079, - [SMALL_STATE(2082)] = 25086, - [SMALL_STATE(2083)] = 25093, - [SMALL_STATE(2084)] = 25100, - [SMALL_STATE(2085)] = 25107, - [SMALL_STATE(2086)] = 25114, - [SMALL_STATE(2087)] = 25121, - [SMALL_STATE(2088)] = 25128, - [SMALL_STATE(2089)] = 25135, - [SMALL_STATE(2090)] = 25142, - [SMALL_STATE(2091)] = 25149, - [SMALL_STATE(2092)] = 25156, - [SMALL_STATE(2093)] = 25163, - [SMALL_STATE(2094)] = 25170, - [SMALL_STATE(2095)] = 25177, - [SMALL_STATE(2096)] = 25184, - [SMALL_STATE(2097)] = 25191, - [SMALL_STATE(2098)] = 25198, - [SMALL_STATE(2099)] = 25205, - [SMALL_STATE(2100)] = 25212, - [SMALL_STATE(2101)] = 25219, - [SMALL_STATE(2102)] = 25226, - [SMALL_STATE(2103)] = 25233, - [SMALL_STATE(2104)] = 25240, - [SMALL_STATE(2105)] = 25247, - [SMALL_STATE(2106)] = 25254, - [SMALL_STATE(2107)] = 25261, - [SMALL_STATE(2108)] = 25268, - [SMALL_STATE(2109)] = 25275, - [SMALL_STATE(2110)] = 25282, - [SMALL_STATE(2111)] = 25289, - [SMALL_STATE(2112)] = 25296, - [SMALL_STATE(2113)] = 25303, - [SMALL_STATE(2114)] = 25310, - [SMALL_STATE(2115)] = 25317, - [SMALL_STATE(2116)] = 25324, - [SMALL_STATE(2117)] = 25331, - [SMALL_STATE(2118)] = 25338, - [SMALL_STATE(2119)] = 25345, - [SMALL_STATE(2120)] = 25352, - [SMALL_STATE(2121)] = 25359, - [SMALL_STATE(2122)] = 25366, - [SMALL_STATE(2123)] = 25373, - [SMALL_STATE(2124)] = 25380, - [SMALL_STATE(2125)] = 25387, - [SMALL_STATE(2126)] = 25394, - [SMALL_STATE(2127)] = 25401, - [SMALL_STATE(2128)] = 25408, - [SMALL_STATE(2129)] = 25415, - [SMALL_STATE(2130)] = 25422, - [SMALL_STATE(2131)] = 25429, - [SMALL_STATE(2132)] = 25436, - [SMALL_STATE(2133)] = 25443, - [SMALL_STATE(2134)] = 25450, - [SMALL_STATE(2135)] = 25457, - [SMALL_STATE(2136)] = 25464, - [SMALL_STATE(2137)] = 25471, - [SMALL_STATE(2138)] = 25478, - [SMALL_STATE(2139)] = 25485, - [SMALL_STATE(2140)] = 25492, - [SMALL_STATE(2141)] = 25499, - [SMALL_STATE(2142)] = 25506, - [SMALL_STATE(2143)] = 25513, - [SMALL_STATE(2144)] = 25520, - [SMALL_STATE(2145)] = 25527, - [SMALL_STATE(2146)] = 25534, - [SMALL_STATE(2147)] = 25541, - [SMALL_STATE(2148)] = 25548, - [SMALL_STATE(2149)] = 25555, - [SMALL_STATE(2150)] = 25562, - [SMALL_STATE(2151)] = 25569, - [SMALL_STATE(2152)] = 25576, - [SMALL_STATE(2153)] = 25583, - [SMALL_STATE(2154)] = 25590, - [SMALL_STATE(2155)] = 25597, - [SMALL_STATE(2156)] = 25604, - [SMALL_STATE(2157)] = 25611, - [SMALL_STATE(2158)] = 25618, - [SMALL_STATE(2159)] = 25625, - [SMALL_STATE(2160)] = 25632, - [SMALL_STATE(2161)] = 25639, - [SMALL_STATE(2162)] = 25646, - [SMALL_STATE(2163)] = 25653, - [SMALL_STATE(2164)] = 25660, - [SMALL_STATE(2165)] = 25667, - [SMALL_STATE(2166)] = 25674, - [SMALL_STATE(2167)] = 25681, - [SMALL_STATE(2168)] = 25688, - [SMALL_STATE(2169)] = 25695, - [SMALL_STATE(2170)] = 25702, - [SMALL_STATE(2171)] = 25709, - [SMALL_STATE(2172)] = 25716, - [SMALL_STATE(2173)] = 25723, - [SMALL_STATE(2174)] = 25730, - [SMALL_STATE(2175)] = 25737, - [SMALL_STATE(2176)] = 25744, - [SMALL_STATE(2177)] = 25751, - [SMALL_STATE(2178)] = 25758, - [SMALL_STATE(2179)] = 25765, - [SMALL_STATE(2180)] = 25772, - [SMALL_STATE(2181)] = 25779, - [SMALL_STATE(2182)] = 25786, - [SMALL_STATE(2183)] = 25793, - [SMALL_STATE(2184)] = 25800, - [SMALL_STATE(2185)] = 25807, - [SMALL_STATE(2186)] = 25814, - [SMALL_STATE(2187)] = 25821, - [SMALL_STATE(2188)] = 25828, - [SMALL_STATE(2189)] = 25835, + [SMALL_STATE(1252)] = 0, + [SMALL_STATE(1253)] = 71, + [SMALL_STATE(1254)] = 144, + [SMALL_STATE(1255)] = 216, + [SMALL_STATE(1256)] = 288, + [SMALL_STATE(1257)] = 359, + [SMALL_STATE(1258)] = 430, + [SMALL_STATE(1259)] = 501, + [SMALL_STATE(1260)] = 572, + [SMALL_STATE(1261)] = 643, + [SMALL_STATE(1262)] = 714, + [SMALL_STATE(1263)] = 778, + [SMALL_STATE(1264)] = 842, + [SMALL_STATE(1265)] = 906, + [SMALL_STATE(1266)] = 970, + [SMALL_STATE(1267)] = 1034, + [SMALL_STATE(1268)] = 1098, + [SMALL_STATE(1269)] = 1177, + [SMALL_STATE(1270)] = 1256, + [SMALL_STATE(1271)] = 1335, + [SMALL_STATE(1272)] = 1414, + [SMALL_STATE(1273)] = 1493, + [SMALL_STATE(1274)] = 1572, + [SMALL_STATE(1275)] = 1648, + [SMALL_STATE(1276)] = 1724, + [SMALL_STATE(1277)] = 1800, + [SMALL_STATE(1278)] = 1876, + [SMALL_STATE(1279)] = 1952, + [SMALL_STATE(1280)] = 2028, + [SMALL_STATE(1281)] = 2104, + [SMALL_STATE(1282)] = 2180, + [SMALL_STATE(1283)] = 2256, + [SMALL_STATE(1284)] = 2332, + [SMALL_STATE(1285)] = 2406, + [SMALL_STATE(1286)] = 2482, + [SMALL_STATE(1287)] = 2555, + [SMALL_STATE(1288)] = 2628, + [SMALL_STATE(1289)] = 2701, + [SMALL_STATE(1290)] = 2774, + [SMALL_STATE(1291)] = 2847, + [SMALL_STATE(1292)] = 2920, + [SMALL_STATE(1293)] = 2993, + [SMALL_STATE(1294)] = 3066, + [SMALL_STATE(1295)] = 3139, + [SMALL_STATE(1296)] = 3212, + [SMALL_STATE(1297)] = 3285, + [SMALL_STATE(1298)] = 3358, + [SMALL_STATE(1299)] = 3431, + [SMALL_STATE(1300)] = 3504, + [SMALL_STATE(1301)] = 3577, + [SMALL_STATE(1302)] = 3650, + [SMALL_STATE(1303)] = 3723, + [SMALL_STATE(1304)] = 3796, + [SMALL_STATE(1305)] = 3869, + [SMALL_STATE(1306)] = 3942, + [SMALL_STATE(1307)] = 4015, + [SMALL_STATE(1308)] = 4088, + [SMALL_STATE(1309)] = 4161, + [SMALL_STATE(1310)] = 4234, + [SMALL_STATE(1311)] = 4307, + [SMALL_STATE(1312)] = 4380, + [SMALL_STATE(1313)] = 4453, + [SMALL_STATE(1314)] = 4526, + [SMALL_STATE(1315)] = 4599, + [SMALL_STATE(1316)] = 4672, + [SMALL_STATE(1317)] = 4745, + [SMALL_STATE(1318)] = 4818, + [SMALL_STATE(1319)] = 4891, + [SMALL_STATE(1320)] = 4964, + [SMALL_STATE(1321)] = 5034, + [SMALL_STATE(1322)] = 5104, + [SMALL_STATE(1323)] = 5174, + [SMALL_STATE(1324)] = 5244, + [SMALL_STATE(1325)] = 5314, + [SMALL_STATE(1326)] = 5384, + [SMALL_STATE(1327)] = 5454, + [SMALL_STATE(1328)] = 5524, + [SMALL_STATE(1329)] = 5594, + [SMALL_STATE(1330)] = 5664, + [SMALL_STATE(1331)] = 5734, + [SMALL_STATE(1332)] = 5804, + [SMALL_STATE(1333)] = 5874, + [SMALL_STATE(1334)] = 5944, + [SMALL_STATE(1335)] = 6014, + [SMALL_STATE(1336)] = 6084, + [SMALL_STATE(1337)] = 6154, + [SMALL_STATE(1338)] = 6224, + [SMALL_STATE(1339)] = 6294, + [SMALL_STATE(1340)] = 6364, + [SMALL_STATE(1341)] = 6434, + [SMALL_STATE(1342)] = 6504, + [SMALL_STATE(1343)] = 6574, + [SMALL_STATE(1344)] = 6644, + [SMALL_STATE(1345)] = 6714, + [SMALL_STATE(1346)] = 6784, + [SMALL_STATE(1347)] = 6854, + [SMALL_STATE(1348)] = 6924, + [SMALL_STATE(1349)] = 6994, + [SMALL_STATE(1350)] = 7064, + [SMALL_STATE(1351)] = 7134, + [SMALL_STATE(1352)] = 7204, + [SMALL_STATE(1353)] = 7274, + [SMALL_STATE(1354)] = 7344, + [SMALL_STATE(1355)] = 7414, + [SMALL_STATE(1356)] = 7484, + [SMALL_STATE(1357)] = 7554, + [SMALL_STATE(1358)] = 7624, + [SMALL_STATE(1359)] = 7694, + [SMALL_STATE(1360)] = 7761, + [SMALL_STATE(1361)] = 7814, + [SMALL_STATE(1362)] = 7862, + [SMALL_STATE(1363)] = 7910, + [SMALL_STATE(1364)] = 7958, + [SMALL_STATE(1365)] = 8006, + [SMALL_STATE(1366)] = 8054, + [SMALL_STATE(1367)] = 8102, + [SMALL_STATE(1368)] = 8150, + [SMALL_STATE(1369)] = 8198, + [SMALL_STATE(1370)] = 8246, + [SMALL_STATE(1371)] = 8306, + [SMALL_STATE(1372)] = 8368, + [SMALL_STATE(1373)] = 8424, + [SMALL_STATE(1374)] = 8478, + [SMALL_STATE(1375)] = 8546, + [SMALL_STATE(1376)] = 8610, + [SMALL_STATE(1377)] = 8672, + [SMALL_STATE(1378)] = 8732, + [SMALL_STATE(1379)] = 8788, + [SMALL_STATE(1380)] = 8842, + [SMALL_STATE(1381)] = 8910, + [SMALL_STATE(1382)] = 8974, + [SMALL_STATE(1383)] = 9026, + [SMALL_STATE(1384)] = 9092, + [SMALL_STATE(1385)] = 9144, + [SMALL_STATE(1386)] = 9204, + [SMALL_STATE(1387)] = 9266, + [SMALL_STATE(1388)] = 9324, + [SMALL_STATE(1389)] = 9386, + [SMALL_STATE(1390)] = 9446, + [SMALL_STATE(1391)] = 9504, + [SMALL_STATE(1392)] = 9566, + [SMALL_STATE(1393)] = 9632, + [SMALL_STATE(1394)] = 9692, + [SMALL_STATE(1395)] = 9750, + [SMALL_STATE(1396)] = 9804, + [SMALL_STATE(1397)] = 9870, + [SMALL_STATE(1398)] = 9922, + [SMALL_STATE(1399)] = 9988, + [SMALL_STATE(1400)] = 10042, + [SMALL_STATE(1401)] = 10104, + [SMALL_STATE(1402)] = 10156, + [SMALL_STATE(1403)] = 10230, + [SMALL_STATE(1404)] = 10290, + [SMALL_STATE(1405)] = 10348, + [SMALL_STATE(1406)] = 10402, + [SMALL_STATE(1407)] = 10456, + [SMALL_STATE(1408)] = 10529, + [SMALL_STATE(1409)] = 10602, + [SMALL_STATE(1410)] = 10676, + [SMALL_STATE(1411)] = 10748, + [SMALL_STATE(1412)] = 10822, + [SMALL_STATE(1413)] = 10892, + [SMALL_STATE(1414)] = 10969, + [SMALL_STATE(1415)] = 11038, + [SMALL_STATE(1416)] = 11112, + [SMALL_STATE(1417)] = 11186, + [SMALL_STATE(1418)] = 11260, + [SMALL_STATE(1419)] = 11334, + [SMALL_STATE(1420)] = 11408, + [SMALL_STATE(1421)] = 11482, + [SMALL_STATE(1422)] = 11556, + [SMALL_STATE(1423)] = 11630, + [SMALL_STATE(1424)] = 11704, + [SMALL_STATE(1425)] = 11778, + [SMALL_STATE(1426)] = 11852, + [SMALL_STATE(1427)] = 11926, + [SMALL_STATE(1428)] = 12000, + [SMALL_STATE(1429)] = 12074, + [SMALL_STATE(1430)] = 12145, + [SMALL_STATE(1431)] = 12216, + [SMALL_STATE(1432)] = 12283, + [SMALL_STATE(1433)] = 12348, + [SMALL_STATE(1434)] = 12419, + [SMALL_STATE(1435)] = 12490, + [SMALL_STATE(1436)] = 12557, + [SMALL_STATE(1437)] = 12609, + [SMALL_STATE(1438)] = 12671, + [SMALL_STATE(1439)] = 12733, + [SMALL_STATE(1440)] = 12779, + [SMALL_STATE(1441)] = 12825, + [SMALL_STATE(1442)] = 12885, + [SMALL_STATE(1443)] = 12947, + [SMALL_STATE(1444)] = 12991, + [SMALL_STATE(1445)] = 13053, + [SMALL_STATE(1446)] = 13113, + [SMALL_STATE(1447)] = 13175, + [SMALL_STATE(1448)] = 13231, + [SMALL_STATE(1449)] = 13285, + [SMALL_STATE(1450)] = 13341, + [SMALL_STATE(1451)] = 13403, + [SMALL_STATE(1452)] = 13457, + [SMALL_STATE(1453)] = 13499, + [SMALL_STATE(1454)] = 13547, + [SMALL_STATE(1455)] = 13615, + [SMALL_STATE(1456)] = 13657, + [SMALL_STATE(1457)] = 13699, + [SMALL_STATE(1458)] = 13763, + [SMALL_STATE(1459)] = 13815, + [SMALL_STATE(1460)] = 13863, + [SMALL_STATE(1461)] = 13905, + [SMALL_STATE(1462)] = 13973, + [SMALL_STATE(1463)] = 14038, + [SMALL_STATE(1464)] = 14103, + [SMALL_STATE(1465)] = 14168, + [SMALL_STATE(1466)] = 14229, + [SMALL_STATE(1467)] = 14294, + [SMALL_STATE(1468)] = 14359, + [SMALL_STATE(1469)] = 14424, + [SMALL_STATE(1470)] = 14489, + [SMALL_STATE(1471)] = 14550, + [SMALL_STATE(1472)] = 14615, + [SMALL_STATE(1473)] = 14680, + [SMALL_STATE(1474)] = 14745, + [SMALL_STATE(1475)] = 14810, + [SMALL_STATE(1476)] = 14871, + [SMALL_STATE(1477)] = 14932, + [SMALL_STATE(1478)] = 14969, + [SMALL_STATE(1479)] = 15034, + [SMALL_STATE(1480)] = 15071, + [SMALL_STATE(1481)] = 15132, + [SMALL_STATE(1482)] = 15184, + [SMALL_STATE(1483)] = 15234, + [SMALL_STATE(1484)] = 15280, + [SMALL_STATE(1485)] = 15330, + [SMALL_STATE(1486)] = 15374, + [SMALL_STATE(1487)] = 15432, + [SMALL_STATE(1488)] = 15486, + [SMALL_STATE(1489)] = 15538, + [SMALL_STATE(1490)] = 15584, + [SMALL_STATE(1491)] = 15628, + [SMALL_STATE(1492)] = 15686, + [SMALL_STATE(1493)] = 15740, + [SMALL_STATE(1494)] = 15799, + [SMALL_STATE(1495)] = 15858, + [SMALL_STATE(1496)] = 15883, + [SMALL_STATE(1497)] = 15914, + [SMALL_STATE(1498)] = 15939, + [SMALL_STATE(1499)] = 15970, + [SMALL_STATE(1500)] = 15998, + [SMALL_STATE(1501)] = 16026, + [SMALL_STATE(1502)] = 16052, + [SMALL_STATE(1503)] = 16078, + [SMALL_STATE(1504)] = 16104, + [SMALL_STATE(1505)] = 16130, + [SMALL_STATE(1506)] = 16156, + [SMALL_STATE(1507)] = 16182, + [SMALL_STATE(1508)] = 16208, + [SMALL_STATE(1509)] = 16234, + [SMALL_STATE(1510)] = 16260, + [SMALL_STATE(1511)] = 16286, + [SMALL_STATE(1512)] = 16312, + [SMALL_STATE(1513)] = 16338, + [SMALL_STATE(1514)] = 16364, + [SMALL_STATE(1515)] = 16390, + [SMALL_STATE(1516)] = 16415, + [SMALL_STATE(1517)] = 16438, + [SMALL_STATE(1518)] = 16461, + [SMALL_STATE(1519)] = 16484, + [SMALL_STATE(1520)] = 16507, + [SMALL_STATE(1521)] = 16527, + [SMALL_STATE(1522)] = 16547, + [SMALL_STATE(1523)] = 16567, + [SMALL_STATE(1524)] = 16587, + [SMALL_STATE(1525)] = 16607, + [SMALL_STATE(1526)] = 16627, + [SMALL_STATE(1527)] = 16647, + [SMALL_STATE(1528)] = 16667, + [SMALL_STATE(1529)] = 16687, + [SMALL_STATE(1530)] = 16709, + [SMALL_STATE(1531)] = 16729, + [SMALL_STATE(1532)] = 16749, + [SMALL_STATE(1533)] = 16771, + [SMALL_STATE(1534)] = 16791, + [SMALL_STATE(1535)] = 16811, + [SMALL_STATE(1536)] = 16831, + [SMALL_STATE(1537)] = 16851, + [SMALL_STATE(1538)] = 16870, + [SMALL_STATE(1539)] = 16889, + [SMALL_STATE(1540)] = 16908, + [SMALL_STATE(1541)] = 16927, + [SMALL_STATE(1542)] = 16946, + [SMALL_STATE(1543)] = 16965, + [SMALL_STATE(1544)] = 16984, + [SMALL_STATE(1545)] = 17003, + [SMALL_STATE(1546)] = 17022, + [SMALL_STATE(1547)] = 17041, + [SMALL_STATE(1548)] = 17060, + [SMALL_STATE(1549)] = 17079, + [SMALL_STATE(1550)] = 17098, + [SMALL_STATE(1551)] = 17117, + [SMALL_STATE(1552)] = 17136, + [SMALL_STATE(1553)] = 17155, + [SMALL_STATE(1554)] = 17174, + [SMALL_STATE(1555)] = 17193, + [SMALL_STATE(1556)] = 17212, + [SMALL_STATE(1557)] = 17231, + [SMALL_STATE(1558)] = 17250, + [SMALL_STATE(1559)] = 17269, + [SMALL_STATE(1560)] = 17288, + [SMALL_STATE(1561)] = 17307, + [SMALL_STATE(1562)] = 17326, + [SMALL_STATE(1563)] = 17345, + [SMALL_STATE(1564)] = 17364, + [SMALL_STATE(1565)] = 17383, + [SMALL_STATE(1566)] = 17402, + [SMALL_STATE(1567)] = 17421, + [SMALL_STATE(1568)] = 17440, + [SMALL_STATE(1569)] = 17459, + [SMALL_STATE(1570)] = 17478, + [SMALL_STATE(1571)] = 17497, + [SMALL_STATE(1572)] = 17516, + [SMALL_STATE(1573)] = 17535, + [SMALL_STATE(1574)] = 17554, + [SMALL_STATE(1575)] = 17573, + [SMALL_STATE(1576)] = 17592, + [SMALL_STATE(1577)] = 17611, + [SMALL_STATE(1578)] = 17630, + [SMALL_STATE(1579)] = 17649, + [SMALL_STATE(1580)] = 17668, + [SMALL_STATE(1581)] = 17687, + [SMALL_STATE(1582)] = 17706, + [SMALL_STATE(1583)] = 17725, + [SMALL_STATE(1584)] = 17744, + [SMALL_STATE(1585)] = 17763, + [SMALL_STATE(1586)] = 17782, + [SMALL_STATE(1587)] = 17801, + [SMALL_STATE(1588)] = 17820, + [SMALL_STATE(1589)] = 17839, + [SMALL_STATE(1590)] = 17858, + [SMALL_STATE(1591)] = 17877, + [SMALL_STATE(1592)] = 17896, + [SMALL_STATE(1593)] = 17915, + [SMALL_STATE(1594)] = 17934, + [SMALL_STATE(1595)] = 17953, + [SMALL_STATE(1596)] = 17972, + [SMALL_STATE(1597)] = 17991, + [SMALL_STATE(1598)] = 18010, + [SMALL_STATE(1599)] = 18023, + [SMALL_STATE(1600)] = 18042, + [SMALL_STATE(1601)] = 18061, + [SMALL_STATE(1602)] = 18080, + [SMALL_STATE(1603)] = 18099, + [SMALL_STATE(1604)] = 18118, + [SMALL_STATE(1605)] = 18137, + [SMALL_STATE(1606)] = 18156, + [SMALL_STATE(1607)] = 18175, + [SMALL_STATE(1608)] = 18194, + [SMALL_STATE(1609)] = 18213, + [SMALL_STATE(1610)] = 18232, + [SMALL_STATE(1611)] = 18251, + [SMALL_STATE(1612)] = 18270, + [SMALL_STATE(1613)] = 18289, + [SMALL_STATE(1614)] = 18308, + [SMALL_STATE(1615)] = 18327, + [SMALL_STATE(1616)] = 18346, + [SMALL_STATE(1617)] = 18365, + [SMALL_STATE(1618)] = 18384, + [SMALL_STATE(1619)] = 18403, + [SMALL_STATE(1620)] = 18422, + [SMALL_STATE(1621)] = 18441, + [SMALL_STATE(1622)] = 18460, + [SMALL_STATE(1623)] = 18479, + [SMALL_STATE(1624)] = 18498, + [SMALL_STATE(1625)] = 18517, + [SMALL_STATE(1626)] = 18536, + [SMALL_STATE(1627)] = 18555, + [SMALL_STATE(1628)] = 18574, + [SMALL_STATE(1629)] = 18593, + [SMALL_STATE(1630)] = 18612, + [SMALL_STATE(1631)] = 18631, + [SMALL_STATE(1632)] = 18650, + [SMALL_STATE(1633)] = 18669, + [SMALL_STATE(1634)] = 18688, + [SMALL_STATE(1635)] = 18707, + [SMALL_STATE(1636)] = 18726, + [SMALL_STATE(1637)] = 18745, + [SMALL_STATE(1638)] = 18764, + [SMALL_STATE(1639)] = 18783, + [SMALL_STATE(1640)] = 18802, + [SMALL_STATE(1641)] = 18821, + [SMALL_STATE(1642)] = 18840, + [SMALL_STATE(1643)] = 18859, + [SMALL_STATE(1644)] = 18878, + [SMALL_STATE(1645)] = 18897, + [SMALL_STATE(1646)] = 18916, + [SMALL_STATE(1647)] = 18935, + [SMALL_STATE(1648)] = 18954, + [SMALL_STATE(1649)] = 18973, + [SMALL_STATE(1650)] = 18992, + [SMALL_STATE(1651)] = 19011, + [SMALL_STATE(1652)] = 19030, + [SMALL_STATE(1653)] = 19049, + [SMALL_STATE(1654)] = 19068, + [SMALL_STATE(1655)] = 19087, + [SMALL_STATE(1656)] = 19106, + [SMALL_STATE(1657)] = 19125, + [SMALL_STATE(1658)] = 19144, + [SMALL_STATE(1659)] = 19163, + [SMALL_STATE(1660)] = 19182, + [SMALL_STATE(1661)] = 19201, + [SMALL_STATE(1662)] = 19220, + [SMALL_STATE(1663)] = 19239, + [SMALL_STATE(1664)] = 19255, + [SMALL_STATE(1665)] = 19271, + [SMALL_STATE(1666)] = 19285, + [SMALL_STATE(1667)] = 19301, + [SMALL_STATE(1668)] = 19317, + [SMALL_STATE(1669)] = 19329, + [SMALL_STATE(1670)] = 19343, + [SMALL_STATE(1671)] = 19359, + [SMALL_STATE(1672)] = 19375, + [SMALL_STATE(1673)] = 19391, + [SMALL_STATE(1674)] = 19407, + [SMALL_STATE(1675)] = 19423, + [SMALL_STATE(1676)] = 19439, + [SMALL_STATE(1677)] = 19455, + [SMALL_STATE(1678)] = 19467, + [SMALL_STATE(1679)] = 19483, + [SMALL_STATE(1680)] = 19499, + [SMALL_STATE(1681)] = 19515, + [SMALL_STATE(1682)] = 19531, + [SMALL_STATE(1683)] = 19547, + [SMALL_STATE(1684)] = 19563, + [SMALL_STATE(1685)] = 19579, + [SMALL_STATE(1686)] = 19595, + [SMALL_STATE(1687)] = 19611, + [SMALL_STATE(1688)] = 19625, + [SMALL_STATE(1689)] = 19641, + [SMALL_STATE(1690)] = 19657, + [SMALL_STATE(1691)] = 19669, + [SMALL_STATE(1692)] = 19685, + [SMALL_STATE(1693)] = 19697, + [SMALL_STATE(1694)] = 19713, + [SMALL_STATE(1695)] = 19725, + [SMALL_STATE(1696)] = 19741, + [SMALL_STATE(1697)] = 19757, + [SMALL_STATE(1698)] = 19773, + [SMALL_STATE(1699)] = 19789, + [SMALL_STATE(1700)] = 19805, + [SMALL_STATE(1701)] = 19821, + [SMALL_STATE(1702)] = 19837, + [SMALL_STATE(1703)] = 19853, + [SMALL_STATE(1704)] = 19869, + [SMALL_STATE(1705)] = 19885, + [SMALL_STATE(1706)] = 19901, + [SMALL_STATE(1707)] = 19917, + [SMALL_STATE(1708)] = 19933, + [SMALL_STATE(1709)] = 19949, + [SMALL_STATE(1710)] = 19965, + [SMALL_STATE(1711)] = 19981, + [SMALL_STATE(1712)] = 19997, + [SMALL_STATE(1713)] = 20013, + [SMALL_STATE(1714)] = 20029, + [SMALL_STATE(1715)] = 20045, + [SMALL_STATE(1716)] = 20061, + [SMALL_STATE(1717)] = 20077, + [SMALL_STATE(1718)] = 20093, + [SMALL_STATE(1719)] = 20105, + [SMALL_STATE(1720)] = 20117, + [SMALL_STATE(1721)] = 20133, + [SMALL_STATE(1722)] = 20147, + [SMALL_STATE(1723)] = 20163, + [SMALL_STATE(1724)] = 20175, + [SMALL_STATE(1725)] = 20191, + [SMALL_STATE(1726)] = 20207, + [SMALL_STATE(1727)] = 20223, + [SMALL_STATE(1728)] = 20239, + [SMALL_STATE(1729)] = 20255, + [SMALL_STATE(1730)] = 20271, + [SMALL_STATE(1731)] = 20287, + [SMALL_STATE(1732)] = 20303, + [SMALL_STATE(1733)] = 20317, + [SMALL_STATE(1734)] = 20333, + [SMALL_STATE(1735)] = 20349, + [SMALL_STATE(1736)] = 20365, + [SMALL_STATE(1737)] = 20381, + [SMALL_STATE(1738)] = 20397, + [SMALL_STATE(1739)] = 20413, + [SMALL_STATE(1740)] = 20425, + [SMALL_STATE(1741)] = 20439, + [SMALL_STATE(1742)] = 20455, + [SMALL_STATE(1743)] = 20467, + [SMALL_STATE(1744)] = 20483, + [SMALL_STATE(1745)] = 20499, + [SMALL_STATE(1746)] = 20515, + [SMALL_STATE(1747)] = 20531, + [SMALL_STATE(1748)] = 20547, + [SMALL_STATE(1749)] = 20563, + [SMALL_STATE(1750)] = 20579, + [SMALL_STATE(1751)] = 20591, + [SMALL_STATE(1752)] = 20603, + [SMALL_STATE(1753)] = 20615, + [SMALL_STATE(1754)] = 20631, + [SMALL_STATE(1755)] = 20647, + [SMALL_STATE(1756)] = 20663, + [SMALL_STATE(1757)] = 20673, + [SMALL_STATE(1758)] = 20689, + [SMALL_STATE(1759)] = 20705, + [SMALL_STATE(1760)] = 20717, + [SMALL_STATE(1761)] = 20733, + [SMALL_STATE(1762)] = 20749, + [SMALL_STATE(1763)] = 20765, + [SMALL_STATE(1764)] = 20781, + [SMALL_STATE(1765)] = 20797, + [SMALL_STATE(1766)] = 20813, + [SMALL_STATE(1767)] = 20829, + [SMALL_STATE(1768)] = 20845, + [SMALL_STATE(1769)] = 20857, + [SMALL_STATE(1770)] = 20873, + [SMALL_STATE(1771)] = 20889, + [SMALL_STATE(1772)] = 20901, + [SMALL_STATE(1773)] = 20913, + [SMALL_STATE(1774)] = 20929, + [SMALL_STATE(1775)] = 20939, + [SMALL_STATE(1776)] = 20953, + [SMALL_STATE(1777)] = 20969, + [SMALL_STATE(1778)] = 20985, + [SMALL_STATE(1779)] = 21001, + [SMALL_STATE(1780)] = 21015, + [SMALL_STATE(1781)] = 21027, + [SMALL_STATE(1782)] = 21043, + [SMALL_STATE(1783)] = 21057, + [SMALL_STATE(1784)] = 21073, + [SMALL_STATE(1785)] = 21089, + [SMALL_STATE(1786)] = 21105, + [SMALL_STATE(1787)] = 21119, + [SMALL_STATE(1788)] = 21135, + [SMALL_STATE(1789)] = 21151, + [SMALL_STATE(1790)] = 21167, + [SMALL_STATE(1791)] = 21179, + [SMALL_STATE(1792)] = 21195, + [SMALL_STATE(1793)] = 21211, + [SMALL_STATE(1794)] = 21225, + [SMALL_STATE(1795)] = 21241, + [SMALL_STATE(1796)] = 21257, + [SMALL_STATE(1797)] = 21273, + [SMALL_STATE(1798)] = 21289, + [SMALL_STATE(1799)] = 21305, + [SMALL_STATE(1800)] = 21315, + [SMALL_STATE(1801)] = 21331, + [SMALL_STATE(1802)] = 21343, + [SMALL_STATE(1803)] = 21359, + [SMALL_STATE(1804)] = 21375, + [SMALL_STATE(1805)] = 21387, + [SMALL_STATE(1806)] = 21403, + [SMALL_STATE(1807)] = 21419, + [SMALL_STATE(1808)] = 21435, + [SMALL_STATE(1809)] = 21451, + [SMALL_STATE(1810)] = 21467, + [SMALL_STATE(1811)] = 21483, + [SMALL_STATE(1812)] = 21499, + [SMALL_STATE(1813)] = 21511, + [SMALL_STATE(1814)] = 21527, + [SMALL_STATE(1815)] = 21543, + [SMALL_STATE(1816)] = 21559, + [SMALL_STATE(1817)] = 21575, + [SMALL_STATE(1818)] = 21591, + [SMALL_STATE(1819)] = 21607, + [SMALL_STATE(1820)] = 21623, + [SMALL_STATE(1821)] = 21639, + [SMALL_STATE(1822)] = 21649, + [SMALL_STATE(1823)] = 21665, + [SMALL_STATE(1824)] = 21681, + [SMALL_STATE(1825)] = 21695, + [SMALL_STATE(1826)] = 21711, + [SMALL_STATE(1827)] = 21727, + [SMALL_STATE(1828)] = 21743, + [SMALL_STATE(1829)] = 21755, + [SMALL_STATE(1830)] = 21771, + [SMALL_STATE(1831)] = 21787, + [SMALL_STATE(1832)] = 21803, + [SMALL_STATE(1833)] = 21815, + [SMALL_STATE(1834)] = 21831, + [SMALL_STATE(1835)] = 21841, + [SMALL_STATE(1836)] = 21857, + [SMALL_STATE(1837)] = 21873, + [SMALL_STATE(1838)] = 21889, + [SMALL_STATE(1839)] = 21905, + [SMALL_STATE(1840)] = 21921, + [SMALL_STATE(1841)] = 21937, + [SMALL_STATE(1842)] = 21951, + [SMALL_STATE(1843)] = 21967, + [SMALL_STATE(1844)] = 21983, + [SMALL_STATE(1845)] = 21999, + [SMALL_STATE(1846)] = 22015, + [SMALL_STATE(1847)] = 22031, + [SMALL_STATE(1848)] = 22047, + [SMALL_STATE(1849)] = 22063, + [SMALL_STATE(1850)] = 22079, + [SMALL_STATE(1851)] = 22095, + [SMALL_STATE(1852)] = 22111, + [SMALL_STATE(1853)] = 22127, + [SMALL_STATE(1854)] = 22143, + [SMALL_STATE(1855)] = 22159, + [SMALL_STATE(1856)] = 22171, + [SMALL_STATE(1857)] = 22187, + [SMALL_STATE(1858)] = 22203, + [SMALL_STATE(1859)] = 22219, + [SMALL_STATE(1860)] = 22235, + [SMALL_STATE(1861)] = 22251, + [SMALL_STATE(1862)] = 22267, + [SMALL_STATE(1863)] = 22283, + [SMALL_STATE(1864)] = 22295, + [SMALL_STATE(1865)] = 22311, + [SMALL_STATE(1866)] = 22327, + [SMALL_STATE(1867)] = 22343, + [SMALL_STATE(1868)] = 22353, + [SMALL_STATE(1869)] = 22369, + [SMALL_STATE(1870)] = 22385, + [SMALL_STATE(1871)] = 22401, + [SMALL_STATE(1872)] = 22413, + [SMALL_STATE(1873)] = 22429, + [SMALL_STATE(1874)] = 22445, + [SMALL_STATE(1875)] = 22461, + [SMALL_STATE(1876)] = 22477, + [SMALL_STATE(1877)] = 22493, + [SMALL_STATE(1878)] = 22507, + [SMALL_STATE(1879)] = 22523, + [SMALL_STATE(1880)] = 22535, + [SMALL_STATE(1881)] = 22549, + [SMALL_STATE(1882)] = 22563, + [SMALL_STATE(1883)] = 22577, + [SMALL_STATE(1884)] = 22591, + [SMALL_STATE(1885)] = 22607, + [SMALL_STATE(1886)] = 22623, + [SMALL_STATE(1887)] = 22635, + [SMALL_STATE(1888)] = 22651, + [SMALL_STATE(1889)] = 22663, + [SMALL_STATE(1890)] = 22679, + [SMALL_STATE(1891)] = 22695, + [SMALL_STATE(1892)] = 22711, + [SMALL_STATE(1893)] = 22727, + [SMALL_STATE(1894)] = 22743, + [SMALL_STATE(1895)] = 22759, + [SMALL_STATE(1896)] = 22775, + [SMALL_STATE(1897)] = 22791, + [SMALL_STATE(1898)] = 22807, + [SMALL_STATE(1899)] = 22823, + [SMALL_STATE(1900)] = 22839, + [SMALL_STATE(1901)] = 22855, + [SMALL_STATE(1902)] = 22871, + [SMALL_STATE(1903)] = 22887, + [SMALL_STATE(1904)] = 22903, + [SMALL_STATE(1905)] = 22919, + [SMALL_STATE(1906)] = 22935, + [SMALL_STATE(1907)] = 22951, + [SMALL_STATE(1908)] = 22967, + [SMALL_STATE(1909)] = 22983, + [SMALL_STATE(1910)] = 22999, + [SMALL_STATE(1911)] = 23015, + [SMALL_STATE(1912)] = 23031, + [SMALL_STATE(1913)] = 23045, + [SMALL_STATE(1914)] = 23061, + [SMALL_STATE(1915)] = 23077, + [SMALL_STATE(1916)] = 23093, + [SMALL_STATE(1917)] = 23109, + [SMALL_STATE(1918)] = 23122, + [SMALL_STATE(1919)] = 23135, + [SMALL_STATE(1920)] = 23148, + [SMALL_STATE(1921)] = 23161, + [SMALL_STATE(1922)] = 23174, + [SMALL_STATE(1923)] = 23187, + [SMALL_STATE(1924)] = 23200, + [SMALL_STATE(1925)] = 23213, + [SMALL_STATE(1926)] = 23226, + [SMALL_STATE(1927)] = 23235, + [SMALL_STATE(1928)] = 23248, + [SMALL_STATE(1929)] = 23261, + [SMALL_STATE(1930)] = 23274, + [SMALL_STATE(1931)] = 23287, + [SMALL_STATE(1932)] = 23300, + [SMALL_STATE(1933)] = 23313, + [SMALL_STATE(1934)] = 23326, + [SMALL_STATE(1935)] = 23335, + [SMALL_STATE(1936)] = 23348, + [SMALL_STATE(1937)] = 23361, + [SMALL_STATE(1938)] = 23374, + [SMALL_STATE(1939)] = 23383, + [SMALL_STATE(1940)] = 23396, + [SMALL_STATE(1941)] = 23409, + [SMALL_STATE(1942)] = 23422, + [SMALL_STATE(1943)] = 23431, + [SMALL_STATE(1944)] = 23444, + [SMALL_STATE(1945)] = 23457, + [SMALL_STATE(1946)] = 23470, + [SMALL_STATE(1947)] = 23483, + [SMALL_STATE(1948)] = 23496, + [SMALL_STATE(1949)] = 23509, + [SMALL_STATE(1950)] = 23518, + [SMALL_STATE(1951)] = 23527, + [SMALL_STATE(1952)] = 23540, + [SMALL_STATE(1953)] = 23553, + [SMALL_STATE(1954)] = 23566, + [SMALL_STATE(1955)] = 23575, + [SMALL_STATE(1956)] = 23588, + [SMALL_STATE(1957)] = 23597, + [SMALL_STATE(1958)] = 23606, + [SMALL_STATE(1959)] = 23619, + [SMALL_STATE(1960)] = 23632, + [SMALL_STATE(1961)] = 23645, + [SMALL_STATE(1962)] = 23654, + [SMALL_STATE(1963)] = 23667, + [SMALL_STATE(1964)] = 23680, + [SMALL_STATE(1965)] = 23693, + [SMALL_STATE(1966)] = 23706, + [SMALL_STATE(1967)] = 23719, + [SMALL_STATE(1968)] = 23732, + [SMALL_STATE(1969)] = 23745, + [SMALL_STATE(1970)] = 23758, + [SMALL_STATE(1971)] = 23771, + [SMALL_STATE(1972)] = 23784, + [SMALL_STATE(1973)] = 23797, + [SMALL_STATE(1974)] = 23810, + [SMALL_STATE(1975)] = 23823, + [SMALL_STATE(1976)] = 23836, + [SMALL_STATE(1977)] = 23849, + [SMALL_STATE(1978)] = 23862, + [SMALL_STATE(1979)] = 23875, + [SMALL_STATE(1980)] = 23888, + [SMALL_STATE(1981)] = 23901, + [SMALL_STATE(1982)] = 23914, + [SMALL_STATE(1983)] = 23927, + [SMALL_STATE(1984)] = 23940, + [SMALL_STATE(1985)] = 23953, + [SMALL_STATE(1986)] = 23966, + [SMALL_STATE(1987)] = 23979, + [SMALL_STATE(1988)] = 23992, + [SMALL_STATE(1989)] = 24005, + [SMALL_STATE(1990)] = 24018, + [SMALL_STATE(1991)] = 24031, + [SMALL_STATE(1992)] = 24044, + [SMALL_STATE(1993)] = 24055, + [SMALL_STATE(1994)] = 24068, + [SMALL_STATE(1995)] = 24081, + [SMALL_STATE(1996)] = 24094, + [SMALL_STATE(1997)] = 24107, + [SMALL_STATE(1998)] = 24120, + [SMALL_STATE(1999)] = 24133, + [SMALL_STATE(2000)] = 24146, + [SMALL_STATE(2001)] = 24159, + [SMALL_STATE(2002)] = 24172, + [SMALL_STATE(2003)] = 24185, + [SMALL_STATE(2004)] = 24198, + [SMALL_STATE(2005)] = 24207, + [SMALL_STATE(2006)] = 24216, + [SMALL_STATE(2007)] = 24229, + [SMALL_STATE(2008)] = 24242, + [SMALL_STATE(2009)] = 24255, + [SMALL_STATE(2010)] = 24268, + [SMALL_STATE(2011)] = 24281, + [SMALL_STATE(2012)] = 24294, + [SMALL_STATE(2013)] = 24307, + [SMALL_STATE(2014)] = 24316, + [SMALL_STATE(2015)] = 24329, + [SMALL_STATE(2016)] = 24342, + [SMALL_STATE(2017)] = 24355, + [SMALL_STATE(2018)] = 24368, + [SMALL_STATE(2019)] = 24381, + [SMALL_STATE(2020)] = 24390, + [SMALL_STATE(2021)] = 24403, + [SMALL_STATE(2022)] = 24416, + [SMALL_STATE(2023)] = 24429, + [SMALL_STATE(2024)] = 24442, + [SMALL_STATE(2025)] = 24455, + [SMALL_STATE(2026)] = 24468, + [SMALL_STATE(2027)] = 24481, + [SMALL_STATE(2028)] = 24494, + [SMALL_STATE(2029)] = 24507, + [SMALL_STATE(2030)] = 24520, + [SMALL_STATE(2031)] = 24533, + [SMALL_STATE(2032)] = 24546, + [SMALL_STATE(2033)] = 24555, + [SMALL_STATE(2034)] = 24568, + [SMALL_STATE(2035)] = 24581, + [SMALL_STATE(2036)] = 24594, + [SMALL_STATE(2037)] = 24607, + [SMALL_STATE(2038)] = 24620, + [SMALL_STATE(2039)] = 24633, + [SMALL_STATE(2040)] = 24646, + [SMALL_STATE(2041)] = 24659, + [SMALL_STATE(2042)] = 24672, + [SMALL_STATE(2043)] = 24685, + [SMALL_STATE(2044)] = 24698, + [SMALL_STATE(2045)] = 24711, + [SMALL_STATE(2046)] = 24724, + [SMALL_STATE(2047)] = 24737, + [SMALL_STATE(2048)] = 24750, + [SMALL_STATE(2049)] = 24763, + [SMALL_STATE(2050)] = 24776, + [SMALL_STATE(2051)] = 24786, + [SMALL_STATE(2052)] = 24796, + [SMALL_STATE(2053)] = 24806, + [SMALL_STATE(2054)] = 24814, + [SMALL_STATE(2055)] = 24824, + [SMALL_STATE(2056)] = 24834, + [SMALL_STATE(2057)] = 24844, + [SMALL_STATE(2058)] = 24852, + [SMALL_STATE(2059)] = 24862, + [SMALL_STATE(2060)] = 24872, + [SMALL_STATE(2061)] = 24882, + [SMALL_STATE(2062)] = 24892, + [SMALL_STATE(2063)] = 24902, + [SMALL_STATE(2064)] = 24912, + [SMALL_STATE(2065)] = 24922, + [SMALL_STATE(2066)] = 24932, + [SMALL_STATE(2067)] = 24940, + [SMALL_STATE(2068)] = 24948, + [SMALL_STATE(2069)] = 24958, + [SMALL_STATE(2070)] = 24968, + [SMALL_STATE(2071)] = 24978, + [SMALL_STATE(2072)] = 24988, + [SMALL_STATE(2073)] = 24996, + [SMALL_STATE(2074)] = 25006, + [SMALL_STATE(2075)] = 25016, + [SMALL_STATE(2076)] = 25026, + [SMALL_STATE(2077)] = 25036, + [SMALL_STATE(2078)] = 25044, + [SMALL_STATE(2079)] = 25054, + [SMALL_STATE(2080)] = 25062, + [SMALL_STATE(2081)] = 25072, + [SMALL_STATE(2082)] = 25082, + [SMALL_STATE(2083)] = 25092, + [SMALL_STATE(2084)] = 25099, + [SMALL_STATE(2085)] = 25106, + [SMALL_STATE(2086)] = 25113, + [SMALL_STATE(2087)] = 25120, + [SMALL_STATE(2088)] = 25127, + [SMALL_STATE(2089)] = 25134, + [SMALL_STATE(2090)] = 25141, + [SMALL_STATE(2091)] = 25148, + [SMALL_STATE(2092)] = 25155, + [SMALL_STATE(2093)] = 25162, + [SMALL_STATE(2094)] = 25169, + [SMALL_STATE(2095)] = 25176, + [SMALL_STATE(2096)] = 25183, + [SMALL_STATE(2097)] = 25190, + [SMALL_STATE(2098)] = 25197, + [SMALL_STATE(2099)] = 25204, + [SMALL_STATE(2100)] = 25211, + [SMALL_STATE(2101)] = 25218, + [SMALL_STATE(2102)] = 25225, + [SMALL_STATE(2103)] = 25232, + [SMALL_STATE(2104)] = 25239, + [SMALL_STATE(2105)] = 25246, + [SMALL_STATE(2106)] = 25253, + [SMALL_STATE(2107)] = 25260, + [SMALL_STATE(2108)] = 25267, + [SMALL_STATE(2109)] = 25274, + [SMALL_STATE(2110)] = 25281, + [SMALL_STATE(2111)] = 25288, + [SMALL_STATE(2112)] = 25295, + [SMALL_STATE(2113)] = 25302, + [SMALL_STATE(2114)] = 25309, + [SMALL_STATE(2115)] = 25316, + [SMALL_STATE(2116)] = 25323, + [SMALL_STATE(2117)] = 25330, + [SMALL_STATE(2118)] = 25337, + [SMALL_STATE(2119)] = 25344, + [SMALL_STATE(2120)] = 25351, + [SMALL_STATE(2121)] = 25358, + [SMALL_STATE(2122)] = 25365, + [SMALL_STATE(2123)] = 25372, + [SMALL_STATE(2124)] = 25379, + [SMALL_STATE(2125)] = 25386, + [SMALL_STATE(2126)] = 25393, + [SMALL_STATE(2127)] = 25400, + [SMALL_STATE(2128)] = 25407, + [SMALL_STATE(2129)] = 25414, + [SMALL_STATE(2130)] = 25421, + [SMALL_STATE(2131)] = 25428, + [SMALL_STATE(2132)] = 25435, + [SMALL_STATE(2133)] = 25442, + [SMALL_STATE(2134)] = 25449, + [SMALL_STATE(2135)] = 25456, + [SMALL_STATE(2136)] = 25463, + [SMALL_STATE(2137)] = 25470, + [SMALL_STATE(2138)] = 25477, + [SMALL_STATE(2139)] = 25484, + [SMALL_STATE(2140)] = 25491, + [SMALL_STATE(2141)] = 25498, + [SMALL_STATE(2142)] = 25505, + [SMALL_STATE(2143)] = 25512, + [SMALL_STATE(2144)] = 25519, + [SMALL_STATE(2145)] = 25526, + [SMALL_STATE(2146)] = 25533, + [SMALL_STATE(2147)] = 25540, + [SMALL_STATE(2148)] = 25547, + [SMALL_STATE(2149)] = 25554, + [SMALL_STATE(2150)] = 25561, + [SMALL_STATE(2151)] = 25568, + [SMALL_STATE(2152)] = 25575, + [SMALL_STATE(2153)] = 25582, + [SMALL_STATE(2154)] = 25589, + [SMALL_STATE(2155)] = 25596, + [SMALL_STATE(2156)] = 25603, + [SMALL_STATE(2157)] = 25610, + [SMALL_STATE(2158)] = 25617, + [SMALL_STATE(2159)] = 25624, + [SMALL_STATE(2160)] = 25631, + [SMALL_STATE(2161)] = 25638, + [SMALL_STATE(2162)] = 25645, + [SMALL_STATE(2163)] = 25652, + [SMALL_STATE(2164)] = 25659, + [SMALL_STATE(2165)] = 25666, + [SMALL_STATE(2166)] = 25673, + [SMALL_STATE(2167)] = 25680, + [SMALL_STATE(2168)] = 25687, + [SMALL_STATE(2169)] = 25694, + [SMALL_STATE(2170)] = 25701, + [SMALL_STATE(2171)] = 25708, + [SMALL_STATE(2172)] = 25715, + [SMALL_STATE(2173)] = 25722, + [SMALL_STATE(2174)] = 25729, + [SMALL_STATE(2175)] = 25736, + [SMALL_STATE(2176)] = 25743, + [SMALL_STATE(2177)] = 25750, + [SMALL_STATE(2178)] = 25757, + [SMALL_STATE(2179)] = 25764, + [SMALL_STATE(2180)] = 25771, + [SMALL_STATE(2181)] = 25778, + [SMALL_STATE(2182)] = 25785, + [SMALL_STATE(2183)] = 25792, + [SMALL_STATE(2184)] = 25799, + [SMALL_STATE(2185)] = 25806, + [SMALL_STATE(2186)] = 25813, + [SMALL_STATE(2187)] = 25820, + [SMALL_STATE(2188)] = 25827, + [SMALL_STATE(2189)] = 25834, + [SMALL_STATE(2190)] = 25841, + [SMALL_STATE(2191)] = 25848, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -143392,2568 +144283,2571 @@ 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(1281), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), - [269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 48), - [271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 48), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), - [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 5, 0, 48), - [289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), - [291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 5, 0, 48), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(436), - [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2074), - [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1321), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1288), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(701), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(418), - [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(436), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2074), - [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1321), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1288), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(701), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(418), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 5, 0, 77), - [343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 5, 0, 77), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(436), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2074), - [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1321), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1288), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(701), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(418), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(436), - [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), - [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2074), - [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1321), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1288), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(701), - [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(418), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 6, 0, 77), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 6, 0, 77), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(391), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2075), - [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(858), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1768), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(943), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(56), - [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), - [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(747), - [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(694), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(533), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(664), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1006), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1007), - [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(361), - [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(21), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(862), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(854), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(929), - [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(930), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(858), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2095), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(520), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(393), - [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1785), - [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(304), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(412), + [314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), + [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2061), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1329), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1286), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(702), + [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(446), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), + [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 6, 0, 78), + [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), + [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 6, 0, 78), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(384), + [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2082), + [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(851), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1814), + [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(931), + [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(66), + [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(446), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(531), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(663), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1001), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1002), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(342), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(21), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(868), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(879), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(851), + [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2098), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(501), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(525), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(394), + [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(525), + [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1841), + [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(125), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(412), + [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2061), + [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1329), + [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1286), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(702), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(446), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 49), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 49), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), + [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(412), + [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2061), + [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1329), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1286), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(702), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(446), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(412), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2061), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1329), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1286), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(702), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(446), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 5, 0, 49), + [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 5, 0, 49), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 5, 0, 78), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 5, 0, 78), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(436), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2074), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_qualified_identifier, 1, 0, 2), - [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1321), - [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1288), - [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(701), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(418), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2179), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), - [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1358), - [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 0), - [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 0), - [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1, 0, 0), - [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 1, 0, 0), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 4, 0, 46), - [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 4, 0, 46), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 3, 0, 0), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 0), - [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 26), - [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 26), - [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 2, 0, 0), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 2, 0, 0), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 81), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 81), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 111), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 111), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 112), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 112), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 113), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 113), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 114), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 114), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 115), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 115), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 116), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 116), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 6, 0, 0), - [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 6, 0, 0), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 3, 0, 19), - [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 3, 0, 19), - [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 2, 0, 0), - [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 0), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 54), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 54), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_builtin_type, 1, 0, 0), - [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_builtin_type, 1, 0, 0), - [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 84), - [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 84), - [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 85), - [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 85), - [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 9, 0, 170), - [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 9, 0, 170), - [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 86), - [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 86), - [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 32), - [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 32), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 58), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 58), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 59), - [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 59), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 60), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 60), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 61), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 61), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2, 0, 0), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 88), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 88), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), - [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 89), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 89), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 6, 0, 0), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 6, 0, 0), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 1, 0, 2), - [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 1, 0, 2), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4, 0, 35), - [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4, 0, 35), - [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 6, 0, 64), - [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 6, 0, 64), - [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 8, 0, 0), - [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 8, 0, 0), - [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 5, 0, 64), - [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 5, 0, 64), - [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4, 0, 34), - [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4, 0, 34), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), - [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 141), - [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 141), - [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 142), - [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 142), - [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 143), - [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 143), - [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 144), - [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 144), - [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 7, 0, 0), - [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 7, 0, 0), - [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 3, 0, 0), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 3, 0, 0), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 2, 0, 0), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 2, 0, 0), - [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 0), - [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 0), - [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 15), - [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 15), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2, 0, 0), - [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2, 0, 0), - [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 9, 0, 171), - [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 9, 0, 171), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 0, 16), - [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 16), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 6), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 6), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 5, 0, 0), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 5, 0, 0), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 13), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 13), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 87), - [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 87), - [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, 0, 62), - [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, 0, 62), - [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_type, 3, 0, 0), - [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_type, 3, 0, 0), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_type, 2, 0, 0), - [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_type, 2, 0, 0), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 8, 0, 0), - [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 8, 0, 0), - [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 5, 0, 0), - [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 5, 0, 0), - [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 7, 0, 117), - [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 7, 0, 117), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 7, 0, 118), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 7, 0, 118), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal, 2, 0, 11), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_literal, 2, 0, 11), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 6, 0, 0), - [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 6, 0, 0), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 7, 0, 0), - [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 7, 0, 0), - [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, 0, 37), - [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, 0, 37), - [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 2, 0, 0), - [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 2, 0, 0), - [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 3, 0, 0), - [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 3, 0, 0), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 8, 0, 138), - [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 8, 0, 138), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, 0, 47), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, 0, 47), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 0), - [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 0), - [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 7, 0, 0), - [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 7, 0, 0), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 6, 0, 90), - [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 6, 0, 90), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comptime_block, 3, 0, 0), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comptime_block, 3, 0, 0), - [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 6, 0, 91), - [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 6, 0, 91), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 5, 0, 0), - [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 5, 0, 0), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 105), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 105), - [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 7, 0, 0), - [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 7, 0, 0), - [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), - [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 75), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 75), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 47), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 47), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal, 3, 0, 29), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_literal, 3, 0, 29), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 10), - [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 10), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 76), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 76), - [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 106), - [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 106), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_literal, 3, 0, 8), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_literal, 3, 0, 8), - [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 6, 0, 0), - [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 6, 0, 0), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 138), - [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 138), - [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 107), - [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 107), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_expression, 7, 0, 139), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_expression, 7, 0, 139), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 6, 0, 0), - [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 6, 0, 0), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 28), - [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 28), - [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 4, 0, 0), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 4, 0, 0), - [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 75), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 75), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 105), - [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 105), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 76), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 76), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 8, 0, 145), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 8, 0, 145), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 8, 0, 0), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 8, 0, 0), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 106), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 106), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 47), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 47), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 107), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 107), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_expression, 6, 0, 108), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_expression, 6, 0, 108), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1, 0, 0), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1, 0, 0), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 9), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 9), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comptime_block, 2, 0, 0), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comptime_block, 2, 0, 0), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, 0, 63), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, 0, 63), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 8, 0, 0), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 8, 0, 0), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1, 0, 0), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 8), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_literal, 2, 0, 8), - [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 8), SHIFT(751), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 4, 0, 49), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 4, 0, 49), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 27), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 27), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(412), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2061), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_qualified_identifier, 1, 0, 2), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1329), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1286), + [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(702), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(446), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2102), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), + [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1359), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1, 0, 0), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 1, 0, 0), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 0), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 0), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 27), + [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 27), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 3, 0, 0), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 3, 0, 0), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 2, 0, 0), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 0), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 13), + [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 13), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4, 0, 35), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4, 0, 35), + [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4, 0, 36), + [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4, 0, 36), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 3, 0, 0), + [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 0), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 1, 0, 2), + [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 1, 0, 2), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2, 0, 0), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2, 0, 0), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2, 0, 0), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 4, 0, 47), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 4, 0, 47), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 33), + [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 33), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 59), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 59), + [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 60), + [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 60), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 61), + [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 61), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 62), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 62), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 5, 0, 0), + [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 5, 0, 0), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 5, 0, 65), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 5, 0, 65), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 2, 0, 0), + [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 2, 0, 0), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 6), + [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 6), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 55), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 55), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 85), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 85), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 86), + [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 86), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 3, 0, 19), + [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 3, 0, 19), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 88), + [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 88), + [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 89), + [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 89), + [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 90), + [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 90), + [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 6, 0, 0), + [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 6, 0, 0), + [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 6, 0, 65), + [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 6, 0, 65), + [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 2, 0, 0), + [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 2, 0, 0), + [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 82), + [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 82), + [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 112), + [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 112), + [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 113), + [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 113), + [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 114), + [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 114), + [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 115), + [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 115), + [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 116), + [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 116), + [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 117), + [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 117), + [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 6, 0, 0), + [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 6, 0, 0), + [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_builtin_type, 1, 0, 0), + [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_builtin_type, 1, 0, 0), + [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 142), + [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 142), + [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 143), + [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 143), + [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 144), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 144), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 145), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 145), + [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 7, 0, 0), + [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 7, 0, 0), + [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 9, 0, 171), + [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 9, 0, 171), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 9, 0, 172), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 9, 0, 172), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 8, 0, 0), + [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 8, 0, 0), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 0), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 0), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 15), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 15), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 0, 16), + [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 16), + [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 87), + [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 87), + [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 29), + [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 29), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 3, 0, 0), + [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 3, 0, 0), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 76), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 76), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 48), + [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 48), + [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_literal, 3, 0, 8), + [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_literal, 3, 0, 8), + [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intrinsic_call_expression, 3, 0, 25), + [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intrinsic_call_expression, 3, 0, 25), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_type, 3, 0, 0), + [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_type, 3, 0, 0), + [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 6, 0, 91), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 6, 0, 91), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 6, 0, 92), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 6, 0, 92), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 2, 0, 0), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 2, 0, 0), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 6, 0, 0), + [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 6, 0, 0), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_type, 2, 0, 0), + [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_type, 2, 0, 0), + [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, 0, 48), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, 0, 48), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 4, 0, 0), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 4, 0, 0), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 76), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 76), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 106), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 106), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 77), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 77), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 107), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 107), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 48), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 48), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 108), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 108), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_expression, 6, 0, 109), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_expression, 6, 0, 109), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal, 3, 0, 30), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_literal, 3, 0, 30), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comptime_block, 3, 0, 0), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comptime_block, 3, 0, 0), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 7, 0, 118), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 7, 0, 118), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 7, 0, 119), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 7, 0, 119), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 7, 0, 0), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 7, 0, 0), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comptime_block, 2, 0, 0), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comptime_block, 2, 0, 0), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1, 0, 0), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1, 0, 0), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 5, 0, 0), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 5, 0, 0), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 106), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 106), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 107), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 107), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 139), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 139), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 108), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 108), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_expression, 7, 0, 140), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_expression, 7, 0, 140), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 6, 0, 0), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 6, 0, 0), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, 0, 63), + [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, 0, 63), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, 0, 64), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, 0, 64), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, 0, 38), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, 0, 38), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 5, 0, 0), + [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 5, 0, 0), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 8, 0, 146), + [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 8, 0, 146), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 8, 0, 0), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 8, 0, 0), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 9), + [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 9), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 6, 0, 0), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 6, 0, 0), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 8, 0, 139), + [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 8, 0, 139), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 7, 0, 0), + [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 7, 0, 0), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 7, 0, 0), + [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 7, 0, 0), + [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 8, 0, 0), + [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 8, 0, 0), + [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 8, 0, 0), + [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 8, 0, 0), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 10), + [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 10), + [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal, 2, 0, 11), + [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_literal, 2, 0, 11), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 0), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 0), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 77), + [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 77), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1, 0, 0), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 8), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_literal, 2, 0, 8), + [1427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 8), SHIFT(736), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 4, 0, 50), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 4, 0, 50), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 28), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 28), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), - [1574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(680), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(659), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2075), - [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(948), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1768), - [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(943), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), - [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(708), - [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1927), - [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(948), - [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2126), - [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(520), - [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1785), - [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(713), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), + [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(682), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(672), + [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2082), + [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(922), + [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1814), + [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(931), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), + [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(726), + [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(446), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1947), + [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(922), + [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2138), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(501), + [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(525), + [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(525), + [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1841), + [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(703), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1288), - [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1288), - [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1288), - [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1288), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1, 0, 0), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1, 0, 0), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 242), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 242), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 227), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 227), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 228), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 228), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 229), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 229), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 183), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 183), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 230), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 230), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 231), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 231), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 232), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 232), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 233), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 233), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 234), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 234), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 235), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 235), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 236), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 236), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 237), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 237), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 238), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 238), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 239), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 239), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 222), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 222), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 240), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 240), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 241), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 241), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 182), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 182), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 243), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 243), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 244), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 244), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 245), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 245), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 246), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 246), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 247), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 247), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 248), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 248), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 249), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 249), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 250), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 250), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 251), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 251), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 252), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 252), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 223), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 223), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 224), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 224), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 253), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 253), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 254), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 254), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 43), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 43), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 255), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 255), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 93), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 93), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 44), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 44), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 45), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 45), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 94), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 94), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 256), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 256), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 96), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 96), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 257), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 257), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 97), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 97), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 258), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 258), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 98), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 98), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 99), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 99), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 100), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 100), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 259), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 259), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 260), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 260), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_block, 4, 0, 25), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_block, 4, 0, 25), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 261), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 261), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 262), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 262), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 263), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 263), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 264), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 264), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 21), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 21), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 265), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 265), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 266), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 266), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 267), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 267), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 101), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 101), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 268), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 268), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 269), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 269), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 102), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 102), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 103), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 103), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 270), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 270), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 271), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 271), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 272), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 272), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 273), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 273), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 274), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 274), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 275), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 275), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 276), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 276), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 277), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 277), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 278), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 278), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 279), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 279), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 280), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 280), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 281), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 281), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 282), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 282), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 283), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 283), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 45), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 45), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 4, 0, 65), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 4, 0, 65), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 4, 0, 66), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 4, 0, 66), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 4, 0, 67), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 4, 0, 67), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 12), - [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 12), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 17), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 17), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 284), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 284), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 17), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 17), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 285), - [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 285), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 4, 0, 46), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 4, 0, 46), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 2, 0, 21), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 2, 0, 21), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 286), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 286), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 74), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 74), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 287), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 287), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 288), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 288), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 289), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 289), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 290), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 290), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 291), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 291), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 292), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 292), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 293), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 293), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 294), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 294), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 295), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 295), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 296), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 296), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 69), - [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 69), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 297), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 297), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 298), - [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 298), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 71), - [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 71), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 299), - [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 299), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 72), - [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 72), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 300), - [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 300), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 301), - [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 301), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 73), - [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 73), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 45), - [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 45), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 24), - [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 24), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 302), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 302), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 303), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 303), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 74), - [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 74), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 304), - [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 304), - [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 305), - [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 305), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 306), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 306), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 307), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 307), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 308), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 308), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_block, 3, 0, 25), - [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_block, 3, 0, 25), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 309), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 309), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 310), - [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 310), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 311), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 311), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 312), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 312), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 313), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 313), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 226), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 226), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 15, 0, 315), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 15, 0, 315), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 316), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 316), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, 0, 4), - [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, 0, 4), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 184), - [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 184), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 185), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 185), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 186), - [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 186), - [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 187), - [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 187), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 188), - [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 188), - [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 189), - [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 189), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 190), - [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 190), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 191), - [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 191), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 192), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 192), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 193), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 193), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 120), - [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 120), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 194), - [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 194), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 195), - [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 195), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, 0, 26), - [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, 0, 26), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 196), - [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 196), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 197), - [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 197), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 198), - [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 198), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 3, 0, 40), - [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 3, 0, 40), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, 0, 200), - [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, 0, 200), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 201), - [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 201), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 202), - [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 202), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 121), - [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 121), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 203), - [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 203), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 204), - [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 204), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 205), - [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 205), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 206), - [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 206), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 122), - [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 122), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 207), - [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 207), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 123), - [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 123), - [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 208), - [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 208), - [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 124), - [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 124), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 125), - [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 125), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 126), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 126), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 127), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 127), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 128), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 128), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 129), - [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 129), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 209), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 209), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 130), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 130), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 131), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 131), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 132), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 132), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 133), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 133), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 134), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 134), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 135), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 135), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 5, 0, 92), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 5, 0, 92), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 210), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 210), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 7, 0, 74), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 7, 0, 74), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 147), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 147), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 148), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 148), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 149), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 149), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 150), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 150), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 151), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 151), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 152), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 152), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 211), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 211), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 212), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 212), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 153), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 153), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 154), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 154), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 213), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 213), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 214), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 214), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 215), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 215), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 216), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 216), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 5, 0, 36), - [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 5, 0, 36), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 217), - [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 217), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 218), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 218), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 155), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 155), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 156), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 156), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 36), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 36), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2, 0, 22), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2, 0, 22), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 157), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 157), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 158), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 158), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 159), - [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 159), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 160), - [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 160), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 161), - [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 161), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 162), - [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 162), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 163), - [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 163), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 164), - [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 164), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 165), - [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 165), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 166), - [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 166), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 167), - [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 167), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 38), - [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 38), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 38), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 38), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 172), - [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 172), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 173), - [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 173), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 174), - [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 174), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 3, 0, 39), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 3, 0, 39), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 175), - [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 175), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 176), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 176), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 177), - [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 177), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 178), - [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 178), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 179), - [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 179), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 180), - [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 180), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 181), - [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 181), - [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 219), - [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 219), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 220), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 220), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 221), - [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 221), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 225), - [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 225), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 314), - [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 314), - [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 23), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), - [3035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(256), - [3038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(1973), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 70), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 70), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [3047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 70), SHIFT(1970), - [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 41), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 41), - [3054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 41), SHIFT(257), - [3057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 41), SHIFT(1975), - [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 95), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 95), - [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 95), SHIFT(273), - [3067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 95), SHIFT(1979), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [3072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 41), SHIFT(1942), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 42), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [3081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(1946), - [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 68), - [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 68), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 68), SHIFT(1963), - [3093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(260), - [3096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(1976), - [3099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 68), SHIFT(263), - [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 68), SHIFT(1977), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [3107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 95), SHIFT(1989), - [3110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 70), SHIFT(265), - [3113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 70), SHIFT(1978), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [3118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(2020), - [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 5, 0, 119), - [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5, 0, 119), - [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_capture, 3, 0, 0), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_capture, 3, 0, 0), - [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 6, 0, 146), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 6, 0, 146), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 3, 0, 0), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3, 0, 0), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 4, 0, 0), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4, 0, 0), - [3141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1251), - [3144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(1298), - [3147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(1294), - [3150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(151), - [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(1961), - [3156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 70), SHIFT(163), - [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 70), SHIFT(1968), - [3162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 41), SHIFT(154), - [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 41), SHIFT(1965), - [3168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 95), SHIFT(171), - [3171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 95), SHIFT(1969), - [3174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(158), - [3177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(1966), - [3180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 68), SHIFT(161), - [3183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 68), SHIFT(1967), - [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 169), - [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 169), - [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 136), - [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 136), - [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 137), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 137), - [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 168), - [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 168), - [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 6, 0, 199), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 6, 0, 199), - [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 104), - [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 104), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1, 0, 0), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1, 0, 0), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1286), + [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1286), + [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1286), + [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1286), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 300), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 300), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 191), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 191), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 192), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 192), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 193), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 193), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 194), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 194), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 195), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 195), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 196), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 196), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 197), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 197), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 198), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 198), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 199), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 199), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, 0, 201), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, 0, 201), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 202), + [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 202), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 203), + [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 203), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 204), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 204), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 205), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 205), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 190), + [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 190), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 207), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 207), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 208), + [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 208), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 209), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 209), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 210), + [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 210), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 211), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 211), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 212), + [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 212), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 213), + [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 213), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 214), + [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 214), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 215), + [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 215), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 216), + [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 216), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 217), + [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 217), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 218), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 218), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 219), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 219), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 220), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 220), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 221), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 221), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 222), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 222), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 223), + [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 223), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 224), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 224), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 225), + [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 225), + [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 226), + [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 226), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 227), + [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 227), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 228), + [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 228), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 229), + [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 229), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 230), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 230), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 231), + [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 231), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 232), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 232), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 233), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 233), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 234), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 234), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 235), + [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 235), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 236), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 236), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 237), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 237), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 238), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 238), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 239), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 239), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 240), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 240), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 241), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 241), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 242), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 242), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 243), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 243), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 244), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 244), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 245), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 245), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 246), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 246), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 247), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 247), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 248), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 248), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 249), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 249), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 250), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 250), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 251), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 251), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 252), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 252), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 253), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 253), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 254), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 254), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 255), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 255), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 256), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 256), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 257), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 257), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 258), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 258), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 259), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 259), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 260), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 260), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 261), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 261), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 262), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 262), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 263), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 263), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 264), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 264), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 265), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 265), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 266), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 266), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 267), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 267), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 268), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 268), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 269), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 269), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 270), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 270), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 271), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 271), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 272), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 272), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 273), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 273), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 274), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 274), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 275), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 275), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 276), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 276), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 277), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 277), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 278), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 278), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 279), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 279), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 280), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 280), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 281), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 281), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 282), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 282), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 283), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 283), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 284), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 284), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 285), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 285), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 286), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 286), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 287), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 287), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 288), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 288), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 289), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 289), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 290), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 290), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 291), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 291), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 292), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 292), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 293), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 293), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 294), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 294), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 295), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 295), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 296), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 296), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 297), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 297), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 298), + [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 298), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 299), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 299), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, 0, 27), + [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, 0, 27), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 301), + [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 301), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 302), + [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 302), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 303), + [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 303), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 304), + [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 304), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 305), + [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 305), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 306), + [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 306), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 307), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 307), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 308), + [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 308), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 309), + [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 309), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 310), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 310), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 311), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 311), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 312), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 312), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 313), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 313), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 314), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 314), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 315), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 315), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 15, 0, 316), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 15, 0, 316), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 317), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 317), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 44), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 44), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 45), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 45), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 46), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 46), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_block, 4, 0, 26), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_block, 4, 0, 26), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 4, 0, 66), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 4, 0, 66), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 4, 0, 67), + [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 4, 0, 67), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 4, 0, 68), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 4, 0, 68), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 12), + [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 12), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 17), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 17), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 17), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 17), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 4, 0, 47), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 4, 0, 47), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 21), + [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 21), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 70), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 70), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 2, 0, 21), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 2, 0, 21), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2, 0, 22), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2, 0, 22), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 72), + [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 72), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 73), + [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 73), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 74), + [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 74), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 46), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 46), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 75), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 75), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 189), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 189), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 24), + [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 24), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 5, 0, 93), + [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 5, 0, 93), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 5, 0, 37), + [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 5, 0, 37), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 37), + [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 37), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_block, 3, 0, 26), + [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_block, 3, 0, 26), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 94), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 94), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 95), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 95), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 97), + [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 97), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 98), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 98), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 99), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 99), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 100), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 100), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 101), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 101), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 102), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 102), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 103), + [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 103), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 104), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 104), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 46), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 46), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 75), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 75), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 121), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 121), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 122), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 122), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 123), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 123), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 124), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 124), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 125), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 125), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 126), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 126), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 127), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 127), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 128), + [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 128), + [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 129), + [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 129), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 130), + [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 130), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 131), + [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 131), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 132), + [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 132), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 133), + [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 133), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 134), + [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 134), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 135), + [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 135), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 136), + [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 136), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 7, 0, 75), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 7, 0, 75), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 148), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 148), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 149), + [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 149), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 150), + [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 150), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 151), + [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 151), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 152), + [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 152), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 153), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 153), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 154), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 154), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 155), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 155), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 156), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 156), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 157), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 157), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 158), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 158), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 159), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 159), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 160), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 160), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 161), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 161), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 162), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 162), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 163), + [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 163), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 164), + [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 164), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 165), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 165), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 166), + [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 166), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 167), + [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 167), + [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 168), + [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 168), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 39), + [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 39), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 39), + [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 39), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 3, 0, 40), + [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 3, 0, 40), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 3, 0, 41), + [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 3, 0, 41), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 173), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 173), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 174), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 174), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 175), + [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 175), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, 0, 4), + [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, 0, 4), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 176), + [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 176), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 177), + [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 177), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 178), + [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 178), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 179), + [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 179), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 180), + [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 180), + [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 181), + [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 181), + [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 182), + [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 182), + [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 183), + [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 183), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 184), + [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 184), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 185), + [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 185), + [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 186), + [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 186), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 187), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 187), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 188), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 188), + [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 206), + [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 206), + [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 96), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 96), + [3041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 96), SHIFT(269), + [3044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 96), SHIFT(1984), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 23), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(2006), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 42), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [3062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(2039), + [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 43), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 43), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 43), SHIFT(1946), + [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 69), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 69), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [3080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 69), SHIFT(1933), + [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 71), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 71), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 71), SHIFT(1935), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [3094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 96), SHIFT(1964), + [3097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(252), + [3100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(1979), + [3103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(253), + [3106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(1980), + [3109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 43), SHIFT(256), + [3112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 43), SHIFT(1981), + [3115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 69), SHIFT(259), + [3118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 69), SHIFT(1982), + [3121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 71), SHIFT(261), + [3124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 71), SHIFT(1983), + [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 6, 0, 147), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 6, 0, 147), + [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 5, 0, 120), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5, 0, 120), + [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 3, 0, 0), + [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3, 0, 0), + [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_capture, 3, 0, 0), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_capture, 3, 0, 0), + [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 4, 0, 0), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4, 0, 0), + [3147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1252), + [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(1296), + [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(1297), + [3156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(131), + [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(1951), + [3162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 43), SHIFT(138), + [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 43), SHIFT(1962), + [3168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 69), SHIFT(141), + [3171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 69), SHIFT(1963), + [3174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(134), + [3177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(1960), + [3180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 71), SHIFT(143), + [3183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 71), SHIFT(1965), + [3186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 96), SHIFT(151), + [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 96), SHIFT(1966), + [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 137), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 137), + [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 105), + [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 105), + [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 169), + [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 169), + [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 170), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 170), + [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 6, 0, 200), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 6, 0, 200), + [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 138), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 138), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 53), - [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 53), SHIFT_REPEAT(1802), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 53), - [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 8), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 8), - [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 8, 0, 0), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 8, 0, 0), - [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 7, 0, 0), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 7, 0, 0), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 6, 0, 0), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 6, 0, 0), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 3, 0, 79), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 3, 0, 79), - [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 5, 0, 0), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5, 0, 0), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [3389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(491), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(1943), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(481), - [3412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(2008), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 4, 0, 0), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 54), + [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 54), SHIFT_REPEAT(1740), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 54), + [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 8, 0, 0), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 8, 0, 0), + [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 6, 0, 0), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 6, 0, 0), + [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 8), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 8), + [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 5, 0, 0), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5, 0, 0), + [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 7, 0, 0), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 7, 0, 0), + [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 3, 0, 80), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 3, 0, 80), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(527), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(1959), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(494), + [3414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(1999), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 3, 0, 0), - [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1886), - [3566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1313), - [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2017), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1882), - [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1309), - [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1994), - [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1884), - [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1297), - [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2004), - [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1829), - [3599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1293), - [3602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1972), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyed_field_initializer, 4, 0, 12), - [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 3, 0, 4), - [3609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 3, 0, 4), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 4), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 12), - [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, 0, 12), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyed_field_initializer, 3, 0, 4), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 12), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 33), - [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 33), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 33), SHIFT(1857), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 14), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 14), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 14), SHIFT(1892), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [3717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1281), - [3720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1906), - [3723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1497), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 82), - [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 82), - [3730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 82), SHIFT(1839), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 55), - [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 55), - [3737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 55), SHIFT(1798), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 4, 0, 0), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1782), + [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1318), + [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2028), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [3582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1881), + [3585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1301), + [3588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1998), + [3591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1824), + [3594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1307), + [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1952), + [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1883), + [3603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1294), + [3606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2011), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyed_field_initializer, 3, 0, 4), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 12), + [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 4), + [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 3, 0, 4), + [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 3, 0, 4), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 12), + [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, 0, 12), + [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyed_field_initializer, 4, 0, 12), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [3701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1280), + [3704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1909), + [3707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1495), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 34), + [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 34), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [3716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 34), SHIFT(1696), + [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 14), + [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 14), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 14), SHIFT(1764), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 83), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 83), + [3736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 83), SHIFT(1753), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 56), + [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 56), + [3743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 56), SHIFT(1744), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(232), - [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(2009), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [3796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 70), SHIFT(1929), - [3799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 95), SHIFT(249), - [3802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 95), SHIFT(2015), - [3805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 41), SHIFT(233), - [3808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 41), SHIFT(2011), - [3811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 68), SHIFT(239), - [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 68), SHIFT(2013), - [3817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(236), - [3820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(2012), - [3823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 70), SHIFT(241), - [3826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 70), SHIFT(2014), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 41), SHIFT(2007), - [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(888), - [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(1932), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [3854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(1988), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [3859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 68), SHIFT(1923), - [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1823), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), - [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1933), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 95), SHIFT(2018), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(1991), - [3880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(867), - [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(2010), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [3902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 41), SHIFT(1920), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(1924), - [3910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(280), - [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(1980), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 41), SHIFT(281), - [3923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 41), SHIFT(1981), - [3926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(284), - [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(1982), - [3932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 68), SHIFT(287), - [3935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 68), SHIFT(1983), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 68), SHIFT(1926), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 70), SHIFT(1928), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 95), SHIFT(1930), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [3959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 70), SHIFT(289), - [3962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 70), SHIFT(2048), - [3965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 95), SHIFT(297), - [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 95), SHIFT(1984), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [4009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1276), - [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), - [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1566), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 2, 0, 0), SHIFT_REPEAT(1796), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 2, 0, 0), - [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 2, 0, 0), SHIFT_REPEAT(1997), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), - [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [4158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1616), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 1, 0, 20), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [4177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), - [4180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2029), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [4199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1827), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), - [4204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1962), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [4233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(2039), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 83), - [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 83), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [4324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1672), - [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 5), - [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 5), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_type, 3, 0, 0), - [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_struct_type, 3, 0, 0), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 2, 0, 1), - [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 2, 0, 1), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 3, 0, 4), - [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 3, 0, 4), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_type, 2, 0, 0), - [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_struct_type, 2, 0, 0), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 4, 0, 12), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 36), - [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 36), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(2019), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [4426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(305), - [4429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(2041), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 41), SHIFT(2032), - [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_type, 2, 0, 7), - [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_type, 2, 0, 7), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(2036), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_type, 2, 0, 7), - [4452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_type, 2, 0, 7), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 68), SHIFT(1917), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 70), SHIFT(1918), - [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [4480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 95), SHIFT(1922), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 3), - [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 3), - [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [4521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 41), SHIFT(306), - [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 41), SHIFT(2042), - [4527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(309), - [4530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(2043), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 12), - [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 12), - [4547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 68), SHIFT(312), - [4550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 68), SHIFT(2044), - [4553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 70), SHIFT(314), - [4556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 70), SHIFT(2045), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [4563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 95), SHIFT(322), - [4566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 95), SHIFT(2046), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 1, 0, 0), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, 0, 50), - [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, 0, 50), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 18), - [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 18), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 1, 0, 0), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 109), - [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 109), - [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 110), - [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 110), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 17), - [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 17), - [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 140), - [4635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 140), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 17), - [4639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 17), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 3, 0, 4), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 56), - [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 56), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 12), - [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 12), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 57), - [4665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 57), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 2, 0, 30), - [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 3, 0, 0), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 31), - [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 31), - [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 3, 0, 4), - [4711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 3, 0, 4), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 1, 0, 20), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 4, 0, 0), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 36), - [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 36), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 80), - [4753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 80), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 30), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 3, 0, 0), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 4, 0, 0), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 51), - [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 52), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 3, 0, 0), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 4, 0, 0), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 3, 0, 0), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 4, 0, 0), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 78), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [3794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 43), SHIFT(230), + [3797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 43), SHIFT(2015), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [3802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 96), SHIFT(2030), + [3805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(839), + [3808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(1917), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 69), SHIFT(1932), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [3818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 71), SHIFT(1968), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 43), SHIFT(1943), + [3826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1786), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), + [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2035), + [3834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(227), + [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(2014), + [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(831), + [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(2002), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [3854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 96), SHIFT(243), + [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 96), SHIFT(2018), + [3860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(226), + [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(2012), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(1931), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(2033), + [3880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 71), SHIFT(235), + [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 71), SHIFT(2017), + [3886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 69), SHIFT(233), + [3889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 69), SHIFT(2016), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1743), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [3909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1937), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [3960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1519), + [3963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2027), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [3994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(1958), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(1973), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [4022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 43), SHIFT(1978), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [4031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 69), SHIFT(1991), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [4036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 71), SHIFT(1994), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 96), SHIFT(2000), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [4054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 2, 0, 0), SHIFT_REPEAT(1817), + [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 2, 0, 0), + [4059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 1, 0, 20), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1284), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), + [4169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1621), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1598), + [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [4183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1624), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [4202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(276), + [4205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(1985), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [4226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(277), + [4229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(1986), + [4232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 43), SHIFT(280), + [4235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 43), SHIFT(1987), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [4240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 69), SHIFT(283), + [4243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 69), SHIFT(2049), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [4248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 71), SHIFT(285), + [4251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 71), SHIFT(1988), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [4260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 96), SHIFT(293), + [4263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 96), SHIFT(1989), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 17), + [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 17), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(304), + [4335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(2043), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 43), SHIFT(307), + [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 43), SHIFT(2044), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, 0, 51), + [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, 0, 51), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 69), SHIFT(310), + [4359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 69), SHIFT(2045), + [4362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 71), SHIFT(312), + [4365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 71), SHIFT(2046), + [4368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 96), SHIFT(320), + [4371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 96), SHIFT(2047), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 12), + [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 12), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 57), + [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 57), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 58), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 58), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 12), + [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 12), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 18), + [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 18), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 1, 0, 20), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_type, 2, 0, 0), + [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_struct_type, 2, 0, 0), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 81), + [4464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 81), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 1, 0, 0), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 110), + [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 110), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 111), + [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 111), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 3, 0, 4), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 32), + [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 32), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_type, 3, 0, 0), + [4502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_struct_type, 3, 0, 0), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_type, 2, 0, 7), + [4510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_type, 2, 0, 7), + [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_type, 2, 0, 7), + [4514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_type, 2, 0, 7), + [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 3, 0, 0), + [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(2022), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 1, 0, 0), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), SHIFT(2031), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 43), SHIFT(2036), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 69), SHIFT(1919), + [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 37), + [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 37), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 71), SHIFT(1921), + [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [4573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1793), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 96), SHIFT(1929), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 84), + [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 84), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 37), + [4597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 37), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 3, 0, 4), + [4605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 3, 0, 4), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 2, 0, 31), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 141), + [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 141), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 4, 0, 0), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 3), + [4677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 3), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 4, 0, 12), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 2, 0, 1), + [4687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 2, 0, 1), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 5), + [4697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 5), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 17), + [4713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 17), + [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 3, 0, 4), + [4717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 3, 0, 4), + [4719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(303), + [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 23), SHIFT(2042), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 53), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 3, 0, 0), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 3, 0, 0), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 4, 0, 0), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 4, 0, 0), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 31), + [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 52), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 4, 0, 0), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 3, 0, 0), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 79), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_constant, 2, 0, 0), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_constant, 2, 0, 0), - [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [5157] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture, 3, 0, 8), - [5225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture, 4, 0, 79), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture, 3, 0, 8), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture, 4, 0, 80), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [5305] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), }; #ifdef __cplusplus diff --git a/tree-sitter-brolang/test/corpus/syntax.txt b/tree-sitter-brolang/test/corpus/syntax.txt index a8cdc6a..1e988c5 100644 --- a/tree-sitter-brolang/test/corpus/syntax.txt +++ b/tree-sitter-brolang/test/corpus/syntax.txt @@ -96,6 +96,34 @@ sum func(a, b i32) i32 ! Status { (enum_literal (identifier)))))))))))) +================== +Intrinsic calls +================== + +main func() void { + _ = sizeof ! (i32) +} + +--- + +(source_file + (function_declaration + (identifier) + (parameter_list) + (type + (builtin_type)) + (block + (statement + (assignment_statement + (expression + (sink)) + (expression + (intrinsic_call_expression + (identifier) + (argument_list + (expression + (builtin_type)))))))))) + ================== Errdefer ================== diff --git a/tree-sitter-brolang/test/highlight/intrinsics.bro b/tree-sitter-brolang/test/highlight/intrinsics.bro new file mode 100644 index 0000000..6ee40ea --- /dev/null +++ b/tree-sitter-brolang/test/highlight/intrinsics.bro @@ -0,0 +1,7 @@ +main func() void { + _ = sizeof!(i32) +# ^^^^^^ function.builtin +# ^ operator + _ = sizeof(i32) +# ^^^^^^ function +}